/* ========================================
   SRCJ Jewellery - COMPLETE MODERN CSS
   Author: SRCJ Design Team
   Version: 2.0
   ======================================== */

/* === 1. CSS CUSTOM PROPERTIES === */
:root {
    /* Brand Colors */
    --primary-gold: #d4af37;
    --secondary-gold: #f4e4bc;
    --light-gold: #f4e794;
    --dark-brown: #5d2e11;
    --medium-brown: #4A3F3A;
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #ebe6e3;
    --light-gray: #f9fafb;
    --medium-gray: #6b7280;
    --dark-gray: #4a4a4a;
    --black: #1a1a1a;
    /* Accent Colors */
    --border-light: rgba(168, 159, 156, 0.2);
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(235, 230, 227, 0.95);
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 12px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 50px;
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* === 2. FONT FACES === */
@font-face {
    font-family: "Manrope";
    src: url("./../font/manrope/Manrope-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("./../font/poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* === 3. RESET & BASE STYLES === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: linear-gradient(135deg, var(--off-white) 0%, whitesmoke 100%);
    letter-spacing: 0.03rem;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    padding-top: 120px;
    color: var(--medium-brown);
    line-height: 1.6;
}

/* === 4. TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
    margin-bottom: 0;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: var(--medium-brown);
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

    a:hover,
    a:focus {
        color: var(--primary-gold);
        outline: none;
    }

/* === 5. UTILITY CLASSES === */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.d-none {
    display: none !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

/* Spacing */
.mb-15 {
    margin-bottom: 15px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mb-minus-24 {
    margin-bottom: -24px !important;
}

/* Padding */
.padding-t-100 {
    padding-top: 100px !important;
}

.padding-b-100 {
    padding-bottom: 100px !important;
}

.padding-tb-100 {
    padding: 100px 0 !important;
}

.padding-tb-50 {
    padding: 50px 0 !important;
}

/* Background */
.bg-off-white {
    background-color: var(--off-white);
}

/* === 6. HEADER STYLES === */
header {
    position: fixed;
    width: 100%;
    height: 150px;
    min-height: 90px;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(20px);
    background: var(--overlay-light);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

    header.scrolled {
        min-height: 70px;
        padding: 15px 5%;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
    }

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    transition: transform var(--transition-base);
    position: relative;
    z-index: 10;
}

    .logo:hover {
        transform: scale(1.05);
    }

.logo-img {
    width: 80px;
    height: 80px;
    margin-right: 12px;
    transition: all var(--transition-base);
    filter: drop-shadow(var(--shadow-sm));
    border-radius: 50%;
    border: 2px solid transparent;
    object-fit: contain;
    background: transparent;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* === 7. NAVIGATION === */
.navbar {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
}

    .navbar li {
        position: relative;
    }

    .navbar a {
        font-size: 1rem;
        font-weight: 500;
        color: var(--dark-gray);
        padding: 12px 0;
        position: relative;
        transition: all var(--transition-base);
        display: block;
    }

        .navbar a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
            transition: width var(--transition-smooth);
        }

        .navbar a:hover {
            color: var(--primary-gold);
            transform: translateY(-2px);
        }

            .navbar a:hover::before {
                width: 100%;
            }

/* Dropdown Styles */
.dropdown {
    position: relative;
    z-index: 99999;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
    border: 1px solid var(--border-light);
    padding: 15px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    padding: 12px 20px;
    display: block;
    font-size: 0.95rem;
    border-bottom: none;
}

    .dropdown-content a:hover {
        background: rgba(212, 175, 55, 0.1);
    }

/* === 8. TODAY'S RATES DROPDOWN === */
.todayrates-dropdown {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 120px;
    z-index: 10000;
}

.todayrates-dropbtn {
    background-color: var(--off-white);
    color: var(--dark-brown);
    padding: 10px 15px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    font-weight: 500;
}

    .todayrates-dropbtn:hover {
        background-color: var(--white);
        border-radius: var(--radius-full);
        transform: translateY(-2px);
    }

.todayrates-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: whitesmoke;
    min-width: 230px;
    overflow: auto;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    border-radius: var(--radius-md);
    margin-top: 5px;
}

.todayrates-column {
    float: right;
    width: 50%;
    padding: 10px;
    box-sizing: content-box;
}

    .todayrates-column:after {
        content: "";
        display: block;
        clear: both;
    }

    .todayrates-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .todayrates-column ul li,
        .todayrates-column span {
            display: block;
            padding: 8px 5px;
            color: black;
            transition: background-color var(--transition-base);
            font-size: 14px;
        }

            .todayrates-column ul li:hover,
            .todayrates-column span:hover {
                background-color: rgba(212, 175, 55, 0.1);
            }

.todayrates-dropdown:hover .todayrates-dropdown-content {
    display: flex;
}

.todayrates-footer {
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    color: #555;
    border-top: 1px solid #e0e0e0;
    margin-top: 5px;
}

/* === 9. HEADER ICONS === */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

    .header-icons i {
        font-size: 22px;
        cursor: pointer;
        color: var(--dark-gray);
        padding: 10px;
        border-radius: 50%;
        transition: all var(--transition-base);
        position: relative;
    }

        .header-icons i:hover {
            color: var(--primary-gold);
            background: rgba(212, 175, 55, 0.1);
            transform: scale(1.1);
        }

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px;
    border-radius: 25px;
    transition: all var(--transition-base);
    text-decoration: none;
}

    .user-icon:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--primary-gold);
    }

    .user-icon span {
        font-size: 0.9rem;
        font-weight: 500;
        color: inherit;
        white-space: nowrap;
    }

.user-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
    border: 1px solid var(--border-light);
    padding: 10px 0;
    z-index: 1000;
}

.user-dropdown:hover .user-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-content a {
    padding: 12px 20px;
    display: block;
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all var(--transition-base);
    border-radius: 6px;
    margin: 2px 8px;
}

    .user-dropdown-content a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--primary-gold);
    }

    .user-dropdown-content a i {
        margin-right: 8px;
        font-size: 16px;
        padding: 0;
        background: none;
        transform: none;
    }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
}

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--dark-gray);
        margin: 3px 0;
        transition: var(--transition-base);
        border-radius: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

/* === 10. SEARCH CONTAINER === */
.search-container {
    position: fixed;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--overlay-dark);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-slow);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
}

    .search-container.active {
        top: 0;
        opacity: 1;
        visibility: visible;
    }

.search-box {
    width: 90%;
    max-width: 650px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--overlay-light) 0%, rgba(245, 245, 245, 0.98) 100%);
    padding: 25px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(20px);
}

.search-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    transition: all var(--transition-base);
    box-sizing: border-box;
    box-shadow: var(--shadow-sm);
    font-family: 'Poppins', sans-serif;
}

    .search-input:focus {
        border-color: var(--primary-gold);
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), var(--shadow-md);
        background: rgba(255, 255, 255, 1);
    }

    .search-input::placeholder {
        color: #9ca3af;
    }

.search-close {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all var(--transition-base);
    text-decoration: none;
    flex-shrink: 0;
}

    .search-close:hover {
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        color: white;
        border-color: var(--primary-gold);
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

/* === 11. CART STYLES === */
.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px;
    border-radius: 25px;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
}

    .cart-link:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--primary-gold);
    }

.cart-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1.5rem;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--medium-gray);
    color: var(--primary-gold);
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
    padding: 0 2px;
    box-sizing: border-box;
    z-index: 1;
}

    .cart-badge.has-items {
        display: flex !important;
    }

@keyframes badge-update {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.cart-badge.updating {
    animation: badge-update 0.3s ease;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

    .cart-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    z-index: 99999;
    transition: right var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

    .cart-sidebar.active {
        right: 0;
    }

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    flex-shrink: 0;
}

.cart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.cart-close {
    background: #f3f4f6;
    border: none;
    color: var(--medium-gray);
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

    .cart-close:hover {
        background: var(--dark-gray);
        color: var(--white);
        transform: scale(1.05);
    }

.cart-content {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.empty-cart {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.empty-cart-container {
    text-align: center;
    max-width: 280px;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-cart-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 0.5rem 0;
}

.empty-cart-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.cart-items-container {
    padding: 1rem;
    max-width: 360px;
    margin: 0 auto;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    border: 1px solid #f3f4f6;
    transition: all var(--transition-fast);
    position: relative;
}

    .cart-item:hover {
        background: #f3f4f6;
        border-color: #e5e7eb;
        transform: translateY(-1px);
        box-shadow: var(--shadow-sm);
    }

.cart-item-image-wrapper {
    flex-shrink: 0;
    margin-right: 1rem;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.remove-btn {
    background: #f3f4f6;
    border: 1px solid #f3f4f6;
    color: var(--medium-gray);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    margin-left: 0.75rem;
}

    .remove-btn:hover {
        background: var(--dark-gray);
        color: var(--primary-gold);
        border-color: #f3f4f6;
        transform: scale(1.1);
    }

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: var(--white);
    flex-shrink: 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.cart-total-label {
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.cart-total-amount {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-gold);
}

.cart-checkout-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
}

.cart-empty-btn {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

    .cart-empty-btn:hover {
        background: var(--medium-gray);
        color: var(--white);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
    }

.cart-filled-btn {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
}

    .cart-filled-btn:hover {
        background: var(--medium-gray);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        text-decoration: none;
        color: whitesmoke;
    }

.cart-content::-webkit-scrollbar {
    width: 6px;
}

.cart-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cart-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

    .cart-content::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

/* === 12. HERO SLIDER === */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero-slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    max-width: 700px;
    color: white;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-out;
    transition-delay: 0.3s;
}

.hero-slide.active .hero-text {
    transform: translateY(0);
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 60px;
}

    .hero-subtitle::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 40px;
        height: 1px;
        background: linear-gradient(90deg, var(--primary-gold), transparent);
        transform: translateY(-50%);
    }

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    word-wrap: break-word;
    max-width: 95%;
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .hero-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }

    .hero-button:hover::before {
        left: 100%;
    }

    .hero-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        color: var(--black);
    }

.hero-slider-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.hero-nav-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

    .hero-nav-indicator.active {
        background: var(--primary-gold);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }

    .hero-nav-indicator::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(212, 175, 55, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease;
    }

    .hero-nav-indicator:hover::before {
        width: 30px;
        height: 30px;
    }

.hero-slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

    .hero-slider-control:hover {
        background: rgba(212, 175, 55, 0.2);
        border-color: var(--primary-gold);
    }

    .hero-slider-control.control-previous {
        left: 30px;
    }

    .hero-slider-control.control-forward {
        right: 30px;
    }

    .hero-slider-control svg {
        width: 20px;
        height: 20px;
        fill: white;
        transition: fill 0.4s ease;
    }

    .hero-slider-control:hover svg {
        fill: var(--primary-gold);
    }

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* === 13. CATEGORY SLIDER === */
.slider-container {
    width: 100%;
    max-height: 800px;
    height: 250px;
    background-color: var(--off-white);
    text-align: center;
    padding: 20px 10px;
    box-sizing: border-box;
}

    .slider-container h4 {
        font-family: 'Poppins', sans-serif;
        font-size: 25px;
        color: black;
        margin: 0 0 20px 0;
        font-weight: 700;
    }

.slide-img {
    transition: transform 1s ease;
}

    .slide-img:hover {
        transform: rotateZ(-20deg);
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

    .slider-arrow:hover {
        background-color: var(--primary-gold);
        border-color: var(--primary-gold);
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

    .slider-arrow.left {
        left: 10px;
    }

    .slider-arrow.right {
        right: 10px;
    }

.slider {
    position: relative;
}

.category-slider {
    scrollbar-width: none;
}

    .category-slider::-webkit-scrollbar {
        display: none;
    }

.slide {
    padding: 10px;
    transition: transform var(--transition-base);
}

    .slide:hover {
        transform: translateY(-5px);
    }

    .slide a {
        text-decoration: none;
        display: block;
    }

    .slide img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: var(--shadow-sm);
        transition: all var(--transition-base);
    }

    .slide:hover img {
        box-shadow: var(--shadow-md);
    }

    .slide h3 {
        margin-top: 10px;
        font-size: 14px;
        color: #333;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
    }

/* === 14. GUARANTEE SLIDER === */
.guarantee-slider {
    text-align: center;
    padding: 50px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

    .guarantee-slider h4 {
        font-size: 28px;
        margin-bottom: 40px;
        font-weight: 700;
        color: var(--black);
    }

.guarantee-picture-container {
    display: flex;
    gap: 100px;
    padding: 10px;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.guarantee-picture-item {
    transition: transform var(--transition-base);
}

    .guarantee-picture-item:hover {
        transform: translateY(-10px);
    }

    .guarantee-picture-item img {
        max-width: 100%;
        height: 180px;
        width: auto;
        filter: drop-shadow(var(--shadow-sm));
    }

/* === 15. PRODUCT CARDS === */
.product-card-2 {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    background: var(--white);
}

    .product-card-2:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-5px);
        border-color: var(--primary-gold);
    }

    .product-card-2 .cr-pro-image {
        position: relative;
        border-bottom: 1px solid #eee;
        overflow: hidden;
        width: 100%;
        aspect-ratio: 4 / 3;
        background-color: var(--light-gray);
    }

        .product-card-2 .cr-pro-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity var(--transition-base);
        }

        .product-card-2 .cr-pro-image .main-image {
            z-index: 1;
        }

        .product-card-2 .cr-pro-image .hover-image {
            z-index: 2;
            opacity: 0;
        }

        .product-card-2 .cr-pro-image:hover .hover-image {
            opacity: 1;
        }

        .product-card-2 .cr-pro-image:hover .main-image {
            opacity: 0;
        }

.cr-pro-content {
    padding: 1.5rem;
}

.cr-info {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cr-pro-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

    .cr-pro-title a {
        color: var(--black);
        transition: color var(--transition-base);
    }

        .cr-pro-title a:hover {
            color: var(--primary-gold);
        }

.cr-price {
    display: block;
    margin-bottom: 1rem;
}

    .cr-price .new-price {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary-gold);
    }

.cr-buttons {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .cr-buttons:hover {
        background: linear-gradient(135deg, var(--black), #2d2d2d);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        color: white;
    }

/* === 16. PRODUCT SECTIONS === */
.section-product {
    padding: 100px 0;
}

.title-2 {
    text-align: center;
    margin-bottom: 50px;
}

.title-box .cr-banner h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cr-banner-sub-title p {
    font-size: 1rem;
    color: var(--medium-gray);
}

/* Product Tabs */
.cr-pro-tab {
    margin-top: 30px;
}

.cr-pro-tab-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
    margin-bottom: 40px;
}

    .cr-pro-tab-nav .nav-item {
        list-style: none;
    }

    .cr-pro-tab-nav .nav-link {
        padding: 12px 30px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--medium-gray);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: none;
        background: transparent;
        position: relative;
        transition: all var(--transition-base);
        cursor: pointer;
    }

        .cr-pro-tab-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
            transition: width var(--transition-smooth);
        }

        .cr-pro-tab-nav .nav-link.active,
        .cr-pro-tab-nav .nav-link:hover {
            color: var(--primary-gold);
        }

            .cr-pro-tab-nav .nav-link.active::after {
                width: 100%;
            }

/* === 17. PRODUCT BANNER === */
.section-product-banner {
    padding: 50px 0 100px;
}

.cr-product-banner-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

    .cr-product-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .cr-product-banner-image:hover img {
        transform: scale(1.05);
    }

.cr-product-banner-contain {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
}

    .cr-product-banner-contain h5 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .cr-product-banner-contain p {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        color: white;
    }

    .cr-product-banner-contain .percent {
        color: var(--light-gold);
        font-weight: 600;
    }

.cr-product-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    text-decoration: none;
}

    .cr-product-button:hover {
        background: linear-gradient(135deg, var(--black), #2d2d2d);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

/* === 18. INSTAGRAM SECTION === */
.section-insta {
    padding: 50px 0 100px;
}

.cr-insta .swiper-slide {
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 250px;
    width: 100%;
}

.cr-insta-image {
    position: relative;
    height: 100%;
}

    .cr-insta-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cr-insta-image .insta-overlay {
        transition: all var(--transition-base);
        border-radius: var(--radius-sm);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: transparent;
    }

    .cr-insta-image:hover .insta-overlay {
        background-color: var(--overlay-dark);
    }

    .cr-insta-image .insta-overlay:after {
        transition: all var(--transition-base);
        font-family: remixicon;
        content: "\ee66";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        color: var(--white);
        font-size: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
    }

    .cr-insta-image:hover .insta-overlay:after {
        opacity: 1;
    }

/* === 19. SERVICES SECTION === */
.section-services {
    position: relative;
    padding: 50px 0;
}

.cr-services-border {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: 30px;
    background: var(--white);
}

.cr-services {
    padding: 24px;
    background-color: var(--light-gray);
    border-radius: var(--radius-sm);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-base);
}

    .cr-services:hover {
        background-color: white;
        box-shadow: var(--shadow-sm);
        transform: translateY(-5px);
    }

    .cr-services .cr-services-image i {
        font-size: 43px;
        color: var(--primary-gold);
        margin-bottom: 15px;
    }

    .cr-services .cr-services-contain h4 {
        margin-bottom: 10px;
        font-size: 18px;
        color: var(--black);
        font-weight: 600;
    }

    .cr-services .cr-services-contain p {
        font-size: 14px;
        color: var(--medium-gray);
        line-height: 1.6;
    }

/* === 20. FOOTER === */
.footer {
    border-top: 1px solid white;
    background-color: var(--off-white);
    padding-top: 50px;
}

.footer-top {
    padding-bottom: 30px;
}

.cr-footer-logo .image img {
    width: 100px;
    margin-bottom: 20px;
}

.cr-footer-logo p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.cr-footer h4.cr-sub-title {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
}

.cr-footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .cr-footer ul li {
        font-size: 14px;
        color: #777;
        margin-bottom: 10px;
        line-height: 1.8;
    }

        .cr-footer ul li a {
            color: #777;
            transition: color var(--transition-base);
        }

            .cr-footer ul li a:hover {
                color: var(--primary-gold);
                padding-left: 5px;
            }

.location-icon::before {
    content: '\f3c5';
    font-family: remixicon;
    margin-right: 10px;
    color: var(--primary-gold);
}

.mail-icon::before {
    content: '\f0e0';
    font-family: remixicon;
    margin-right: 10px;
    color: var(--primary-gold);
}

.phone-icon::before {
    content: '\f095';
    font-family: remixicon;
    margin-right: 10px;
    color: var(--primary-gold);
}

.cr-social-media {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .cr-social-media span a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        border: 1px solid #e1dfdf;
        border-radius: var(--radius-sm);
        transition: all var(--transition-base);
        color: var(--dark-gray);
    }

        .cr-social-media span a:hover {
            background-color: var(--primary-gold);
            border-color: var(--primary-gold);
            color: white;
            transform: translateY(-3px);
        }

.cr-last-footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 30px;
}

    .cr-last-footer p {
        font-size: 14px;
        color: var(--medium-gray);
    }

/* === 21. BACK TO TOP BUTTON === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.back-to-top-wrap svg {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-dasharray: 307;
    stroke-dashoffset: 307;
    transition: stroke-dashoffset 0.3s;
}

/* === 22. LOADER === */
#cr-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #cr-overlay .loader {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        color: var(--primary-gold);
        animation: shadowRolling 2s linear infinite;
    }

/* === 23. ANIMATIONS === */
@keyframes shadowRolling {
    0% {
        box-shadow: 0px 0 rgba(212, 175, 55, 0), 0px 0 rgba(212, 175, 55, 0), 0px 0 rgba(212, 175, 55, 0), 0px 0 rgba(212, 175, 55, 0);
    }

    12% {
        box-shadow: 100px 0 var(--off-white), 0px 0 rgba(212, 175, 55, 0), 0px 0 rgba(212, 175, 55, 0), 0px 0 rgba(212, 175, 55, 0);
    }

    50% {
        box-shadow: 130px 0 var(--off-white), 120px 0 var(--off-white), 110px 0 var(--off-white), 100px 0 var(--off-white);
    }

    100% {
        box-shadow: 200px 0 rgba(212, 175, 55, 0), 200px 0 rgba(212, 175, 55, 0), 200px 0 rgba(212, 175, 55, 0), 200px 0 rgba(212, 175, 55, 0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* === 24. RESPONSIVE DESIGN === */

/* Extra Large Screens (1920px+) */
@media (min-width: 1920px) {
    .slider-container {
        height: 300px;
        padding: 30px 50px;
    }

        .slider-container h4 {
            font-size: 32px;
            margin-bottom: 30px;
        }

    .slider-arrow {
        width: 50px;
        height: 50px;
    }
}

/* Large Desktops (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .slider-container {
        height: 280px;
        padding: 25px 40px;
    }

        .slider-container h4 {
            font-size: 28px;
        }
}

/* Standard Desktops (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .slider-container {
        height: 260px;
        padding: 20px 30px;
    }
}

/* Laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .slider-container {
        height: 240px;
        padding: 20px 25px;
    }

    .guarantee-picture-container {
        gap: 50px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    body {
        padding-top: 90px;
    }

    header {
        padding: 15px 4%;
        height: 90px;
        min-height: 90px;
    }

    .logo-img {
        width: 70px;
        height: 70px;
    }

    .todayrates-dropdown {
        right: 80px;
    }

    .navbar {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        transition: left var(--transition-base);
        z-index: 999;
    }

        .navbar.active {
            left: 0;
        }

        .navbar a {
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-light);
        }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-icons {
        gap: 1rem;
    }

        .header-icons i {
            font-size: 20px;
            padding: 8px;
        }

    .slider-container {
        height: 220px;
        padding: 15px 20px;
    }

        .slider-container h4 {
            font-size: 22px;
            margin-bottom: 15px;
        }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

        .slider-arrow.left {
            left: 5px;
        }

        .slider-arrow.right {
            right: 5px;
        }

    .guarantee-picture-container {
        gap: 50px;
    }

    .guarantee-picture-item img {
        height: 150px;
    }

    .hero-slider {
        height: 80vh;
    }

    .hero-content {
        padding: 0 4%;
    }

    .hero-slider-control {
        width: 40px;
        height: 40px;
    }

        .hero-slider-control.control-previous {
            left: 15px;
        }

        .hero-slider-control.control-forward {
            right: 15px;
        }

    .cr-product-banner-contain {
        left: 30px;
    }
}

/* Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .slider-container {
        height: auto;
        min-height: 200px;
        padding: 15px;
    }

        .slider-container h4 {
            font-size: 20px;
            margin-bottom: 12px;
        }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

    .slide {
        padding: 8px;
    }

        .slide h3 {
            font-size: 11px;
            margin-top: 8px;
        }

    .guarantee-picture-container {
        gap: 30px;
    }

    .guarantee-picture-item img {
        height: 120px;
    }

    .user-icon span {
        display: none;
    }

    .user-dropdown-content {
        min-width: 160px;
        right: -10px;
    }
}

/* Mobile Devices (481px - 575px) */
@media (min-width: 481px) and (max-width: 575px) {
    .slider-container {
        height: auto;
        min-height: 180px;
        padding: 12px 10px;
    }

        .slider-container h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }

        .slider-arrow.left {
            left: 2px;
        }

        .slider-arrow.right {
            right: 2px;
        }

        .slider-arrow i {
            font-size: 18px;
        }

    .slide {
        padding: 6px;
    }

        .slide h3 {
            font-size: 10px;
            margin-top: 6px;
        }

    .guarantee-picture-container {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .guarantee-picture-item img {
        height: 100px;
    }

    .hero-content {
        align-items: flex-end;
        padding-bottom: 80px;
    }

    .cart-badge {
        min-width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    body {
        padding-top: 80px;
    }

    header {
        height: 80px;
        min-height: 80px;
        padding: 10px 3%;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .todayrates-dropdown {
        top: 8px;
        right: 60px;
    }

    .todayrates-dropbtn {
        font-size: 12px;
        padding: 8px;
    }

    .navbar {
        top: 80px;
        height: calc(100vh - 80px);
        padding: 1.5rem;
    }

    .header-icons {
        gap: 0.5rem;
    }

        .header-icons i {
            font-size: 18px;
            padding: 6px;
        }

    .user-icon span {
        display: none;
    }

    .user-dropdown-content {
        min-width: 140px;
        right: -20px;
    }

    .search-box {
        width: 95%;
        padding: 15px;
    }

    .search-input {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .search-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-container {
        height: auto;
        min-height: 160px;
        padding: 10px 5px;
        display: none;
    }

        .slider-container h4 {
            font-size: 16px;
            margin-bottom: 8px;
        }

    .slider-arrow {
        width: 28px;
        height: 28px;
    }

        .slider-arrow.left {
            left: 0;
        }

        .slider-arrow.right {
            right: 0;
        }

        .slider-arrow i {
            font-size: 16px;
        }

    .slide {
        padding: 5px;
    }

        .slide h3 {
            font-size: 9px;
            margin-top: 5px;
            line-height: 1.2;
        }

        .slide img {
            border-radius: 5px;
        }

    .guarantee-picture-container {
        gap: 15px;
        flex-direction: column;
        width: 100%;
    }

    .guarantee-picture-item img {
        height: 80px;
    }

    .product-card-2 {
        width: 100%;
    }

    .hero-slider {
        height: 70vh;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding-left: 30px;
        margin-bottom: 0.8rem;
    }

        .hero-subtitle::before {
            width: 20px;
        }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .hero-slider-control {
        width: 35px;
        height: 35px;
    }

        .hero-slider-control svg {
            width: 16px;
            height: 16px;
        }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-items-container {
        padding: 0.75rem;
        max-width: none;
    }

    .cart-item {
        padding: 0.75rem;
    }

    .cart-item-image {
        width: 50px;
        height: 50px;
    }

    .cart-header {
        padding: 1rem;
    }

    .cart-footer {
        padding: 1rem;
    }

    .cart-badge {
        top: 1px;
        right: 1px;
        min-width: 16px;
        height: 16px;
        font-size: 10px;
    }

    .cart-item-image-wrapper {
        margin-right: 0.75rem;
    }

    .cart-item-name {
        font-size: 0.8rem;
    }

    .cart-item-price {
        font-size: 0.875rem;
    }

    .remove-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .cr-product-banner-contain {
        left: 20px;
    }

        .cr-product-banner-contain h5 {
            font-size: 1.5rem;
        }

        .cr-product-banner-contain p {
            font-size: 1rem;
        }

    .title-box .cr-banner h2 {
        font-size: 1.5rem;
    }

    .cr-pro-tab-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }

        .cr-pro-tab-nav .nav-link {
            padding: 10px 20px;
            font-size: 0.875rem;
        }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .slider-container {
        height: auto;
        min-height: 140px;
        padding: 8px 3px;
    }

        .slider-container h4 {
            font-size: 14px;
            margin-bottom: 6px;
        }

    .slider-arrow {
        width: 25px;
        height: 25px;
    }

        .slider-arrow i {
            font-size: 14px;
        }

    .slide {
        padding: 4px;
    }

        .slide h3 {
            font-size: 8px;
            margin-top: 4px;
        }

    .guarantee-picture-container {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .guarantee-picture-item img {
        height: 70px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }

    .hero-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* === 25. PRINT STYLES === */
@media print {
    header,
    .mobile-menu-toggle,
    .search-container,
    .cart-sidebar,
    .cart-overlay,
    .back-to-top,
    #cr-overlay {
        display: none !important;
    }

    body {
        padding-top: 0;
        background: white;
    }

    .product-card-2 {
        page-break-inside: avoid;
    }
}

/* === 26. ACCESSIBILITY IMPROVEMENTS === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Visible for Keyboard Navigation */
*:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* === 27. SWIPER CAROUSEL OVERRIDES === */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    background: var(--primary-gold);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-gold);
}

/* === 28. OWL CAROUSEL OVERRIDES === */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

    .owl-carousel .owl-nav button.owl-next:hover,
    .owl-carousel .owl-nav button.owl-prev:hover {
        background: var(--black);
    }

.owl-carousel .owl-dots .owl-dot span {
    background: var(--primary-gold);
}

/* === 29. ADDITIONAL UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

/* === 30. ERROR & MESSAGE STYLES === */
.error-label {
    display: block;
    padding: 15px 20px;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: var(--radius-sm);
    color: #c33;
    font-size: 14px;
    margin: 20px 0;
    text-align: center;
}

.success-label {
    display: block;
    padding: 15px 20px;
    background: #efe;
    border: 1px solid #cfc;
    border-radius: var(--radius-sm);
    color: #3c3;
    font-size: 14px;
    margin: 20px 0;
    text-align: center;
}

/* === END OF CSS === */
