/* =====================================================
   KOHINOOR JEWELLERS - LUXURY THEME STYLES
   ===================================================== */

/* CSS Variables */
:root {
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --gold-dark: #B8962F;
    --black: #000000;
    --ivory: #F8F5F0;
    --champagne: #F5E6C8;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    --font-heading: 'Playfair Display', 'Cinzel', serif;
    --font-body: 'Poppins', 'Lato', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(212, 175, 55, 0.2);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--ivory);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-bar-text i {
    color: var(--gold);
}

.top-bar-social {
    display: inline-flex;
    gap: 15px;
}

.top-bar-social a {
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* =====================================================
   MAIN HEADER
   ===================================================== */
.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    display: block;
}

.logo img {
    max-height: 70px;
    width: auto;
}

.main-nav .nav {
    gap: 25px;
}

.main-nav .nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--black);
    padding: 10px 0 !important;
    position: relative;
    transition: var(--transition);
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.main-nav .nav-link:hover {
    color: var(--gold);
}

.main-nav .nav-link:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header-icon {
    font-size: 20px;
    color: var(--black);
    position: relative;
    transition: var(--transition);
}

.header-icon:hover {
    color: var(--gold);
}

.cart-icon .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transition: var(--transition);
    z-index: -1;
}

.btn-gold:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover::before {
    left: 0;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: relative;
    height: var(--desktop-height, 100vh);
    min-height: var(--desktop-height, 100vh);
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Full screen banner on all devices */
.hero-section {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
}

.hero-section .hero-slider,
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
    width: 100%;
}

/* Mobile responsive banner heights */
@media (max-width: 768px) {
    .hero-slide {
        height: var(--mobile-height, 100vh);
        min-height: var(--mobile-height, 100vh);
    }
    .hero-section {
        height: 100vh;
        max-height: 100vh;
    }
    .hero-video {
        height: var(--mobile-height) !important;
        min-height: var(--mobile-height) !important;
    }
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Hero Video Styles */
.hero-video {
    position: relative;
    height: attr(data-desktop-height);
    min-height: attr(data-desktop-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 !important;
    overflow: hidden;
}

.hero-video::before {
    display: none;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Make sure video is visible and has priority */
.hero-video video {
    width: 100% !important;
    height: 100vh !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-video .hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content.text-start {
    text-align: left;
    margin: 0;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-slider .carousel-indicators {
    bottom: 40px;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--white);
    margin: 0 5px;
    opacity: 1;
}

.hero-slider .carousel-indicators button.active {
    background: var(--gold);
    border-color: var(--gold);
}

/* Hero Responsive */
@media (max-width: 991px) {
    .hero-slide {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 14px;
    }
}

/* =====================================================
   GENERAL MOBILE RESPONSIVE FONT SIZES
   ===================================================== */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title .subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .section-title p {
        font-size: 14px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-price .current-price,
    .product-detail-price .price {
        font-size: 16px;
    }

    .product-detail-price .old-price {
        font-size: 14px;
    }

    .btn-gold,
    .btn-outline-gold {
        font-size: 11px;
        padding: 8px 20px;
    }

    .product-buttons .btn {
        font-size: 9.5px;
        padding: 8px 12px;
        flex: none;
        width: auto;
        min-width: 120px;
        white-space: nowrap;
    }

    .product-actions-detail .btn {
        font-size: 11px;
        padding: 10px 15px;
    }

    .main-nav .nav-link {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .top-bar {
        font-size: 12px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-links a,
    .working-hours p,
    .footer-contact p {
        font-size: 13px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-excerpt {
        font-size: 13px;
    }

    .cart-table th {
        font-size: 12px;
    }

    .cart-product-info h4 {
        font-size: 14px;
    }

    .cart-product-info p {
        font-size: 12px;
    }

    .summary-total {
        font-size: 18px;
    }

    .checkout-form h3 {
        font-size: 20px;
    }

    .contact-card h4 {
        font-size: 16px;
    }

    .contact-form h3 {
        font-size: 24px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .blog-detail-content h1 {
        font-size: 28px;
    }

    .blog-detail-body {
        font-size: 15px;
    }
}

/* =====================================================
   SECTION TITLES
   ===================================================== */
.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.section-title .subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 5px;
}

.section-title p {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   CATEGORY SECTION
   ===================================================== */
.category-section {
    padding: 60px 0;
    background: var(--white);
}

.category-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    background: #f0f0f0;
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.category-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: var(--text-color);
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.category-name {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin: 0;
    padding: 20px 10px;
    background: var(--white);
    transition: var(--transition);
}

.category-card:hover .category-name {
    color: var(--gold);
}

.category-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d5a4a 0%, #4a8c6e 100%);
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

/* =====================================================
    EXPERIENCE SECTION
    ===================================================== */
.experience-section {
    padding: 40px 0;
    background: var(--white);
}

.experience-card {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.experience-card:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.experience-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.experience-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more-link {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--gold);
    transition: var(--transition);
}

.learn-more-link:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* =====================================================
    PRODUCT CARD
    ===================================================== */
.product-section {
    padding: 40px 0;
    background: var(--ivory);
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    padding: 20px;
    text-align: center;
}

.product-placeholder i {
    font-size: 60px;
    margin-bottom: 10px;
    color: var(--gold);
}

.product-placeholder span {
    font-size: 14px;
    color: #666;
    max-width: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.product-title a {
    color: inherit;
}

.product-title a:hover {
    color: var(--gold);
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.current-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
}

.old-price {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-buttons {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
}

.product-buttons .btn {
    flex: 1;
    padding: 10px;
    font-size: 12px;
}

/* =====================================================
   CUSTOM JEWELLERY SECTION
   ===================================================== */
.custom-jewellery-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 100%);
    position: relative;
    overflow: hidden;
}

.custom-jewellery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
    background-size: 30px 30px;
}

.custom-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.custom-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.custom-content .subtitle {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.custom-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 16px;
}

/* =====================================================
    BRAND STORY SECTION
    ===================================================== */
.brand-story-section {
    padding: 50px 0;
    background: var(--white);
}

.brand-image {
    position: relative;
}

.brand-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.brand-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

.brand-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.brand-content .subtitle {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.brand-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.brand-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.brand-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.brand-feature i {
    font-size: 24px;
    color: var(--gold);
}

.brand-feature h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.brand-feature p {
    font-size: 14px;
    margin-bottom: 0;
}

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-section {
    padding: 10px 0;
    background: var(--ivory);
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--black);
}

/* Mega Menu Dropdown */
.mega-menu {
    padding: 20px;
    min-width: 650px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mega-menu .dropdown-header {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.mega-menu .dropdown-item {
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mega-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    padding-left: 18px;
}

.nav-item .dropdown-toggle::after {
    margin-left: 5px;
}

.blog-title a:hover {
    color: var(--gold);
}

.blog-excerpt {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-read-more {
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* =====================================================
   INSTAGRAM GALLERY
   ===================================================== */
.instagram-section {
    padding: 20px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 30px;
    color: var(--white);
}

/* =====================================================
   FOOTER
   ===================================================== */
.main-footer {
    background: var(--black);
    color: var(--white);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.working-hours p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.working-hours i {
    color: var(--gold);
    margin-right: 8px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--gold);
}

.newsletter-section {
    margin-top: 25px;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 12px 15px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--gold);
    border: none;
    padding: 12px 20px;
    color: var(--white);
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-height: 50px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.payment-methods i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   SHOP PAGE
   ===================================================== */
.shop-section {
    padding: 60px 0;
    background: var(--ivory);
}

.shop-header {
    margin-bottom: 40px;
}

.shop-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.shop-breadcrumb {
    font-size: 14px;
    color: var(--gray-500);
}

.shop-breadcrumb a {
    color: var(--gold);
}

.filter-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.filter-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-group li {
    margin-bottom: 10px;
}

.filter-group a {
    color: var(--gray-600);
    font-size: 14px;
}

.filter-group a:hover,
.filter-group a.active {
    color: var(--gold);
}

.price-filter {
    margin-top: 20px;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 80px;
    padding: 8px;
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    font-size: 14px;
}

/* =====================================================
   PRODUCT DETAIL PAGE
   ===================================================== */
.product-detail-section {
    padding: 60px 0;
    background: var(--white);
}

.product-gallery {
    margin-bottom: 30px;
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: var(--gray-100);
    height: 500px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.thumbnail-images img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #eee;
    transition: all 0.3s;
    opacity: 0.7;
}

.thumbnail-images img:hover {
    opacity: 1;
    border-color: #D4AF37;
    transform: scale(1.05);
}

.thumbnail-images img.active {
    opacity: 1;
    border-color: #D4AF37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.product-detail-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-detail-sku {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.product-detail-price {
    margin-bottom: 20px;
}

.product-detail-price .price {
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
}

.product-detail-price .old-price {
    font-size: 18px;
    margin-left: 10px;
}

.product-short-description {
    color: var(--gray-600);
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.product-options {
    margin-bottom: 25px;
}

.option-group {
    margin-bottom: 20px;
}

.option-label {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.option-values {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option-value {
    padding: 8px 20px;
    border: 1px solid var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.option-value:hover,
.option-value.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
}

.quantity-input button {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    transition: var(--transition);
}

.quantity-input button:hover {
    background: var(--gold);
    color: var(--white);
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 500;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions-detail .btn {
    flex: 1;
    padding: 15px;
}

.product-meta {
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
}

.product-meta p {
    margin-bottom: 8px;
    font-size: 14px;
}

.product-meta strong {
    color: var(--black);
}

/* Product Tabs */
.product-tabs {
    padding: 60px 0;
    background: var(--ivory);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 15px;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gray-500);
    cursor: pointer;
    padding: 10px 20px;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--gold);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* =====================================================
   CART PAGE
   ===================================================== */
.cart-section {
    padding: 60px 0;
    background: var(--ivory);
}

.cart-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.cart-table table {
    width: 100%;
}

.cart-table th {
    background: var(--black);
    color: var(--white);
    padding: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
}

.cart-table td {
    padding: 20px 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray-200);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-product-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-product-info p {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.cart-quantity button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cart-quantity input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--gray-300);
}

.cart-remove {
    color: var(--gray-500);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    color: #dc3545;
}

.cart-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.cart-summary h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-total {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
}

/* =====================================================
   CHECKOUT PAGE
   ===================================================== */
.checkout-section {
    padding: 60px 0;
    background: var(--ivory);
}

.checkout-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.checkout-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.checkout-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.order-item:last-child {
    border-bottom: none;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section {
    padding: 60px 0;
    background: var(--white);
}

.contact-info {
    margin-bottom: 40px;
}

.contact-card {
    background: var(--ivory);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray-600);
    margin: 0;
}

.contact-form {
    background: var(--ivory);
    padding: 40px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   BLOG PAGE
   ===================================================== */
.blog-detail-section {
    padding: 60px 0;
    background: var(--white);
}

.blog-detail-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.blog-detail-meta {
    color: var(--gray-500);
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.blog-detail-meta span {
    margin-right: 20px;
}

.blog-detail-body {
    font-size: 16px;
    line-height: 1.8;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

/* Product Description Table */
.blog-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
}

.blog-detail-body table th,
.blog-detail-body table td {
    padding: 20px 18px;
    border: 1px solid #e0e0e0;
    text-align: left;
    line-height: 1.6;
}

.blog-detail-body table th {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #D4AF37;
    font-weight: 600;
}

.blog-detail-body table tr:nth-child(even) {
    background: #fafafa;
}

.blog-detail-body table tr:hover {
    background: #f5f5f5;
}

/* Tab content padding */
.tab-content {
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
}

.tab-content h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.tab-content ul {
    padding-left: 20px;
}

.tab-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* =====================================================
   CUSTOMER REVIEWS SECTION
   ===================================================== */
.reviews-section {
    background: #fafafa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid #eee;
}

.review-form-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.review-form-card h5 {
    color: #b8860b;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.review-form-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.review-submit-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.review-form-inline .btn-gold {
    min-width: 200px;
}

.review-form-inline .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    padding: 6px 12px;
}

.review-form-inline .form-control:focus {
    border-color: #b8860b;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.1);
}

.review-form-inline .btn {
    padding: 6px 18px;
    font-size: 13px;
}

.review-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-author {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.review-date {
    font-size: 11px;
    color: #999;
}

.review-stars {
    margin: 4px 0;
}

.review-stars i {
    font-size: 12px;
}

.review-text {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-select input { display: none; }

.rating-select label {
    cursor: pointer;
    font-size: 16px;
    color: #ddd;
    padding: 0 1px;
    transition: color 0.2s;
}

.rating-select label:hover,
.rating-select label:hover ~ label,
.rating-select input:checked ~ label { color: #ffc107; }

.rating-stars i.fill { color: #ffc107; }
.rating-stars i.empty { color: #ddd; }

.no-reviews {
    text-align: center;
    padding: 25px;
    color: #999;
    font-size: 14px;
}

/* Quick View Modal */
.quick-view-image img {
    width: 100%;
    border-radius: 10px;
}

.quick-view-info h4 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.quick-view-price {
    margin: 15px 0;
}

.quick-view-price .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.quick-view-price .old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.quick-view-meta p {
    margin: 5px 0;
    font-size: 14px;
}

.quick-view-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* =====================================================
   AUTH PAGES
   ===================================================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 100%);
    padding: 50px 0;
}

.auth-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    margin: 20px;
}

.auth-header {
    background: var(--gold);
    padding: 30px;
    text-align: center;
}

.auth-header h2 {
    color: var(--white);
    margin: 0;
}

.auth-body {
    padding: 40px;
}

.login-register-form .form-label {
    font-weight: 500;
    font-size: 14px;
}

.login-register-form .form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--gray-300);
}

.login-register-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.login-register-form a {
    color: var(--gold);
}

/* =====================================================
   ADMIN PANEL
   ===================================================== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--black);
    color: var(--white);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-header h3 {
    color: var(--gold);
    font-size: 22px;
    margin: 0;
}

.admin-sidebar-menu {
    padding: 20px 0;
}

.admin-menu-item {
    display: block;
    padding: 12px 25px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-menu-item:hover,
.admin-menu-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
}

.admin-menu-item i {
    margin-right: 10px;
    width: 20px;
}

.admin-main {
    margin-left: 260px;
    flex: 1;
    background: var(--gray-100);
}

.admin-header {
    background: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-content {
    padding: 30px;
}

.admin-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.admin-card-header h3 {
    margin: 0;
    font-size: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.admin-table th {
    background: var(--gray-100);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--gray-600);
}

.admin-table tr:hover {
    background: var(--gray-50);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.stat-card h4 {
    font-size: 28px;
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--gray-500);
    margin: 0;
    font-size: 14px;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-gold {
    color: var(--gold) !important;
}

.bg-gold {
    background: var(--gold) !important;
}

.bg-black {
    background: var(--black) !important;
}

.bg-ivory {
    background: var(--ivory) !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }
.mb-4 { margin-bottom: 5px !important; }
.mb-5 { margin-bottom: 50px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }
.mt-4 { margin-top: 40px !important; }
.mt-5 { margin-top: 50px !important; }

.py-5 { padding-top: 50px !important; padding-bottom: 50px !important; }
.py-6 { padding-top: 60px !important; padding-bottom: 60px !important; }
.py-7 { padding-top: 70px !important; padding-bottom: 70px !important; }
.py-8 { padding-top: 80px !important; padding-bottom: 80px !important; }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-slide {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .admin-sidebar {
        transform: translateX(-100%);
        z-index: 1000;
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .hero-slide {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Section spacing for mobile */
    .category-section,
    .product-section,
    .custom-jewellery-section,
    .brand-story-section,
    .blog-section,
    .instagram-section {
        padding: 30px 0;
    }

    .experience-section {
        padding: 20px 0;
    }
    
    .section-title {
        margin-bottom: 20px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .section-title .subtitle {
        font-size: 14px;
    }
    
    .category-card img {
        width: 100%;
        aspect-ratio: 1/1;
        height: auto;
        object-fit: cover;
    }
    
    .category-card {
        margin-bottom: 15px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .current-price {
        font-size: 14px;
    }
    
    .old-price {
        font-size: 12px;
    }
    
    .product-description {
        font-size: 12px;
    }
    
    .product-image {
        height: 170px;
    }

    .product-card {
        margin-bottom: 15px;
    }

    .product-info {
        padding: 12px;
    }
    
    .brand-features {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .cart-table {
        overflow-x: auto;
    }
    
    .cart-table table {
        min-width: 600px;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Logo Size */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 35px !important;
        width: auto !important;
    }
    
    .header-icons {
        gap: 8px;
    }
    
    .header-icon {
        font-size: 13px;
        padding: 2px;
    }
    
    .cart-icon .cart-badge {
        width: 11px;
        height: 11px;
        font-size: 6px;
        top: -3px;
        right: -3px;
    }
    
    .main-header .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 480px) {
    .header-icons {
        gap: 5px;
    }
    
    .header-icon {
        font-size: 11px;
        padding: 1px;
    }
    
    .cart-icon .cart-badge {
        width: 9px;
        height: 9px;
        font-size: 5px;
        top: -2px;
        right: -2px;
    }
    
    .hamburger-btn {
        font-size: 18px;
        padding: 2px 5px;
    }
    
    .hamburger-btn .menu-text {
        font-size: 10px;
    }
}

/* =====================================================
   MANUFACTURING PROCESS TIMELINE
   ===================================================== */
.timeline-container {
    position: relative;
}

.timeline-steps {
    position: relative;
    z-index: 10;
}

.timeline-step {
    position: relative;
}

/* Desktop Horizontal Timeline Line */
.timeline-line-horizontal {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

/* Mobile/Tablet Vertical Timeline Line */
.timeline-line-vertical {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: translateX(-50%);
    z-index: 1;
}

/* Arrow Container Styles */
.arrow-container {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    z-index: 20;
}

.arrow-container svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    animation: pulse-arrow 2s ease-in-out infinite;
}

.arrow-container-mobile {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    z-index: 20;
}

.arrow-container-mobile svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    animation: pulse-arrow 2s ease-in-out infinite;
}

/* Arrow Animation */
@keyframes pulse-arrow {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.1);
    }
}

.arrow-container-mobile svg {
    animation: pulse-arrow-mobile 2s ease-in-out infinite;
}

@keyframes pulse-arrow-mobile {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Process Card Hover Effects */
.process-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--gold);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25) !important;
}

.process-number {
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.process-card:hover .process-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6) !important;
}

/* Timeline Step Animation on Scroll */
.timeline-step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }
.timeline-step:nth-child(5) { animation-delay: 0.5s; }
.timeline-step:nth-child(6) { animation-delay: 0.6s; }
.timeline-step:nth-child(7) { animation-delay: 0.7s; }
.timeline-step:nth-child(8) { animation-delay: 0.8s; }
.timeline-step:nth-child(9) { animation-delay: 0.9s; }
.timeline-step:nth-child(10) { animation-delay: 1.0s; }
.timeline-step:nth-child(11) { animation-delay: 1.1s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .arrow-container {
        display: none;
    }
    
    .timeline-step {
        margin-bottom: 40px;
    }
    
    .arrow-container-mobile {
        display: block;
    }
}

@media (min-width: 992px) {
    .arrow-container-mobile {
        display: none;
    }
    
    .timeline-step {
        margin-bottom: 0;
    }
}

/* Ensure last step doesn't have arrow */
.timeline-step:last-child .arrow-container,
.timeline-step:last-child .arrow-container-mobile {
    display: none !important;
}

/* Timeline Info Box */
.manufacturing-process-section .alert-info {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%) !important;
    border-left: 4px solid var(--gold) !important;
    border-radius: 10px !important;
    padding: 25px !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.manufacturing-process-section .alert-info i {
    color: var(--gold) !important;
    font-size: 24px !important;
    margin-right: 10px !important;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Timeline Container Padding for Mobile */
@media (max-width: 991px) {
    .timeline-container {
        padding-bottom: 50px;
    }
}

/* Simple Timeline - No Cards */
.timeline-steps {
    position: relative;
}

.timeline-step {
    position: relative;
    margin-bottom: 0;
    padding: 20px 0;
}

/* Process Circle (No Card) */
.process-circle {
    transition: all 0.3s ease;
    border: 4px solid white;
    cursor: pointer;
}

.process-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.7) !important;
}

/* Timeline Text Styling */
.timeline-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.timeline-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.timeline-step:hover h4 {
    color: var(--gold);
}

/* Arrow Animation */
.arrow-container svg,
.arrow-container-mobile svg {
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(5px) scale(1.1);
    }
}

.arrow-container-mobile svg {
    animation: arrow-pulse-mobile 2s ease-in-out infinite;
}

@keyframes arrow-pulse-mobile {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Fade In Animation */
.timeline-step {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }
.timeline-step:nth-child(5) { animation-delay: 0.5s; }
.timeline-step:nth-child(6) { animation-delay: 0.6s; }
.timeline-step:nth-child(7) { animation-delay: 0.7s; }
.timeline-step:nth-child(8) { animation-delay: 0.8s; }
.timeline-step:nth-child(9) { animation-delay: 0.9s; }
.timeline-step:nth-child(10) { animation-delay: 1.0s; }
.timeline-step:nth-child(11) { animation-delay: 1.1s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide arrows on last step */
.timeline-step:last-child .arrow-container,
.timeline-step:last-child .arrow-container-mobile {
    display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .timeline-step {
        padding: 30px 0;
    }
    
    .process-circle {
        width: 70px !important;
        height: 70px !important;
        font-size: 26px !important;
    }
    
    .timeline-step h4 {
        font-size: 1.1rem;
    }
    
    .timeline-step p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .process-circle {
        width: 60px !important;
        height: 60px !important;
        font-size: 22px !important;
    }
    
    .timeline-step h4 {
        font-size: 1rem;
    }
    
    .timeline-step p {
        font-size: 0.8rem;
    }
}

/* =====================================================
   VERTICAL TIMELINE WIDGET (Elementor Style)
   ===================================================== */
.vertical-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.vertical-timeline .timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 40px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.vertical-timeline .timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.vertical-timeline .timeline-item:nth-child(odd) {
    margin-left: 50%;
    padding: 0 0 40px 40px;
    text-align: left;
}

.vertical-timeline .timeline-item:nth-child(even) {
    text-align: right;
}

.vertical-timeline .timeline-dot {
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--gold), 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 10;
    transition: var(--transition);
}

.vertical-timeline .timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
}

.vertical-timeline .timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.vertical-timeline .timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px var(--gold), 0 6px 20px rgba(212, 175, 55, 0.5);
}

.vertical-timeline .timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.vertical-timeline .timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.vertical-timeline .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
}

.vertical-timeline .timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white);
}

.vertical-timeline .timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.vertical-timeline .timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.vertical-timeline .timeline-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.vertical-timeline .timeline-description {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 15px;
}

.vertical-timeline .timeline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 15px;
}

.vertical-timeline .timeline-icon {
    position: absolute;
    top: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    z-index: 20;
}

.vertical-timeline .timeline-item:nth-child(odd) .timeline-icon {
    right: -65px;
}

.vertical-timeline .timeline-item:nth-child(even) .timeline-icon {
    left: -65px;
}

.vertical-timeline .timeline-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.vertical-timeline .timeline-features li {
    padding: 5px 0;
    color: var(--gray-700);
    font-size: 14px;
}

.vertical-timeline .timeline-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    margin-right: 8px;
}

/* Responsive Vertical Timeline */
@media (max-width: 991px) {
    .vertical-timeline::before {
        left: 30px;
        transform: none;
    }
    
    .vertical-timeline .timeline-item {
        width: 100%;
        padding: 0 0 30px 70px;
        text-align: left !important;
    }
    
    .vertical-timeline .timeline-item:nth-child(odd),
    .vertical-timeline .timeline-item:nth-child(even) {
        margin-left: 0;
        padding: 0 0 30px 70px;
        text-align: left !important;
    }
    
    .vertical-timeline .timeline-dot {
        left: 18px !important;
        right: auto !important;
    }
    
    .vertical-timeline .timeline-content::before {
        left: -10px !important;
        right: auto !important;
        border-width: 10px 10px 10px 0 !important;
        border-color: transparent var(--white) transparent transparent !important;
    }
    
    .vertical-timeline .timeline-icon {
        left: -65px !important;
        right: auto !important;
    }
}

@media (max-width: 576px) {
    .vertical-timeline .timeline-content {
        padding: 20px;
    }
    
    .vertical-timeline .timeline-title {
        font-size: 20px;
    }
    
    .vertical-timeline .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        left: -55px !important;
    }
    
    .vertical-timeline::before {
        left: 20px;
    }
    
    .vertical-timeline .timeline-item {
        padding: 0 0 30px 50px;
    }
    
    .vertical-timeline .timeline-dot {
        left: 12px !important;
        width: 20px;
        height: 20px;
    }
}

/* Timeline with alternate sides (desktop only) */
.vertical-timeline.alternate-sides .timeline-item:nth-child(odd) {
    margin-left: 50%;
    padding: 0 40px 40px 0;
    text-align: right;
}

.vertical-timeline.alternate-sides .timeline-item:nth-child(even) {
    margin-left: 0;
    padding: 0 0 40px 40px;
    text-align: left;
}

.vertical-timeline.alternate-sides .timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    left: auto;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white);
}

.vertical-timeline.alternate-sides .timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    right: auto;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.vertical-timeline.alternate-sides .timeline-item:nth-child(odd) .timeline-icon {
    right: -65px;
    left: auto;
}

.vertical-timeline.alternate-sides .timeline-item:nth-child(even) .timeline-icon {
    left: -65px;
    right: auto;
}

/* Timeline with icons on line */
.vertical-timeline.icons-on-line .timeline-dot {
    background: var(--white);
    border: 4px solid var(--gold);
    box-shadow: 0 0 0 4px var(--white), 0 4px 15px rgba(212, 175, 55, 0.3);
}

.vertical-timeline.icons-on-line .timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Timeline with connected cards */
.vertical-timeline.connected-cards .timeline-content {
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.vertical-timeline.connected-cards .timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--gold);
    border-radius: 8px 0 0 8px;
}

.vertical-timeline.connected-cards .timeline-content::before {
    display: none;
}

/* Timeline animation delays */
.vertical-timeline .timeline-item:nth-child(1) { transition-delay: 0.1s; }
.vertical-timeline .timeline-item:nth-child(2) { transition-delay: 0.2s; }
.vertical-timeline .timeline-item:nth-child(3) { transition-delay: 0.3s; }
.vertical-timeline .timeline-item:nth-child(4) { transition-delay: 0.4s; }
.vertical-timeline .timeline-item:nth-child(5) { transition-delay: 0.5s; }
.vertical-timeline .timeline-item:nth-child(6) { transition-delay: 0.6s; }
.vertical-timeline .timeline-item:nth-child(7) { transition-delay: 0.7s; }
.vertical-timeline .timeline-item:nth-child(8) { transition-delay: 0.8s; }
.vertical-timeline .timeline-item:nth-child(9) { transition-delay: 0.9s; }
.vertical-timeline .timeline-item:nth-child(10) { transition-delay: 1.0s; }
.vertical-timeline .timeline-item:nth-child(11) { transition-delay: 1.1s; }
.vertical-timeline .timeline-item:nth-child(12) { transition-delay: 1.2s; }

/* Demo Page Styles */
.timeline-section + .timeline-wrapper {
    margin-top: 0;
}

/* =====================================================
   ENHANCED TIMELINE STYLES (Premium)
   ===================================================== */

/* Animated Progress Line */
.vertical-timeline.progress-line::before {
    height: 0;
    transition: height 0.1s linear;
}

.vertical-timeline.progress-line.animated-line::before {
    animation: fillLine 2s ease-out forwards;
}

@keyframes fillLine {
    from { height: 0; }
    to { height: 100%; }
}

/* Pulse Animation for Dots */
.vertical-timeline .timeline-dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.vertical-timeline .timeline-item.animate .timeline-dot {
    animation: none;
    box-shadow: 0 0 0 4px var(--gold), 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Number Counter Animation */
.timeline-number {
    position: absolute;
    top: -10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vertical-timeline .timeline-item.animate .timeline-number {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Card Hover */
.vertical-timeline .timeline-content {
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.vertical-timeline .timeline-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.7s ease;
}

.vertical-timeline .timeline-item:hover .timeline-content::after {
    left: 100%;
}

/* Icon Animation */
.vertical-timeline .timeline-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vertical-timeline .timeline-item:hover .timeline-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Date Badge Animation */
.vertical-timeline .timeline-date {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vertical-timeline .timeline-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.vertical-timeline .timeline-item:hover .timeline-date::before {
    left: 100%;
}

/* Shimmer Effect on Cards */
.vertical-timeline.shimmer .timeline-content {
    position: relative;
}

.vertical-timeline.shimmer .timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -150%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* 3D Card Effect */
.vertical-timeline.card-3d .timeline-content {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.vertical-timeline.card-3d .timeline-item:hover .timeline-content {
    transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
}

/* Gradient Border Effect */
.vertical-timeline.gradient-border .timeline-content {
    position: relative;
    background: var(--white);
    z-index: 1;
}

.vertical-timeline.gradient-border .timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold-light) 100%);
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-timeline .timeline-item:hover .timeline-content::before {
    opacity: 1;
}

.vertical-timeline.gradient-border .timeline-content {
    padding: 31px; /* Account for border */
}

/* Floating Animation */
.vertical-timeline .timeline-item.animate .timeline-content {
    animation: float 3s ease-in-out infinite;
    animation-delay: inherit;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stop floating on hover */
.vertical-timeline .timeline-item:hover .timeline-content {
    animation: none;
    transform: translateY(-5px) scale(1.02);
}

/* Step Number Badge */
.vertical-timeline .step-badge {
    position: absolute;
    top: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 20;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vertical-timeline .timeline-item.animate .step-badge {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Decorative Elements */
.vertical-timeline .timeline-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-timeline .timeline-item:hover .timeline-decoration {
    opacity: 1;
    animation: pulse-decoration 2s infinite;
}

@keyframes pulse-decoration {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

/* Typography Enhancements */
.vertical-timeline .timeline-title {
    position: relative;
    display: inline-block;
}

.vertical-timeline .timeline-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.vertical-timeline .timeline-item:hover .timeline-title::after {
    width: 100%;
}

/* Feature List Enhancement */
.vertical-timeline .timeline-features li {
    position: relative;
    padding-left: 20px;
    transition: transform 0.2s ease;
}

.vertical-timeline .timeline-features li:hover {
    transform: translateX(5px);
    color: var(--gold-dark);
}

.vertical-timeline .timeline-features li::before {
    position: absolute;
    left: 0;
    transition: transform 0.2s ease;
}

.vertical-timeline .timeline-features li:hover::before {
    transform: scale(1.2);
}

/* Responsive Adjustments for Enhanced Styles */
@media (max-width: 991px) {
    .vertical-timeline .step-badge {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .vertical-timeline .timeline-decoration {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .vertical-timeline .step-badge {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .vertical-timeline .timeline-decoration {
        display: none;
    }
}

/* =====================================================
   FURTHER MOBILE FONT SIZE REDUCTIONS
   ===================================================== */
@media (max-width: 768px) {
    body {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    h1, h2, h3, h4, h5, h6 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }

    h1 { font-size: 1.2rem !important; }
    h2 { font-size: 1.1rem !important; }
    h3 { font-size: 1rem !important; }

    p, span, div, li, td, th, label, input, textarea, select {
        font-size: 12px !important;
    }

    .section-title h2 {
        font-size: 18px !important;
    }

    .section-title .subtitle {
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
    }

    .product-title {
        font-size: 13px !important;
    }

    .current-price,
    .product-detail-price .price {
        font-size: 13px !important;
    }

    .product-detail-price .old-price {
        font-size: 11px !important;
    }

    .btn-gold,
    .btn-outline-gold {
        font-size: 10px !important;
        padding: 6px 14px !important;
    }

    .main-nav .nav-link {
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
    }

    .top-bar {
        font-size: 10px !important;
    }

    .footer-title {
        font-size: 13px !important;
    }

    .footer-links a,
    .working-hours p,
    .footer-contact p {
        font-size: 11px !important;
    }

    .blog-title {
        font-size: 16px !important;
    }

    .blog-excerpt {
        font-size: 11px !important;
    }

    .cart-table th,
    .cart-table td {
        font-size: 11px !important;
    }

    .cart-product-info h4 {
        font-size: 12px !important;
    }

    .cart-product-info p {
        font-size: 10px !important;
    }

    .summary-total {
        font-size: 15px !important;
    }

    .checkout-form h3 {
        font-size: 16px !important;
    }

    .contact-card h4 {
        font-size: 13px !important;
    }

    .contact-form h3 {
        font-size: 18px !important;
    }

    .about-hero h1 {
        font-size: 24px !important;
    }

    .about-hero p {
        font-size: 13px !important;
    }

    .blog-detail-content h1 {
        font-size: 20px !important;
    }

    .blog-detail-body {
        font-size: 12px !important;
    }

    .experience-card h3 {
        font-size: 16px !important;
    }

    .experience-card p {
        font-size: 12px !important;
    }

    .brand-content h2 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }

    .brand-content .subtitle {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }

    .brand-content p {
        font-size: 12px !important;
        margin-bottom: 15px !important;
        line-height: 1.4 !important;
        text-align: justify !important;
    }

    .brand-features {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 20px !important;
    }

    .brand-feature {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 15px !important;
        background: var(--ivory) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        text-align: left !important;
    }

    .brand-feature i {
        font-size: 20px !important;
        color: var(--gold) !important;
        margin-top: 2px !important;
    }

    .brand-feature h4 {
        font-size: 14px !important;
        margin-bottom: 5px !important;
        color: var(--black) !important;
    }

    .brand-feature p {
        font-size: 11px !important;
        margin-bottom: 0 !important;
        color: var(--gray-600) !important;
    }

    .brand-story-section {
        padding: 40px 15px 20px 15px !important;
    }

    .brand-content {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .brand-image {
        margin: 20px 0 5px 0 !important;
        order: 2 !important;
    }

    .brand-content {
        order: 1 !important;
    }

    .custom-content h2 {
        font-size: 32px !important;
    }

    .custom-content .subtitle {
        font-size: 11px !important;
    }

    .custom-content p {
        font-size: 13px !important;
    }

    .shop-title {
        font-size: 24px !important;
    }

    .shop-breadcrumb {
        font-size: 11px !important;
    }

    .filter-title {
        font-size: 14px !important;
    }

    .filter-group h4 {
        font-size: 11px !important;
    }

    .filter-group a {
        font-size: 11px !important;
    }

    .product-detail-info h1 {
        font-size: 20px !important;
    }

    .product-detail-sku {
        font-size: 11px !important;
    }

    .product-short-description {
        font-size: 12px !important;
    }

    .cart-summary h3 {
        font-size: 16px !important;
    }

    .form-group label {
        font-size: 12px !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 12px !important;
    }

    .contact-info h3 {
        font-size: 18px !important;
    }

    .category-name {
        font-size: 14px !important;
        padding: 15px 8px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .timeline-step h4 {
        font-size: 1rem !important;
    }

    .timeline-step p {
        font-size: 0.85rem !important;
    }

    .vertical-timeline .timeline-title {
        font-size: 18px !important;
    }

    .vertical-timeline .timeline-description {
        font-size: 12px !important;
    }

    .vertical-timeline .timeline-features li {
        font-size: 11px !important;
    }
}
