/* ============================================
   🎨 UNIFIED DESIGN SYSTEM - SHARED STYLES
   Enhanced Multi-Store Platform
   ============================================ */

:root {
    /* Primary Colors */
    --primary-color: #ff8400;
    --primary-light: #ffa040;
    --primary-dark: #e67600;
    --primary-gradient: linear-gradient(135deg, #ff8400 0%, #ffa040 100%);
    
    /* Secondary Colors */
    --secondary-color: #91ca45;
    --secondary-light: #a8d662;
    --secondary-dark: #7ab43a;
    --secondary-gradient: linear-gradient(135deg, #91ca45 0%, #a8d662 100%);
    
    /* Neutral Colors */
    --accent-color: #f8f9fa;
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
    
    /* Shadows */
    --shadow-primary: 0 8px 25px rgba(255, 132, 0, 0.15);
    --shadow-secondary: 0 8px 25px rgba(145, 202, 69, 0.15);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    /* Status Colors */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --info-color: #17a2b8;
}

/* ============================================
   📱 RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 576px) {
    .container-fluid { padding: 0.5rem; }
    .btn { padding: 0.5rem 1rem; font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
}

/* ============================================
   🎨 FACEBOOK-STYLE STORE HEADER DESIGN
   ============================================ */

/* Fixed Header Bar (like Facebook) */
header.store-header,
.store-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: white !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid #e4e6eb !important;
    padding: 12px 0 !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s ease !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.store-header::before {
    display: none !important;
}

.store-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Header Container */
.header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Left Section - Logo & Store Name */
.header-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 1 !important;
}

.logo-wrapper {
    position: relative !important;
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0 !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: auto !important;
}

.logo-wrapper .logo {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 2px solid #e4e6eb !important;
    background: white !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    box-shadow: none !important;
    pointer-events: auto !important;
}

.logo-wrapper .logo:hover {
    border-color: var(--primary-color) !important;
    transform: scale(1.05) !important;
}

.store-name-section {
    flex: 1 !important;
    min-width: 0 !important;
}

.store-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #050505 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
    text-shadow: none !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    text-align: start !important;
    letter-spacing: normal !important;
}

.store-title:hover {
    color: var(--primary-color) !important;
}

/* Center Section - Search (optional) */
.header-center {
    flex: 1 !important;
    max-width: 500px !important;
    margin: 0 20px !important;
    display: none !important;
}

.search-bar {
    position: relative !important;
    width: 100% !important;
}

.search-bar input {
    width: 100% !important;
    padding: 10px 40px 10px 16px !important;
    border: none !important;
    background: #f0f2f5 !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
}

.search-bar input:focus {
    outline: none !important;
    background: #e4e6eb !important;
}

.search-bar i {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #65676b !important;
}

/* Right Section - Actions */
.header-right {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Action Buttons (Cart, Language, etc.) */
.header-action-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #f0f2f5 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    color: #050505 !important;
}

.header-action-btn:hover {
    background: #e4e6eb !important;
}

.header-action-btn:active {
    transform: scale(0.95) !important;
}

.header-action-btn i {
    font-size: 1.2rem !important;
}

/* Cart Badge */
.header-cart-badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    background: #f02849 !important;
    color: white !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 9px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 4px !important;
    border: 2px solid white !important;
}

/* Language Switcher - Facebook Style */
.language-switcher {
    position: relative !important;
    z-index: 10 !important;
}

.language-switcher .dropdown-toggle {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #f0f2f5 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    transition: all 0.2s ease !important;
    color: #050505 !important;
}

.language-switcher .dropdown-toggle:hover {
    background: #e4e6eb !important;
}

.language-switcher .dropdown-toggle::after {
    display: none !important;
}

.language-switcher .dropdown-toggle i {
    font-size: 1.2rem !important;
}

.language-switcher .dropdown-menu {
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
    padding: 8px !important;
    min-width: 200px !important;
    margin-top: 8px !important;
}

.language-switcher .dropdown-item {
    border-radius: 6px !important;
    padding: 10px 12px !important;
    transition: background 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #050505 !important;
}

.language-switcher .dropdown-item:hover {
    background: #f0f2f5 !important;
}

.language-switcher .dropdown-item.active {
    background: #e7f3ff !important;
    color: #1877f2 !important;
    font-weight: 600 !important;
}

.language-switcher .bi-check2 {
    color: #1877f2 !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
}

/* Store Info - Hide old positioning */
.store-info {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: none !important;
}

.logo-container {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: none !important;
    z-index: auto !important;
}

/* Header Responsive Design */
@media (max-width: 992px) {
    .header-center {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 12px !important;
    }
    
    .store-title {
        font-size: 1.1rem !important;
    }
    
    .logo-wrapper .logo {
        width: 40px !important;
        height: 40px !important;
    }
    
    .logo-wrapper {
        width: 40px !important;
        height: 40px !important;
    }
    
    .header-action-btn {
        width: 36px !important;
        height: 36px !important;
    }
    
    .header-action-btn i {
        font-size: 1.1rem !important;
    }
    
    .language-switcher .dropdown-toggle {
        width: 36px !important;
        height: 36px !important;
    }
}

@media (max-width: 576px) {
    .store-title {
        font-size: 1rem !important;
        max-width: 150px !important;
    }
    
    .header-right {
        gap: 4px !important;
    }
}

/* ============================================
   🎯 UTILITY CLASSES
   ============================================ */

/* Page Content Container - Match Header/Footer Width EXACTLY */
.page-content-container,
.product-page-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Store page specific container */
.store-details {
    width: 100% !important;
}

/* Checkout page specific styles */
#checkout-page {
    width: 100% !important;
}

#checkout-page .product-page-container {
    max-width: 1200px !important;
}

/* Ensure row inside product page matches footer row width */
.product-page-container > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}

/* Section Spacing */
.hero-section,
.related-products-section,
.category-products-section {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove any conflicting padding from sections */
section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Consistent Section Padding */
section.hero-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
}

section.related-products-section,
section.category-products-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Breadcrumb Alignment */
.breadcrumb-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Product Cards Consistency */
.product-card {
    transition: all 0.3s ease !important;
}

.product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Remove default container padding conflicts */
.product-page-container .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Ensure Bootstrap columns work properly inside product-page-container */
.product-page-container .col,
.product-page-container [class*="col-"] {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* Mobile optimization - reduce padding for 2 cards side by side */
@media (max-width: 576px) {
    .product-page-container .col-6,
    .product-page-container .col-sm-6 {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

/* Ensure no extra width on rows */
.product-page-container .container,
.product-page-container .container-fluid {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ensure full width backgrounds */
section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Reset inner content to match header/footer width */
section > .product-page-container,
section > .page-content-container {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 1200px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .page-content-container,
    .product-page-container,
    .breadcrumb-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    section.hero-section {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    section.related-products-section,
    section.category-products-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Store and Checkout responsive */
    .store-details,
    #checkout-page .product-page-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

@media (max-width: 576px) {
    .page-content-container,
    .product-page-container,
    .breadcrumb-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    section.hero-section {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    /* Store and Checkout mobile */
    .store-details,
    #checkout-page .product-page-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

.text-primary-custom { color: var(--primary-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }
.bg-gradient-primary { background: var(--primary-gradient) !important; }
.bg-gradient-secondary { background: var(--secondary-gradient) !important; }

.shadow-primary { box-shadow: var(--shadow-primary) !important; }
.shadow-secondary { box-shadow: var(--shadow-secondary) !important; }
.shadow-light { box-shadow: var(--shadow-light) !important; }

.border-primary-custom { border-color: var(--primary-color) !important; }
.border-secondary-custom { border-color: var(--secondary-color) !important; }

/* ============================================
   🎨 BUTTON STYLES
   ============================================ */
.btn-primary-custom {
    background: var(--primary-gradient);
    border: 2px solid var(--primary-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary-custom {
    background: var(--secondary-gradient);
    border: 2px solid var(--secondary-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
}

/* ============================================
   📦 CARD STYLES
   ============================================ */
.card-custom {
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.card-header-custom {
    background: var(--primary-gradient);
    color: white;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

.card-header-light {
    background: linear-gradient(135deg, var(--accent-color), #ffffff);
    border-bottom: 2px solid rgba(255, 132, 0, 0.1);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

/* ============================================
   🎭 ANIMATION CLASSES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in { animation: fadeInUp 0.6s ease forwards; }
.slide-in-right { animation: slideInRight 0.5s ease forwards; }
.pulse-animation { animation: pulse 2s infinite; }

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

/* ============================================
   🔄 LOADING STATES
   ============================================ */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ============================================
   📱 MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 768px) {
    .card-custom { margin-bottom: 1rem; }
    .btn-primary-custom, .btn-secondary-custom { width: 100%; margin-bottom: 0.5rem; }
    .fade-in { animation: none; } /* Disable animations on mobile for better performance */
    
    .mobile-center { text-align: center !important; }
    .mobile-stack > * { display: block !important; width: 100% !important; margin-bottom: 0.5rem; }
}

/* ============================================
   🎨 MODERN FOOTER DESIGN
   ============================================ */

/* Footer - Enhanced Design */
footer.store-footer,
.store-footer {
    position: relative !important;
    min-height: 300px !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
    margin-top: 4rem !important;
    width: 100% !important;
    padding: 3rem 0 2rem !important;
    z-index: 100 !important;
}

footer.store-footer::before,
.store-footer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.85) 100%
    ) !important;
    z-index: 1 !important;
}

.footer-overlay {
    position: relative !important;
    z-index: 2 !important;
    padding: 0 !important;
}

.footer-info {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    color: #fff !important;
    text-align: center !important;
    z-index: 3 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    margin-bottom: 2rem !important;
    display: none !important;
}

.footer-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    color: white !important;
}

.footer-content {
    position: relative !important;
    z-index: 2 !important;
    color: #fff !important;
    text-align: center !important;
    padding: 2rem 1.5rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Footer Section Titles */
.footer-section-title {
    color: white !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 0.5rem !important;
}

.footer-section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: var(--primary-gradient) !important;
    border-radius: 2px !important;
}

/* Footer Grid Layout */
.footer-content .row {
    margin-bottom: 1.5rem !important;
}

.footer-content .col-md-4 {
    margin-bottom: 1.5rem !important;
}

/* Footer Cards - Modern Design */
.footer-card {
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 15px !important;
    padding: 1.25rem 1.5rem !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    align-items: center !important;
    display: flex !important;
    width: 100% !important;
    min-height: 80px !important;
    border: 2px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Footer Card Gradient Border Effect */
.footer-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border-radius: 15px !important;
    padding: 2px !important;
    background: var(--primary-gradient) !important;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.footer-card:hover::before {
    opacity: 1 !important;
}

.footer-card:hover {
    box-shadow: 
        0 12px 35px rgba(255, 132, 0, 0.25),
        0 4px 10px rgba(255, 132, 0, 0.15) !important;
    transform: translateY(-5px) scale(1.02) !important;
    border-color: transparent !important;
    background: white !important;
}

.footer-card i {
    font-size: 2rem !important;
    margin-right: 1.25rem !important;
    color: var(--primary-color) !important;
    flex-shrink: 0 !important;
    width: 50px !important;
    height: 50px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 132, 0, 0.08) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.footer-card:hover i {
    background: var(--primary-gradient) !important;
    color: white !important;
    transform: rotate(5deg) scale(1.1) !important;
}

.footer-card p {
    margin: 0 !important;
    font-size: 1.05rem !important;
    color: #2c3e50 !important;
    display: inline !important;
    line-height: 1.6 !important;
    flex: 1 !important;
    text-align: left !important;
}

.footer-card .label {
    font-weight: 700 !important;
    color: #1a1a1a !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: var(--primary-color) !important;
}

/* Footer Link Cards */
.footer-card.link-card {
    text-decoration: none !important;
    color: #2c3e50 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.95) !important;
    flex-direction: column !important;
    text-align: center !important;
    padding: 1.5rem 1rem !important;
    min-height: 100px !important;
}

.footer-card.link-card:hover {
    box-shadow: 
        0 12px 35px rgba(145, 202, 69, 0.3),
        0 4px 10px rgba(145, 202, 69, 0.2) !important;
    transform: translateY(-8px) scale(1.03) !important;
    background: white !important;
}

.footer-card.link-card::before {
    background: var(--secondary-gradient) !important;
}

.footer-card.link-card i {
    margin-right: 0 !important;
    margin-bottom: 0.75rem !important;
    font-size: 2.2rem !important;
    width: 60px !important;
    height: 60px !important;
    background: rgba(145, 202, 69, 0.1) !important;
    transition: all 0.4s ease !important;
}

.footer-card.link-card:hover i {
    color: white !important;
    background: var(--secondary-gradient) !important;
    transform: rotate(-5deg) scale(1.15) !important;
    box-shadow: 0 8px 20px rgba(145, 202, 69, 0.3) !important;
}

.footer-card.link-card p {
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-align: center !important;
    color: #2c3e50 !important;
    transition: color 0.3s ease !important;
}

.footer-card.link-card:hover p {
    color: var(--secondary-color) !important;
}

/* App Download Buttons */
.app-buttons {
    display: flex !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 3rem !important;
    padding: 2rem 1rem !important;
    flex-wrap: wrap !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.app-buttons::before {
    display: block !important;
    width: 100% !important;
    color: white !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.app-buttons a {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-block !important;
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.app-buttons a::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.6s, height 0.6s !important;
}

.app-buttons a:hover::after {
    width: 300px !important;
    height: 300px !important;
}

.app-buttons a:hover {
    transform: translateY(-5px) scale(1.08) !important;
    box-shadow: 
        0 12px 35px rgba(255, 132, 0, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.3) !important;
}

.app-download-img {
    height: 55px !important;
    width: auto !important;
    border-radius: 10px !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    z-index: 1 !important;
    filter: brightness(1.05) !important;
}

.app-buttons a:hover .app-download-img {
    filter: brightness(1.15) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    footer.store-footer,
    .store-footer {
        padding: 2.5rem 0 2rem !important;
        min-height: 280px !important;
    }
    
    .footer-content {
        padding: 1.5rem 1rem !important;
    }
    
    .footer-section-title {
        font-size: 1.1rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .footer-card {
        padding: 1rem 1.25rem !important;
        min-height: 70px !important;
        border-radius: 12px !important;
    }
    
    .footer-card i {
        font-size: 1.6rem !important;
        margin-right: 1rem !important;
        width: 45px !important;
        height: 45px !important;
    }
    
    .footer-card p {
        font-size: 0.95rem !important;
    }
    
    .footer-card .label {
        font-size: 0.8rem !important;
    }
    
    .footer-card.link-card {
        padding: 1.25rem 1rem !important;
        min-height: 90px !important;
    }
    
    .footer-card.link-card i {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .app-buttons {
        margin-top: 2.5rem !important;
        padding: 1.5rem 1rem !important;
        gap: 1.25rem !important;
    }
    
    .app-buttons::before {
        font-size: 1.2rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .app-download-img {
        height: 48px !important;
    }
}

@media (max-width: 576px) {
    footer.store-footer,
    .store-footer {
        padding: 2rem 0 1.5rem !important;
    }
    
    .footer-content {
        padding: 1rem 0.75rem !important;
    }
    
    .footer-section-title {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-card {
        flex-direction: row !important;
        text-align: left !important;
        padding: 0.85rem 1rem !important;
        min-height: 65px !important;
        border-radius: 10px !important;
    }
    
    .footer-card i {
        font-size: 1.4rem !important;
        margin-right: 0.85rem !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .footer-card p {
        font-size: 0.88rem !important;
    }
    
    .footer-card .label {
        font-size: 0.75rem !important;
        margin-bottom: 0.15rem !important;
    }
    
    .footer-card.link-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem 0.75rem !important;
        min-height: 85px !important;
    }
    
    .footer-card.link-card i {
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.6rem !important;
    }
    
    .footer-card.link-card p {
        font-size: 0.9rem !important;
    }
    
    .app-buttons {
        gap: 1rem !important;
        margin-top: 2rem !important;
        padding: 1.25rem 0.75rem !important;
        border-radius: 15px !important;
    }
    
    .app-buttons::before {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .app-download-img {
        height: 42px !important;
    }

}
