* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #f8f9fa;
}

.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    border-bottom: 3px solid #b78f3d;
    box-shadow: 0 4px 20px rgba(183, 143, 61, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 0;
    gap: 60px;
}

/* Left Navigation */
.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-self: start;
}

.nav-left a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-left a:hover {
    color: #b78f3d;
}

.nav-left a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #b78f3d, #d4af37);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-left a:hover::after {
    width: 100%;
}

/* Logo - Centered using grid */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: center;
}

.logo-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b78f3d, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(183, 143, 61, 0.4);
    border: 3px solid #b78f3d;
    animation: glow 2s ease-in-out infinite alternate;
}

.logo-image img{
    height: 50px;
    border-radius: 50%;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(183, 143, 61, 0.4); }
    to { box-shadow: 0 0 30px rgba(183, 143, 61, 0.6); }
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #b78f3d;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 1.5px;
    line-height: 1.2;
}

/* Right Actions */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: end;
}

.search-container {
    position: relative;
}

.search-bar {
    background: rgba(183, 143, 61, 0.1);
    border: 2px solid #b78f3d;
    border-radius: 25px;
    padding: 12px 45px 12px 20px;
    color: #333333;
    font-size: 14px;
    width: 250px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-bar:focus {
    outline: none;
    background: rgba(183, 143, 61, 0.15);
    box-shadow: 0 0 15px rgba(183, 143, 61, 0.3);
    width: 300px;
}

.search-bar::placeholder {
    color: #666666;
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #b78f3d;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

.action-btn {
    background: linear-gradient(135deg, #b78f3d, #d4af37);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(183, 143, 61, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 143, 61, 0.5);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.wishlist-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: #b78f3d;
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #d4af37;
    transform: scale(1.1);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-nav a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: color 0.3s ease;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav a:hover {
    color: #b78f3d;
}

.mobile-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #b78f3d;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    color: #d4af37;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-left {
        gap: 20px;
    }
    
    .search-bar {
        width: 200px;
    }
    
    .search-bar:focus {
        width: 220px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
    }
    
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }

    .logo-image img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .logo-image img {
        height: 35px;
    }

    .mobile-menu {
        width: 280px;
    }
}



/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(183, 143, 61, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(183, 143, 61, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 120px 120px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-120px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line {
    display: block;
    position: relative;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    opacity: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #b78f3d, #d4af37);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(183, 143, 61, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(183, 143, 61, 0.6);
    background: linear-gradient(135deg, #d4af37, #b78f3d);
}

.btn-primary , .btn-secondary a{
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.8s forwards;
    opacity: 0;
}

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

.image-frame {
    position: relative;
    background: linear-gradient(135deg, rgba(183, 143, 61, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(183, 143, 61, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    padding: 20px;
}

.image-frame img{
    width: 400px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.bag-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    color: rgba(183, 143, 61, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(183, 143, 61, 0.3), rgba(212, 175, 55, 0.3));
    border-radius: 50%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floating-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: -10%;
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: -10%;
    animation: float 8s ease-in-out infinite reverse;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: -15%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Features Section */
.features {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(183, 143, 61, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-why {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-accent {
    display: block;
    color: #666;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.title-main {
    background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-subtitle-why {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 0px;
}

.feature-card {
    background: white;
    padding:30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(183, 143, 61, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(183, 143, 61, 0.2);
    border-color: rgba(183, 143, 61, 0.3);
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 143, 61, 0.05), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #b78f3d, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(183, 143, 61, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(183, 143, 61, 0.5);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .image-frame {
        width: 350px;
        height: 400px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .element-1 {
        width: 70px;
        height: 70px;
    }
    
    .element-2 {
        width: 50px;
        height: 50px;
    }
    
    .element-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .image-frame {
        width: 300px;
        height: 350px;
        padding: 15px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .title-accent {
        font-size: 1.5rem;
    }
    
    .element-1 {
        width: 60px;
        height: 60px;
    }
    
    .element-2 {
        width: 45px;
        height: 45px;
    }
    
    .element-3 {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .image-frame {
        width: 250px;
        height: 300px;
        padding: 10px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .bag-icon {
        top: 15px;
        right: 15px;
        padding: 8px;
    }
    
    .element-1 {
        width: 50px;
        height: 50px;
        right: 1%;
    }
    
    .element-2 {
        width: 40px;
        height: 40px;
        left: 1%;
    }
    
    .element-3 {
        width: 60px;
        height: 60px;
        right: 1%;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .image-frame {
        width: 220px;
        height: 280px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .features-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}



    
            /* Collections Section */
            .collections {
                max-width: 1600px;
                margin: 0 auto;
                padding: 5rem 1.5rem 0 1.5rem;
            }
    
            .section-title {
                text-align: center;
                margin-bottom: 2rem;
                position: relative;
            }
    
            .section-title::before {
                content: '';
                position: absolute;
                top: -20px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
                border-radius: 2px;
            }
    
            .section-title h2 {
                font-size: 3.2rem;
                background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                margin-bottom: 1rem;
                font-weight: bold;
                letter-spacing: 3px;
                text-shadow: 2px 2px 4px rgba(183, 143, 61, 0.1);
                position: relative;
            }
    
            .section-title p {
                font-size: 1.2rem;
                color: #555;
                max-width: 700px;
                margin: 0 auto;
                font-style: italic;
                line-height: 1.8;
            }
    
            .collection-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
                margin-bottom: 5rem;
            }
    
            .collection-card {
                background: white;
                border-radius: 25px;
                overflow: hidden;
                box-shadow: 0 15px 40px rgba(183, 143, 61, 0.15);
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                position: relative;
                border: 3px solid transparent;
                height: 450px;
                cursor: pointer;
            }
    
            .collection-card:hover {
                transform: translateY(-15px) scale(1.03);
                box-shadow: 0 25px 60px rgba(183, 143, 61, 0.25);
                border-color: #b78f3d;
            }
    
            .collection-image {
                width: 100%;
                height: 100%;
                position: relative;
                overflow: hidden;
            }
    
            .collection-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                transition: transform 0.4s ease;
            }
    
            .collection-card:hover .collection-image img {
                transform: scale(1.1);
            }
    
            .collection-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-end;
                z-index: 2;
                text-align: center;
                padding: 2rem;
                height: 55%;
            }
    
            .collection-name {
                color: white;
                font-size: 1.4rem;
                font-weight: bold;
                margin-bottom: 1rem;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
                letter-spacing: 1px;
                text-transform: uppercase;
            }
    
            .collection-subtitle {
                display: none;
            }
    
            .collection-btn {
                background: white;
                color: #b78f3d;
                padding: 0.6rem 1.2rem;
                border: none;
                border-radius: 20px;
                cursor: pointer;
                font-weight: bold;
                transition: all 0.3s ease;
                font-size: 0.8rem;
                text-transform: uppercase;
                letter-spacing: 1px;
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
                position: relative;
                overflow: hidden;
            }
    
            .collection-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(183, 143, 61, 0.2), transparent);
                transition: left 0.5s;
            }
    
            .collection-btn:hover::before {
                left: 100%;
            }
    
            .collection-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
            }
    
            /* Collection hover details */
            .collection-details {
                position: absolute;
                top: 15px;
                left: 15px;
                right: 15px;
                background: rgba(255, 255, 255, 0.95);
                border-radius: 10px;
                padding: 1rem;
                opacity: 0;
                transform: translateY(-20px);
                transition: all 0.3s ease;
                z-index: 3;
                backdrop-filter: blur(10px);
            }
    
            .collection-card:hover .collection-details {
                opacity: 1;
                transform: translateY(0);
            }
    
            .collection-details h4 {
                color: #b78f3d;
                font-size: 1rem;
                margin-bottom: 0.5rem;
                font-weight: bold;
            }
    
            .collection-features {
                list-style: none;
                margin: 0;
                padding: 0;
            }
    
            .collection-features li {
                color: #666;
                font-size: 0.8rem;
                margin-bottom: 0.3rem;
                display: flex;
                align-items: center;
            }
    
            .collection-features li::before {
                content: '✓';
                color: #b78f3d;
                font-weight: bold;
                margin-right: 0.5rem;
            }
    
            /* Products Section */
            .products {
                max-width: 1600px;
                margin: 0 auto;
                padding: 5rem 1.5rem;
            }
    
            .product-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
            }
    
            .product-card {
                background: white;
                border-radius: 20px;
                overflow: hidden;
                transition: all 0.3s ease;
                position: relative;
                box-shadow: 0 10px 30px rgba(183, 143, 61, 0.12);
                border: 2px solid transparent;
                height: 370px;
                cursor: pointer;
            }
    
            .product-card:hover {
                transform: translateY(-8px);
                border-color: #b78f3d;
                box-shadow: 0 20px 45px rgba(183, 143, 61, 0.2);
            }
    
            .product-image {
                width: 100%;
                height: 320px;
                position: relative;
                overflow: hidden;
            }
    
            .product-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                transition: transform 0.3s ease;
            }
    
            .product-card:hover .product-image img {
                transform: scale(1.05);
            }
    
            .product-info {
                padding: 15px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
    
            .product-left {
                flex: 1;
            }
    
            .product-name {
                font-size: 1.1rem;
                font-weight: bold;
                color: #b78f3d;
                margin-bottom: 0.5rem;
                letter-spacing: 0.5px;
            }
    
            .product-price {
                font-size: 1.1rem;
                color: #333;
                font-weight: bold;
            }
    
            .product-right {
                margin-left: 1rem;
            }
    
            .add-to-cart-btn {
                background: linear-gradient(45deg, #b78f3d, #d4af37);
                color: white;
                padding: 0.6rem 1rem;
                border: none;
                border-radius: 20px;
                cursor: pointer;
                font-weight: bold;
                transition: all 0.3s ease;
                text-transform: uppercase;
                letter-spacing: 1px;
                font-size: 0.75rem;
                box-shadow: 0 4px 12px rgba(183, 143, 61, 0.3);
                position: relative;
                overflow: hidden;
            }
    
            .add-to-cart-btn::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.5s;
            }
    
            .add-to-cart-btn:hover::before {
                left: 100%;
            }
    
            .add-to-cart-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(183, 143, 61, 0.4);
            }
    
            /* Premium badge */
            .premium-badge {
                position: absolute;
                top: 15px;
                right: 15px;
                background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
                color: white;
                padding: 0.3rem 0.8rem;
                border-radius: 15px;
                font-size: 0.8rem;
                font-weight: bold;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                z-index: 3;
                box-shadow: 0 3px 10px rgba(183, 143, 61, 0.4);
            }
    
            /* Responsive Design */
            @media (max-width: 1200px) {
                .collection-grid,
                .product-grid {
                    grid-template-columns: repeat(3, 1fr);
                    gap: 1.5rem;
                }
            }
    
            @media (max-width: 768px) {
                .collections, .products {
                    padding: 2rem 1rem;
                }
    
                .section-title h2 {
                    font-size: 2.5rem;
                }
    
                .section-title p {
                    font-size: 1rem;
                }
    
                .collection-grid,
                .product-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 1.2rem;
                }
    
                .collection-card {
                    height: 350px;
                }
    
                .product-card {
                    height: 400px;
                }
    
                .product-image {
                    height: 250px;
                }
    
                .product-info {
                    height: 150px;
                    padding: 1.2rem;
                }
    
                .collection-name {
                    font-size: 1.5rem;
                }
    
                .collection-subtitle {
                    font-size: 1rem;
                }
    
                .collection-btn {
                    padding: 0.8rem 1.5rem;
                    font-size: 0.9rem;
                }
            }
    
            @media (max-width: 480px) {
                .section-title h2 {
                    font-size: 2rem;
                }
    
                .collection-grid,
                .product-grid {
                    grid-template-columns: 1fr;
                    gap: 1rem;
                }
    
                .collection-card {
                    height: 320px;
                }
    
                .product-card {
                    height: 380px;
                }
    
                .product-image {
                    height: 220px;
                }
    
                .product-info {
                    height: 140px;
                    padding: 1rem;
                    flex-direction: column;
                    align-items: flex-start;
                }
    
                .product-right {
                    margin-left: 0;
                    margin-top: 1rem;
                    align-self: stretch;
                }
    
                .add-to-cart-btn {
                    width: 100%;
                    justify-self: center;
                }
            }
    
            /* Animation for loading */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            .collection-card, .product-card {
                animation: fadeInUp 0.6s ease-out;
            }
    
            /* Staggered animation */
            .collection-card:nth-child(1), .product-card:nth-child(1) { animation-delay: 0.1s; }
            .collection-card:nth-child(2), .product-card:nth-child(2) { animation-delay: 0.2s; }
            .collection-card:nth-child(3), .product-card:nth-child(3) { animation-delay: 0.3s; }
            .collection-card:nth-child(4), .product-card:nth-child(4) { animation-delay: 0.4s; }
            .collection-card:nth-child(5), .product-card:nth-child(5) { animation-delay: 0.5s; }
            .collection-card:nth-child(6), .product-card:nth-child(6) { animation-delay: 0.6s; }
            .collection-card:nth-child(7), .product-card:nth-child(7) { animation-delay: 0.7s; }
            .collection-card:nth-child(8), .product-card:nth-child(8) { animation-delay: 0.8s; }
    
            /* Shimmer effect for cards */
            .collection-card::after,
            .product-card::after {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(183, 143, 61, 0.1), transparent);
                transition: left 0.7s;
                z-index: 1;
                pointer-events: none;
            }
    
            .collection-card:hover::after,
            .product-card:hover::after {
                left: 100%;
            }



                   /* Main Services Section */
                   .services-section {
                    background: #ffe9bd;
                }
        
                .services-container {
                    max-width: 1200px;
                    margin: 0 auto;
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
                    gap: 60px;
                    align-items: center;
                }
        
                .service-card {
                    border-radius: 0;
                    padding: 60px 40px;
                    text-align: center;
                    transition: all 0.3s ease;
                    position: relative;
                }
        
                .service-icon {
                    width: 80px;
                    height: 80px;
                    margin: 0 auto 30px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 40px;
                    color: #d4af37;
                }
        
                .service-card h3 {
                    font-size: 24px;
                    margin-bottom: 20px;
                    color: #8B4513;
                    font-weight: 600;
                }
        
                .service-card p {
                    font-size: 14px;
                    color: #666;
                    margin-bottom: 30px;
                    line-height: 1.6;
                }
        
                .service-btn {
                    background: transparent;
                    color: #333;
                    border: 2px solid #333;
                    padding: 12px 30px;
                    border-radius: 0;
                    font-size: 14px;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }
        
                .service-btn:hover {
                    background: #333;
                    color: white;
                }
        
                /* Testimonial Section */
                .testimonial-section {
                    padding: 80px 20px;
                    background: #f8f6f0;
                }
        
                .testimonial-container {
                    max-width: 1200px;
                    margin: 0 auto;
                    text-align: center;
                }
        
                .testimonial-title {
                    font-size: 36px;
                    color: #8B4513;
                    margin-bottom: 20px;
                    font-weight: 700;
                }
        
                .testimonial-subtitle {
                    font-size: 16px;
                    color: #666;
                    margin-bottom: 50px;
                }
        
                .testimonial-carousel {
                    position: relative;
                    overflow: hidden;
                }
        
                .testimonial-track {
                    display: flex;
                    transition: transform 0.5s ease;
                }
        
                .testimonial-cards {
                    display: flex;
                    min-width: 100%;
                    gap: 30px;
                    justify-content: center;
                    flex-wrap: wrap;
                }
        
                .testimonial-card {
                    background: white;
                    border-radius: 15px;
                    padding: 30px 25px;
                    text-align: center;
                    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
                    transition: all 0.3s ease;
                    width: 300px;
                    position: relative;
                }
        
                .testimonial-card:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
                }
        
                .testimonial-card::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 3px;
                    background: linear-gradient(45deg, #b78f3d, #d4af37);
                    border-radius: 15px 15px 0 0;
                }
        
                .testimonial-image {
                    width: 60px;
                    height: 60px;
                    background: linear-gradient(45deg, #b78f3d, #d4af37);
                    border-radius: 50%;
                    margin: 0 auto 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: white;
                    font-size: 10px;
                    font-weight: bold;
                }
        
                .testimonial-text {
                    font-size: 14px;
                    font-style: italic;
                    color: #555;
                    margin-bottom: 20px;
                    line-height: 1.5;
                }
        
                .testimonial-author {
                    font-size: 16px;
                    font-weight: 600;
                    color: #b78f3d;
                    margin-bottom: 5px;
                }
        
                .testimonial-role {
                    font-size: 12px;
                    color: #888;
                }
        
                .testimonial-nav {
                    display: flex;
                    justify-content: center;
                    margin-top: 40px;
                    gap: 10px;
                }
        
                .nav-dot {
                    width: 12px;
                    height: 12px;
                    border-radius: 50%;
                    background: #ccc;
                    cursor: pointer;
                    transition: all 0.3s ease;
                }
        
                .nav-dot.active {
                    background: #b78f3d;
                    transform: scale(1.2);
                }
        
                /* Newsletter Section */
                .newsletter-section {
                    padding: 40px 20px;
                    background: #f8f6f0;
                }
        
                .newsletter-container {
                    max-width: 800px;
                    margin: 0 auto;
                    text-align: center;
                    background: white;
                    padding: 60px 40px;
                    border-radius: 20px;
                    box-shadow: 0 15px 40px rgba(183, 143, 61, 0.1);
                    position: relative;
                }
        
                .newsletter-container::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 4px;
                    background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
                    border-radius: 20px 20px 0 0;
                }
        
                .newsletter-title {
                    font-size: 36px;
                    color: #b78f3d;
                    margin-bottom: 20px;
                    font-weight: 700;
                }
        
                .newsletter-subtitle {
                    font-size: 18px;
                    color: #666;
                    margin-bottom: 40px;
                    line-height: 1.6;
                }
        
                .newsletter-form {
                    display: flex;
                    gap: 15px;
                    max-width: 500px;
                    margin: 0 auto;
                    flex-wrap: wrap;
                }
        
                .newsletter-input {
                    flex: 1;
                    padding: 18px 10px;
                    border: 2px solid #e0e0e0;
                    border-radius: 50px;
                    font-size: 16px;
                    outline: none;
                    transition: all 0.3s ease;
                    min-width: 250px;
                }
        
                .newsletter-input:focus {
                    border-color: #b78f3d;
                    box-shadow: 0 0 0 3px rgba(183, 143, 61, 0.1);
                }
        
                .newsletter-btn {
                    background: linear-gradient(45deg, #b78f3d, #d4af37);
                    color: white;
                    border: none;
                    padding: 18px 35px;
                    border-radius: 50px;
                    font-size: 16px;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    white-space: nowrap;
                }
        
                .newsletter-btn:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 10px 25px rgba(183, 143, 61, 0.3);
                }
        
                /* Footer Section */
                .footer-section {
                    background: #b78f3d;
                    padding: 80px 20px 40px;
                    color: white;
                }
        
                .footer-container {
                    max-width: 1200px;
                    margin: 0 auto;
                }
        
                .footer-content {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 40px;
                    margin-bottom: 40px;
                }
        
                .footer-column h4 {
                    font-size: 20px;
                    margin-bottom: 20px;
                    color: #f4e99b;
                    font-weight: 600;
                }
        
                .footer-column ul {
                    list-style: none;
                }
        
                .footer-column ul li {
                    margin-bottom: 10px;
                }
        
                .footer-column ul li a {
                    color: rgba(255, 255, 255, 0.8);
                    text-decoration: none;
                    transition: color 0.3s ease;
                }
        
                .footer-column ul li a:hover {
                    color: #f4e99b;
                }
        
                .footer-logo {
                    font-size: 22px;
                    font-weight: 700;
                    color: #f4e99b;
                }
        
                .footer-description {
                    color: rgba(255, 255, 255, 0.8);
                    line-height: 1.6;
                    margin-bottom: 20px;
                }
        
                .footer-credit {
                    font-size: 12px;
                    color: rgba(255, 255, 255, 0.6);
                    text-align: right;
                }
        
                .social-links {
                    display: flex;
                    gap: 15px;
                }
        
                .social-link {
                    width: 40px;
                    height: 40px;
                    background: rgba(255, 255, 255, 0.1);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: white;
                    text-decoration: none;
                    transition: all 0.3s ease;
                }
        
                .social-link:hover {
                    background: #f4e99b;
                    color: #b78f3d;
                    transform: translateY(-2px);
                }
        
                .footer-bottom {
                    border-top: 1px solid rgba(255, 255, 255, 0.1);
                    padding-top: 30px;
                    text-align: center;
                    color: rgba(255, 255, 255, 0.7);
                }
        
                /* Responsive Design */
                @media (max-width: 768px) {
                    .services-container {
                        grid-template-columns: 1fr;
                        gap: 0px;
                    }

                    .service-card{
                        padding: 25px 40px;
                    }
                    
                    .testimonial-cards {
                        flex-direction: column;
                        align-items: center;
                    }
                    
                    .testimonial-card {
                        width: 100%;
                        max-width: 400px;
                    }
                    
                    .newsletter-form {
                        flex-direction: column;
                    }
                    
                    .newsletter-input {
                        min-width: 100%;
                    }
                    
                    .testimonial-title {
                        font-size: 32px;
                    }
                    
                    .newsletter-title {
                        font-size: 28px;
                    }
                }

               



  /* Product Page */


 
  
        
  
          /* Header */
          .page-header {
              text-align: center;
              margin-bottom: 3rem;
              padding: 2rem 0;
              background: linear-gradient(135deg, #f8f4e6 0%, #faf7ed 50%, #f5f0e0 100%);
              border-radius: 20px;
              border: 1px solid rgba(183, 143, 61, 0.1);
          }
  
          .page-title {
              font-size: 3.5rem;
              font-weight: 700;
              background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-clip: text;
              margin-bottom: 1rem;
              letter-spacing: 3px;
              text-transform: uppercase;
          }
  
          .page-subtitle {
              color: #8b7355;
              font-size: 1.3rem;
              font-weight: 300;
              font-style: italic;
          }
  
          /* Main Layout */
          .main-layout {
              display: flex;
              gap: 2rem;
              margin-top: 2rem;
          }
  
          /* Sidebar Filters */
          .sidebar {
              width: 280px;
              flex-shrink: 0;
          }
  
          .filters-container {
              background: linear-gradient(135deg, #f8f4e6 0%, #faf7ed 50%, #f5f0e0 100%);
              border-radius: 20px;
              padding: 2rem;
              box-shadow: 0 10px 30px rgba(183, 143, 61, 0.1);
              border: 1px solid rgba(183, 143, 61, 0.2);
              position: sticky;
              top: 2rem;
          }
  
          .filters-title {
              font-size: 1.5rem;
              font-weight: 700;
              color: #b78f3d;
              margin-bottom: 2rem;
              text-align: center;
              text-transform: uppercase;
              letter-spacing: 1px;
          }
  
          .filter-group {
              margin-bottom: 2rem;
              padding-bottom: 1.5rem;
              border-bottom: 1px solid rgba(183, 143, 61, 0.2);
          }
  
          .filter-group:last-child {
              border-bottom: none;
              margin-bottom: 0;
          }
  
          .filter-title {
              font-size: 1.1rem;
              font-weight: 600;
              color: #b78f3d;
              margin-bottom: 1rem;
              text-transform: uppercase;
              letter-spacing: 1px;
          }
  
          .filter-options {
              display: flex;
              flex-wrap: wrap;
              gap: 0.5rem;
          }
  
          .filter-option {
              padding: 8px 16px;
              background: white;
              border: 1px solid rgba(183, 143, 61, 0.3);
              border-radius: 25px;
              cursor: pointer;
              transition: all 0.3s ease;
              font-size: 0.9rem;
              color: #8b7355;
              font-weight: 500;
          }
  
          .filter-option:hover,
          .filter-option.active {
              background: linear-gradient(45deg, #b78f3d, #d4af37);
              color: white;
              transform: scale(1.05);
              box-shadow: 0 4px 15px rgba(183, 143, 61, 0.3);
          }
  
          .price-range {
              width: 100%;
              margin: 1rem 0;
          }
  
          .price-range input {
              width: 100%;
              height: 8px;
              border-radius: 5px;
              background: rgba(183, 143, 61, 0.2);
              outline: none;
              -webkit-appearance: none;
          }
  
          .price-range input::-webkit-slider-thumb {
              -webkit-appearance: none;
              appearance: none;
              width: 20px;
              height: 20px;
              border-radius: 50%;
              background: linear-gradient(45deg, #b78f3d, #d4af37);
              cursor: pointer;
              box-shadow: 0 2px 10px rgba(183, 143, 61, 0.3);
          }
  
          .price-display {
              display: flex;
              justify-content: space-between;
              font-size: 0.9rem;
              color: #8b7355;
              margin-top: 0.5rem;
              font-weight: 500;
          }
  
          /* Main Content */
          .content {
              flex: 1;
          }
  
          /* Categories */
          .categories-section {
            margin-bottom: 2rem;
            padding: 0 15px;
        }

        .category-tabs {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 10px 0;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }

        /* Hide scrollbar for cleaner look */
        .category-tabs::-webkit-scrollbar {
            height: 3px;
        }

        .category-tabs::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .category-tabs::-webkit-scrollbar-thumb {
            background: #b78f3d;
            border-radius: 10px;
        }

        .category-tabs::-webkit-scrollbar-thumb:hover {
            background: #a67c35;
        }

        .category-tab {
            padding: 12px 24px;
            border: 2px solid #b78f3d;
            background: white;
            color: #b78f3d;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            font-size: 0.85rem;
            white-space: nowrap;
            flex-shrink: 0; /* Prevents tabs from shrinking */
            min-width: fit-content;
        }

        .category-tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #b78f3d, #d4af37);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .category-tab:hover::before,
        .category-tab.active::before {
            left: 0;
        }

        .category-tab:hover,
        .category-tab.active {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(183, 143, 61, 0.3);
        }
         
          /* Sort Controls */
          .sort-controls {
              display: flex;
              justify-content: space-between;
              align-items: center;
              margin-bottom: 2rem;
              padding: 1rem;
              background: linear-gradient(135deg, #f8f4e6 0%, #faf7ed 50%, #f5f0e0 100%);
              border-radius: 15px;
              border: 1px solid rgba(183, 143, 61, 0.1);
          }
  
          .results-count {
              color: #8b7355;
              font-weight: 600;
              font-size: 1rem;
          }
  
          .sort-select {
              padding: 12px 24px;
              border: 2px solid #b78f3d;
              border-radius: 25px;
              background: white;
              color: #b78f3d;
              font-weight: 600;
              cursor: pointer;
              outline: none;
              transition: all 0.3s ease;
          }
  
          .sort-select:hover {
              background: #b78f3d;
              color: white;
          }
  
          /* Products Grid */
          .products-grid {
              display: grid;
              grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
              gap: 2rem;
          }
  
          .product-item {
              transition: all 0.3s ease;
          }
  
          .product-item:hover {
              transform: translateY(-5px);
          }
  
          /* Product Image Card */
          .product-image-card {
              background: white;
              border-radius: 20px;
              overflow: hidden;
              box-shadow: 0 10px 30px rgba(183, 143, 61, 0.1);
              border: 1px solid rgba(183, 143, 61, 0.1);
              position: relative;
              margin-bottom: 1rem;
              transition: all 0.3s ease;
          }
  
          .product-image-card:hover {
              box-shadow: 0 20px 50px rgba(183, 143, 61, 0.2);
              transform: scale(1.02);
          }
  
          .product-image {
              width: 100%;
              height: 280px;
              position: relative;
              overflow: hidden;
              background: linear-gradient(135deg, #f8f4e6, #faf7ed);
          }
  
          .product-image img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              transition: transform 0.4s ease;
          }
  
          .product-image-card:hover .product-image img {
              transform: scale(1.1);
          }
  
          .product-badge {
              position: absolute;
              top: 15px;
              right: 15px;
              background: linear-gradient(45deg, #b78f3d, #d4af37);
              color: white;
              padding: 6px 14px;
              border-radius: 20px;
              font-size: 0.8rem;
              font-weight: 600;
              box-shadow: 0 4px 15px rgba(183, 143, 61, 0.3);
              text-transform: uppercase;
              letter-spacing: 1px;
          }
  
          .product-actions {
              position: absolute;
              bottom: 15px;
              left: 15px;
              right: 15px;
              display: flex;
              gap: 1rem;
              opacity: 0;
              transform: translateY(20px);
              transition: all 0.3s ease;
          }
  
          .product-image-card:hover .product-actions {
              opacity: 1;
              transform: translateY(0);
          }
  
          .btn-primary {
              flex: 1;
              padding: 12px 20px;
              background: linear-gradient(45deg, #b78f3d, #d4af37);
              color: white;
              border: none;
              border-radius: 25px;
              cursor: pointer;
              font-weight: 600;
              transition: all 0.3s ease;
              text-transform: uppercase;
              letter-spacing: 1px;
              font-size: 0.9rem;
          }
  
          .btn-primary:hover {
              transform: translateY(-2px);
              box-shadow: 0 8px 25px rgba(183, 143, 61, 0.4);
          }
  
          .btn-secondary {
              padding: 12px 15px;
              background: white;
              color: #b78f3d;
              border: 2px solid #b78f3d;
              border-radius: 25px;
              cursor: pointer;
              transition: all 0.3s ease;
              min-width: 50px;
              font-size: 1.2rem;
          }
  
          .btn-secondary:hover {
              background: #b78f3d;
              color: white;
              transform: scale(1.1);
          }
  
          /* Product Details (Outside Card) */
          .product-details {
              padding: 0.5rem 0;
          }
  
          .product-category {
              font-size: 0.85rem;
              color: #b78f3d;
              font-weight: 600;
              text-transform: uppercase;
              letter-spacing: 1px;
              margin-bottom: 0.5rem;
          }
  
          .product-name {
              font-size: 1.2rem;
              font-weight: 700;
              color: #333;
              margin-bottom: 0.5rem;
              line-height: 1.3;
          }
  
          .product-price {
              display: flex;
              align-items: center;
              gap: 1rem;
              margin-bottom: 0.5rem;
          }
  
          .current-price {
              font-size: 1.4rem;
              font-weight: 700;
              background: linear-gradient(45deg, #b78f3d, #d4af37);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-clip: text;
          }
  
          .original-price {
              font-size: 1rem;
              color: #999;
              text-decoration: line-through;
              font-weight: 500;
          }
  
          .product-rating {
              display: flex;
              align-items: center;
              gap: 0.5rem;
          }
  
          .stars {
              color: #f4e99b;
              font-size: 1rem;
          }
  
          .rating-text {
              font-size: 0.85rem;
              color: #8b7355;
              font-weight: 500;
          }
  
          /* Loading */
          .loading-placeholder {
              display: none;
              text-align: center;
              padding: 3rem;
              color: #8b7355;
          }
  
          .spinner {
              width: 40px;
              height: 40px;
              border: 4px solid rgba(183, 143, 61, 0.3);
              border-top: 4px solid #b78f3d;
              border-radius: 50%;
              animation: spin 1s linear infinite;
              margin: 0 auto 1rem;
          }
  
          @keyframes spin {
              0% { transform: rotate(0deg); }
              100% { transform: rotate(360deg); }
          }
  
          /* Responsive Design */
          @media (max-width: 1024px) {
              .main-layout {
                  flex-direction: column;
              }
              
              .sidebar {
                  width: 100%;
              }
              
              .filters-container {
                  position: static;
              }
              
              .page-title {
                  font-size: 2.5rem;
              }
          }
  
          @media (max-width: 768px) {
              .container {
                  padding: 1rem;
              }
              
              .category-tab {
                  padding: 12px 20px;
                  font-size: 0.8rem;
              }
              
              .products-grid {
                  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                  gap: 1.5rem;
              }
              
              .page-title {
                  font-size: 2rem;
                  letter-spacing: 2px;
              }
              
              .filters-container {
                  padding: 1.5rem;
              }
  
              .sort-controls {
                  flex-direction: column;
                  gap: 1rem;
                  text-align: center;
              }
          }
  
          @media (max-width: 480px) {
              .products-grid {
                  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                  gap: 1rem;
              }
              
              .product-image {
                  height: 240px;
              }
              
              .page-title {
                  font-size: 1.8rem;
                  letter-spacing: 1px;
              }
              
              .category-tab {
                  padding: 10px 16px;
                  font-size: 0.75rem;
              }
  
              .main-layout {
                  gap: 1rem;
              }

              .btn-primary{
                font-size: 0.8rem;
              }
              
              .btn-secondary{
                font-size: 0.8rem;
              }
          }
  


          .mobile-controls {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            padding: 8px;
            z-index: 1000;
            border: 1px solid rgba(183, 143, 61, 0.2);
        }
        
        .mobile-btn {
            background: linear-gradient(45deg, #b78f3d, #d4af37);
            color: white;
            border: none;
            padding: 12px 20px;
            margin: 0 4px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 90px;
            justify-content: center;
        }
        
        .mobile-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(183, 143, 61, 0.4);
        }
        
        .mobile-btn-icon {
            font-size: 1.1rem;
        }
        
        .mobile-btn-text {
            letter-spacing: 1px;
        }
        
        /* Mobile Overlay */
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
        }
        
        .mobile-overlay.active {
            display: flex;
            align-items: flex-end;
        }
        
        .mobile-overlay-content {
            background: white;
            width: 100%;
            max-height: 80vh;
            border-radius: 20px 20px 0 0;
            overflow: hidden;
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }
        
        .mobile-overlay-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(183, 143, 61, 0.2);
            background: linear-gradient(135deg, #f8f4e6 0%, #faf7ed 50%, #f5f0e0 100%);
        }
        
        .mobile-overlay-header h3 {
            color: #b78f3d;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #b78f3d;
            cursor: pointer;
            padding: 5px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .close-btn:hover {
            background: rgba(183, 143, 61, 0.1);
        }
        
        .mobile-filter-content {
            padding: 20px;
            max-height: 60vh;
            overflow-y: auto;
        }
        
        .mobile-sort-content {
            padding: 20px;
        }
        
        .sort-option {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(183, 143, 61, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #333;
        }
        
        .sort-option:hover {
            background: linear-gradient(135deg, #f8f4e6 0%, #faf7ed 50%, #f5f0e0 100%);
            color: #b78f3d;
        }
        
        .sort-option:last-child {
            border-bottom: none;
        }
        
        .mobile-overlay-footer {
            padding: 20px;
            background: linear-gradient(135deg, #f8f4e6 0%, #faf7ed 50%, #f5f0e0 100%);
            border-top: 1px solid rgba(183, 143, 61, 0.2);
        }
        
        .apply-filters-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #b78f3d, #d4af37);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .apply-filters-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(183, 143, 61, 0.4);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-controls {
                display: flex;
            }
            
            .sidebar {
                display: none;
            }
            
            .sort-controls {
                display: none;
            }
        }
       



/* Contact Page */

.contact-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
}

.contact-hero {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(183, 143, 61, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(183, 143, 61, 0.15);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(183, 143, 61, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(183, 143, 61, 0.15);
}

.info-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.info-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #b78f3d, #d4af37);
    border-radius: 2px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.social-section {
    text-align: center;
}

.social-section p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #b78f3d;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    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.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(183, 143, 61, 0.12);
    border-left-color: #d4af37;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(45deg, #b78f3d, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: rotate(10deg) scale(1.1);
}

.info-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    color: #6c757d;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.form-control:focus {
    outline: none;
    border-color: #b78f3d;
    box-shadow: 0 0 0 3px rgba(183, 143, 61, 0.1);
    background: white;
}

.form-control:hover {
    border-color: #d4af37;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
    background-size: 200% 200%;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(183, 143, 61, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(183, 143, 61, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b78f3d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: linear-gradient(45deg, #b78f3d, #d4af37);
    color: white;
    transform: translateY(-3px) rotate(5deg);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-card, .info-section {
        padding: 1.5rem;
    }
    
    .contact-container {
        padding: 1rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-form-card, .info-section {
        padding: 1.2rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet specific */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-content {
        gap: 2.5rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


/* About Page */

.about-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #efefef 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Pattern */
.about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(183,143,61,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,175,55,0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(183,143,61,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.about-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(45deg, #b78f3d, #d4af37, #f4e99b);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.about-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
    font-weight: 400;
}

/* Main Content */
.about-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.story-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.story-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.story-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 300;
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #b78f3d, #d4af37);
    border-radius: 2px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-visual {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.2s;
}

.story-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

.visual-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(183,143,61,0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.visual-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(183,143,61,0.2);
}

.visual-card h3 {
    color: #2c2c2c;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.visual-card p {
    color: #666;
    line-height: 1.6;
}

/* Values Cards */
.values-section {
    margin-bottom: 100px;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #2c2c2c;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #b78f3d, #d4af37);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(183,143,61,0.1);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(183,143,61,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.value-card:hover::before {
    animation: shine 0.6s ease;
}

.value-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(183,143,61,0.15);
    border-color: rgba(183,143,61,0.2);
    background: rgba(255,255,255,0.95);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #b78f3d, #d4af37);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(183,143,61,0.3);
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 30px;
    margin-bottom: 80px;
    border: 1px solid rgba(183,143,61,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.stat-item.animate {
    opacity: 1;
    transform: scale(1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #b78f3d, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 30px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(183,143,61,0.1);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #b78f3d, #d4af37);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(183,143,61,0.3);
    position: relative;
    overflow: hidden;
}

.cta-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.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(183,143,61,0.4);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-100%, -100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(100%, 100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 15px 40px;
    }

    .about-content {
        padding: 60px 15px;
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .story-text,
    .story-visual {
        transform: none;
        opacity: 1;
    }

    .visual-card {
        transform: none;
        padding: 30px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

aside#secondary {
    visibility: hidden;
    position: fixed;
}


/* WooCommerce product grid styling */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Product item container */
.products-grid .product {
    border: 1px solid #e0d9c9;
    padding: 15px;
    background: #fff8f0;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.products-grid .product:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

/* Product images */
.products-grid .product img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Product titles */
.products-grid .product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    color: #b5882d;  /* Goldish color to match theme */
    text-decoration: none;
    line-height: 1.3;
}

/* Remove default blue links */
.products-grid .product a {
    color: inherit;
    text-decoration: none;
}

/* Product price */
.products-grid .product .price {
    color: #8a6b2c;
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

/* Sale badge */
.products-grid .product .onsale {
    background-color: #b5882d;
    color: #fff;
    padding: 3px 8px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    border-radius: 5px;
}

/* Ensure buttons are consistent */
.products-grid .product .button {
    background-color: #b5882d;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    margin-top: 10px;
    display: inline-block;
    transition: background 0.3s;
}

.products-grid .product .button:hover {
    background-color: #8a6b2c;
}

.products-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px; /* grid items ke beech gap */
    box-sizing: border-box;
    padding: 0 15px; /* optional padding */
}

