:root {
    --primary-blue: #F95700;
    --primary-dark: #D04800;
    --secondary-blue: #FF7315;
    --accent-gold: #E29B27;
    --accent-gold-hover: #C98317;
    --accent-green: #6CB33F;
    --text-dark: #333;
    --light-gray: #f4f4f4;
    --border-color: #eee;
    --red-tag: #e62e04;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: var(--text-dark);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar div {
    display: flex;
    gap: 20px;
}

/* Main Header */
header {
    background: white;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text h1 {
    font-size: 18px;
    margin: 0;
    color: var(--primary-blue);
}

.logo-text p {
    font-size: 16px;
    margin: 0;
    font-weight: bold;
}

.search-container {
    flex-grow: 0.6;
    display: flex;
}

.search-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search-container button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.user-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Redesigned Premium Contact Bar */
.contact-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 6px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #475569;
}

.contact-bar-left, .contact-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-bar-item:hover {
    color: var(--primary-blue);
}

.contact-bar-item i {
    color: var(--accent-gold); /* Gold icon color accent */
    font-size: 12px;
    background: rgba(226, 155, 39, 0.12);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.contact-bar-item:hover i {
    background: var(--primary-blue);
    color: #ffffff;
}

/* Mobile responsive contact-bar */
@media (max-width: 768px) {
    .contact-bar {
        flex-direction: column;
        gap: 8px;
        padding: 8px 15px;
        text-align: center;
    }
    
    .contact-bar-left, .contact-bar-right {
        justify-content: center;
        width: 100%;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .contact-bar-item span {
        font-size: 12px;
    }
}

/* Navigation */
nav {
    background: var(--primary-blue);
    color: white;
    padding: 0 5%;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    padding: 15px 20px;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul li:hover,
nav ul li.active {
    background: var(--secondary-blue);
}

/* Main Content Layout */
.main-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    padding: 20px 5%;
}

/* Sidebar */
.sidebar {
    background: #000000;
    color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.sidebar h3 {
    background: #000000;
    color: #ffffff;
    padding: 15px;
    margin: 0;
    border-bottom: 2px solid var(--primary-blue);
    font-size: 16px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    padding: 12px 15px;
    border-bottom: 1px solid #1a1a1a;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    color: #e2e8f0;
}

.sidebar ul li:hover {
    background-color: #1a1a1a;
    color: var(--primary-blue);
}

.sidebar ul li.active {
    background-color: #1a1a1a;
    color: var(--primary-blue);
    font-weight: bold;
    border-left: 3px solid var(--primary-blue);
    padding-left: 12px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(to right, #eef2ff, #fff);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hero-text h2 {
    color: var(--primary-blue);
    font-size: 28px;
    margin: 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.product-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.3s ease;
}

.product-card.reveal-card {
    opacity: 0;
    transition: opacity 0.8s ease, 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.3s ease;
}

.product-card.reveal-card.reveal-visible {
    opacity: 1;
}

.product-card.reveal-card.reveal-visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 51, 153, 0.08), 0 4px 10px rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 51, 153, 0.3);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 51, 153, 0.08), 0 4px 10px rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 51, 153, 0.3);
}

.product-card img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h4 {
    font-size: 14px;
    margin: 10px 0;
    height: 40px;
}

.price-tag {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

.discount-badge {
    background: var(--red-tag);
    color: white;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.hero-img img {
    width: 400px;
}

.add-to-cart {
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.add-to-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* Footer Info */
.footer-info {
    background: white;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
    font-size: 14px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }

    nav ul li.nav-item {
        display: none !important;
    }

    header {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 10px 3% !important;
    }

    .header-main-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .logo-section {
        gap: 8px !important;
        flex-grow: 1;
        justify-content: center;
    }

    .logo-section img {
        width: 45px !important;
        height: 45px !important;
    }

    .logo-text h1 {
        font-size: 13px !important;
        line-height: 1.2 !important;
    }

    .logo-text p {
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    .search-container {
        width: 100% !important;
        margin-top: 2px;
    }

    .search-container input {
        padding: 8px 12px !important;
        font-size: 14px !important;
    }

    .search-container button {
        padding: 0 15px !important;
    }

    .user-actions {
        gap: 10px !important;
    }

    .user-actions .user-login .login-text {
        display: none !important;
    }

    nav {
        display: none !important;
        /* Hide the entire navigation bar on mobile */
    }

    nav ul li.menu-toggle {
        display: block !important;
        border-right: none;
    }

    .contact-bar {
        display: none !important;
    }

    .main-container {
        grid-template-columns: 1fr;
        padding: 15px 3%;
        gap: 15px;
    }

    .sidebar {
        display: block !important;
        background: none !important;
        border: none !important;
        margin-bottom: 10px !important;
    }

    .sidebar h3 {
        display: none !important;
        /* Hide 'ক্যাটাগরি' title on mobile */
    }

    .sidebar ul {
        display: flex !important;
        overflow-x: auto !important;
        gap: 10px !important;
        padding: 5px 0 !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .sidebar ul::-webkit-scrollbar {
        display: none !important;
    }

    .sidebar ul li {
        white-space: nowrap !important;
        background: white !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 20px !important;
        padding: 8px 15px !important;
        font-size: 13px !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) !important;
    }

    .hero-banner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .hero-img img {
        width: 100%;
        max-width: 280px;
    }

    .hero-text h2 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .footer-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
        padding: 20px 3%;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card img {
        height: 110px;
    }

    .product-card h4 {
        font-size: 12px;
        height: 34px;
        margin: 8px 0;
        overflow: hidden;
    }

    .price-tag {
        font-size: 14px;
    }

    .old-price {
        font-size: 10px;
    }

    .add-to-cart {
        padding: 8px;
        font-size: 12px;
    }
}

/* Drawer Menu Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-overlay.open {
    display: block;
    opacity: 1;
}

.drawer-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #000000;
    color: #ffffff;
    z-index: 1001;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.drawer-menu.open {
    left: 0;
}

.drawer-header {
    padding: 20px;
    background: #000000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1a1a1a;
}

.drawer-header h3 {
    margin: 0;
    font-size: 18px;
}

.drawer-header .close-btn {
    font-size: 20px;
    cursor: pointer;
}

.drawer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
}

.drawer-links li {
    padding: 15px 20px;
    border-bottom: 1px solid #1a1a1a;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s ease;
    text-align: left;
    color: #e2e8f0;
}

.drawer-links li:hover,
.drawer-links li.active {
    background: #1a1a1a;
    color: var(--primary-blue);
    font-weight: bold;
}

nav ul li.menu-toggle {
    display: block;
    /* Visible by default as the icon button */
    font-size: 18px;
}

/* Premium Header and Mobile Styles */
header {
    background: white;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 5px;
    align-items: center;
    justify-content: center;
}

.logo-section img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.user-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.user-actions .user-login {
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-actions .cart-btn {
    cursor: pointer;
}

.cart-badge {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    position: absolute;
    top: -10px;
    right: -10px;
}

@media (min-width: 769px) {
    .header-main-row {
        display: contents;
        /* Acts as direct children of header flexbox */
    }
}

/* Islamic Announcement Slider Styles */
.announcement-slider-container {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: #ffffff;
    border-radius: 8px;
    padding: 15px 30px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-left: 4px solid var(--accent-gold); /* Gold left accent border */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.announcement-slider {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.announcement-slide.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.announcement-slide .arabic-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Georgia', serif;
}

.announcement-slide .bengali-text {
    font-size: 15px;
    font-weight: 500;
    color: #f0f4ff;
    line-height: 1.4;
}

.announcement-slide .highlight-gold {
    color: #ffd700;
    font-weight: 700;
}

.announcement-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.announcement-dots .dot {
    width: 7px;
    height: 7px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.announcement-dots .dot.active {
    background-color: #ffd700;
    width: 15px;
    border-radius: 3px;
}

/* Responsive slider adjustments */
@media (max-width: 768px) {
    .announcement-slider-container {
        padding: 12px 15px;
        min-height: 90px;
    }
    .announcement-slider {
        height: 70px;
    }
    .announcement-slide .arabic-text {
        font-size: 17px;
    }
    .announcement-slide .bengali-text {
        font-size: 13px;
    }
}

/* ==========================================
   Global Mobile Responsiveness Overrides
   ========================================== */
@media (max-width: 768px) {
    /* Main container overrides */
    .main-container {
        display: block !important;
        padding: 15px 3% !important;
    }

    /* Dashboard Layout Responsiveness */
    .dashboard-wrapper {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .dashboard-sidebar {
        max-width: 100% !important;
        width: 100% !important;
    }

    .sidebar-user-info {
        padding: 15px !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        text-align: left !important;
    }

    .sidebar-user-avatar {
        width: 50px !important;
        height: 50px !important;
        margin: 0 !important;
    }

    .dashboard-nav-links {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .dashboard-nav-links::-webkit-scrollbar {
        display: none !important;
    }

    .dashboard-nav-item {
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    .dashboard-nav-item a {
        padding: 10px 15px !important;
        font-size: 13px !important;
        border-bottom: none !important;
        border-left: none !important;
        border-bottom: 2px solid transparent !important;
    }

    .dashboard-nav-item.active a, .dashboard-nav-item a:hover {
        border-bottom-color: var(--primary-blue) !important;
        border-left-color: transparent !important;
        background-color: transparent !important;
    }

    .dashboard-main-content {
        padding: 15px !important;
    }

    .dashboard-tab-title {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }

    /* Table Responsiveness Overrides */
    .dashboard-table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* Cart Page Responsiveness */
    .cart-page-container {
        gap: 15px !important;
    }

    .cart-items-section, .cart-summary-section {
        padding: 15px !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .cart-table th, .cart-table td {
        padding: 8px !important;
        font-size: 13px !important;
    }

    .cart-qty-wrapper {
        width: 80px !important;
    }

    .cart-qty-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 14px !important;
    }

    .cart-qty-input {
        width: 32px !important;
        height: 24px !important;
        font-size: 12px !important;
    }

    /* Checkout Page Responsiveness */
    .checkout-container {
        gap: 15px !important;
    }

    .checkout-form-section, .checkout-summary-section {
        padding: 20px 15px !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .form-col-full {
        grid-column: 1 !important;
    }

    /* Product Page Responsiveness */
    .product-details-container {
        padding: 15px !important;
        gap: 20px !important;
    }

    .product-image-gallery, .product-info-details {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .main-image-wrapper {
        height: 280px !important;
    }

    .product-info-title {
        font-size: 20px !important;
    }

    .product-info-price {
        font-size: 24px !important;
    }

    .purchase-actions-section {
        gap: 10px !important;
    }

    .action-btn-large {
        padding: 0 15px !important;
        font-size: 14px !important;
        flex: 1 !important;
        height: 40px !important;
    }

    .quantity-selector-wrapper {
        height: 40px !important;
    }

    .tab-content-panel {
        padding: 15px !important;
    }

    .tab-header-btn {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }

    /* Search Results Responsiveness */
    .search-results-header {
        padding: 15px !important;
    }

    .search-input-box-wrapper {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .search-btn-box {
        width: 100% !important;
    }

    /* Referral Page Responsiveness */
    .referral-link-wrapper {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .referral-link-wrapper input {
        width: 100% !important;
    }

    .referral-link-wrapper .referral-btn {
        width: 100% !important;
        height: 42px !important;
    }

    .referral-meta-wrapper {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .referrals-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
        gap: 12px !important;
    }
}

/* ==========================================
   Premium Checkout Button Styling
   ========================================== */
.checkout-btn {
    width: 100% !important;
    height: 52px !important;
    background: linear-gradient(135deg, #d4af37, #b8860b) !important; /* Gold gradient */
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    margin-top: 20px !important;
    box-sizing: border-box !important;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #e5c158, #c99718) !important;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.45) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

.checkout-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.2) !important;
}

.checkout-btn.blue-grad {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark)) !important;
    box-shadow: 0 4px 15px rgba(10, 101, 158, 0.25) !important;
}

.checkout-btn.blue-grad:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue)) !important;
    box-shadow: 0 8px 25px rgba(10, 101, 158, 0.45) !important;
    transform: translateY(-2px) !important;
}

.checkout-btn.blue-grad:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 10px rgba(10, 101, 158, 0.2) !important;
}

/* ==========================================
   Redesigned Premium Footer Styling
   ========================================== */
.main-footer {
    background-color: #0b132b; /* Sleek, dark corporate blue/black */
    color: #cbd5e1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 5% 20px 5%;
    border-top: 4px solid #d4af37; /* Royal gold border accent */
    margin-top: 40px;
}

/* Feature highlight row above main footer content */
.footer-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 45px;
}

.footer-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
}

.footer-feature-icon {
    font-size: 24px;
    color: #d4af37; /* Brand gold accent */
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
}

.footer-feature-text p {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
}

/* Footer columns grid */
.footer-cols-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    object-fit: cover;
}

.footer-brand-logo h3 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links a:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 101, 158, 0.4);
}

.footer-social-links a.youtube:hover {
    background: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.footer-social-links a.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Footer License Styling */
.footer-license {
    margin-top: 5px;
}

.footer-license img {
    max-width: 100%;
    width: 150px;
    height: auto;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.footer-license img:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: #d4af37;
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.25);
}

.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #d4af37;
    border-radius: 2px;
}

.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-col-links li a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: #d4af37;
    font-size: 16px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.footer-contact-item span {
    line-height: 1.4;
    color: #94a3b8;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #64748b;
}

.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-payment-title {
    font-size: 13px;
    color: #64748b;
}

.footer-payment-icons {
    display: flex;
    gap: 8px;
}

.footer-payment-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile styles for footer */
@media (max-width: 992px) {
    .footer-cols-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-cols-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payment-methods {
        justify-content: center;
    }
}
