       /* Global Styles */
        :root {
    --main-font: 'Cormorant Garamond', serif;
    --secondary-font: 'Lato', sans-serif;
            --primary: #c19b76;
            --secondary: #000000;
            --light: #ffffff;
            --gray: #f8f8f8;
            --dark-gray: #333333;
            --text-color: #444444;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: var(--light);
            color: var(--text-color);
            font-family: "Roboto", sans-serif;
            font-weight: 400;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--secondary);
            line-height: 1.3;
        }
        
        h1 {
            font-size: 3.5rem;
            letter-spacing: -0.5px;
        }
        
        h2 {
            font-size: 2.75rem;
            margin-bottom: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        h3 {
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        section {
            padding: 100px 0;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 30px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--secondary);
            z-index: -2;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: var(--secondary);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: -1;
        }
        
        .btn:hover {
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(193, 155, 118, 0.3);
        }
        
        .btn:hover:before {
            width: 100%;
        }
        
        .btn-outline {
            background-color: #fff;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:before {
            background-color: var(--primary);
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 0;
            background-color: var(--light);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        header.scrolled {
            padding: 15px 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 40px;
        }
        
        nav ul li a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .cart-icon {
            position: relative;
            font-size: 1.2rem;
        }
        
        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: var(--primary);
            color: var(--light);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.7rem;
            font-weight: 700;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--secondary);
            cursor: pointer;
            z-index: 1001;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/aod.jpg') no-repeat center center/cover;
            color: var(--light);
            text-align: center;
            padding-top: 80px;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            margin-bottom: 25px;
            animation: fadeInDown 1s ease;
            color: var(--light);
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .hero p {
            margin-bottom: 40px;
            font-size: 1.2rem;
            animation: fadeInUp 1s ease;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeIn 1.5s ease;
        }
        
        .hero:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
            z-index: 0;
        }
        
        /* Featured Products */
        .featured-products {
            background-color: var(--gray);
            overflow: hidden;
        }
        
        .featured-products:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: var(--light);
            clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
        }
        .footer-logo {
            width: 60px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .product-card {
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            text-decoration: none;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 350px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary);
            color: var(--light);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 1;
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-info h3 {
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .product-description {
            font-size: 0.95rem;
            color: var(--text-color);
            margin-bottom: 20px;
            min-height: 60px;
        }
        
        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.3rem;
        }
        
        .sizes {
            display: flex;
            gap: 10px;
        }
        
        .size-btn {
            padding: 8px 15px;
            background-color: var(--gray);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .size-btn.active {
            background-color: var(--primary);
            color: var(--light);
        }
        
        .add-to-cart {
            width: 100%;
            padding: 15px;
            background-color: var(--secondary);
            color: var(--light);
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            position: relative;
            overflow: hidden;
        }
        
        .add-to-cart: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: 0.5s;
        }
        
        .add-to-cart:hover:before {
            left: 100%;
        }
        
        .add-to-cart:hover {
            background-color: var(--primary);
        }
        
        /* Philosophy Section */
        .philosophy {
            position: relative;
            background-color: var(--light);
        }
        
        .philosophy-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }
        
        .philosophy-content h2 {
            margin-bottom: 30px;
        }
        
        .philosophy-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .philosophy-image {
            margin-top: 60px;
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .philosophy-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--gray);
        }
        
        .testimonials:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: var(--light);
            clip-path: polygon(0 0, 100% 100%, 0 100%);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .testimonial-card {
            background-color: var(--light);
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card:before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(193, 155, 118, 0.1);
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--primary);
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .author-info p {
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        /* Newsletter */
        .newsletter {
            background-color: #f5f5f5;
            color: #000;
            text-align: center;
            padding: 100px 0;
            position: relative;
        }
        
        
        .newsletter-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            height: 60px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0 25px;
            border: none;
            border-radius: 30px 0 0 30px;
            outline: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
        }
        
        .newsletter-form button {
            padding: 0 40px;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 0 30px 30px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .newsletter-form button:hover {
            background-color: var(--secondary);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @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);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 992px) {
            section {
                padding: 80px 0;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero {
                min-height: 700px;
            }
            
            .product-img {
                height: 300px;
            }
            
            .philosophy-image {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--light);
                transition: all 0.4s ease;
                z-index: 1000;
                padding: 100px 40px;
                box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
        
            nav ul li {
                margin: 15px 0;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
            }
            
            .newsletter-form {
                flex-direction: column;
                height: auto;
            }
            
            .newsletter-form input {
                border-radius: 30px;
                margin-bottom: 10px;
                height: 50px;
            }
            
            .newsletter-form button {
                border-radius: 30px;
                height: 50px;
            }
            
            .featured-products:before,
            .testimonials:before {
                height: 50px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            .hero {
                min-height: 600px;
            }
            
            .product-img {
                height: 250px;
            }
            
            .philosophy-image {
                height: 300px;
                margin-top: 40px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .header_logo {
            width: 60px;
            margin-top: 10px;
        }
        .footer_logo {
            width: 130px;
        }


        /* Auth Section Styles */
.auth-section {
    padding: 80px 0;
    background-color: var(--gray);
}

.auth-container {
    display: flex;
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.auth-visual {
    flex: 1;
    position: relative;
    background-color: var(--primary);
    min-height: 500px;
}

.auth-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.auth-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--light);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.auth-overlay h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--light);
}

.auth-overlay p {
    opacity: 0.9;
}

.auth-form-container {
    flex: 1;
    padding: 60px;
    margin-top: 200px;
    max-width: 500px;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-logo {
    width: 60px;
    margin-bottom: 20px;
}

.auth-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-color);
    opacity: 0.8;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--secondary);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.input-with-icon input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-with-icon input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(193, 155, 118, 0.2);
}

.toggle-password {
    position: absolute;
    right: 15px;
    left: auto;
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    accent-color: var(--primary);
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-auth {
    padding: 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--secondary);
}

.btn-social {
    background-color: transparent;
    border: 1px solid #ddd !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-social:hover {
    border-color: var(--primary) !important;
    color: var(--primary);
}

/* Auth Section Styles */
.auth-section {
    padding: 80px 0;
    background-color: var(--gray);
}

.auth-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 60px;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-color);
    opacity: 0.8;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--secondary);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.input-with-icon input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-with-icon input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(193, 155, 118, 0.2);
}

.toggle-password {
    position: absolute;
    right: 15px;
    left: auto;
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    accent-color: var(--primary);
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-auth {
    padding: 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--secondary);
}

.btn-social {
    background-color: transparent;
    border: 1px solid #ddd !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-social:hover {
    border-color: var(--primary) !important;
    color: var(--primary);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
    opacity: 0.7;
    margin: 10px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--text-color);
}

.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 576px) {
    .auth-form-container {
        padding: 30px 20px;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
}



/* Cart Section Styles */
.cart-section {
    padding: 80px 0;
    background-color: var(--gray);
}

.cart-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--secondary);
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.cart-items {
    background-color: var(--light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cart-items-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary);
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.item-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.item-price, .item-total {
    font-weight: 500;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.remove-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    color: var(--primary);
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}

.empty-cart i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.cart-summary {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    margin: 25px 0 15px;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.continue-shopping {
    display: block;
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.continue-shopping:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-items-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
        position: relative;
    }
    
    .item-remove {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .item-product {
        margin-bottom: 15px;
    }
    
    .item-price, .item-quantity, .item-total {
        display: flex;
        justify-content: space-between;
    }
    
    .item-price::before {
        content: 'Price: ';
        font-weight: 600;
    }
    
    .item-total::before {
        content: 'Total: ';
        font-weight: 600;
    }
}



        .pdp-section {
            padding: 150px 0 100px;
        }
        
        .pdp-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .pdp-gallery {
            position: relative;
        }
        
        .main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        .thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .thumbnail {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .thumbnail:hover, .thumbnail.active {
            border-color: var(--primary);
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--primary);
            color: var(--light);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 1;
        }
        
        .product-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .product-price {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 25px;
        }
        
        .size-selector {
            margin-bottom: 30px;
        }
        
        .size-options {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .size-option {
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .size-option:hover, .size-option.active {
            border-color: var(--primary);
            background-color: rgba(193, 155, 118, 0.1);
        }
        
        .size-option.active {
            background-color: var(--primary);
            color: var(--light);
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            background-color: var(--gray);
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quantity-input {
            width: 60px;
            height: 40px;
            text-align: center;
            border: 1px solid #ddd;
            margin: 0 10px;
            font-size: 1rem;
            font-weight: 600;
        }
        
        .add-to-cart-btn {
            width: 100%;
            padding: 18px;
            margin-bottom: 20px;
        }
        
        .wishlist-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 15px;
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .wishlist-btn:hover {
            background-color: var(--secondary);
            color: var(--light);
        }
        
        .product-details {
            margin-top: 40px;
        }
        
        .details-tabs {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin-bottom: 20px;
        }
        
        .tab-btn {
            padding: 15px 25px;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 600;
            position: relative;
            color: var(--text-color);
        }
        
        .tab-btn.active {
            color: var(--primary);
        }
        
        .tab-btn.active:after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .description-content p {
            margin-bottom: 15px;
        }
        
        .details-list {
            list-style: none;
        }
        
        .details-list li {
            margin-bottom: 10px;
            display: flex;
        }
        
        .details-list li strong {
            min-width: 120px;
            display: inline-block;
        }
        
        /* Responsive Styles for PDP */
        @media (max-width: 992px) {
            .pdp-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .main-image {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .pdp-section {
                padding: 120px 0 80px;
            }
            
            .product-title {
                font-size: 2rem;
            }
            
            .thumbnail-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--light);
                transition: all 0.4s ease;
                z-index: 1000;
                padding: 100px 40px;
                box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
        
            nav ul li {
                margin: 15px 0;
            }
        }
        
        @media (max-width: 576px) {
            .pdp-section {
                padding: 100px 0 60px;
            }
            
            .main-image {
                height: 300px;
            }
            
            .thumbnail {
                height: 70px;
            }
            
            .details-tabs {
                flex-direction: column;
            }
            
            .tab-btn {
                padding: 12px 15px;
                text-align: left;
            }
            
            .tab-btn.active:after {
                width: 3px;
                height: 100%;
                bottom: auto;
                top: 0;
            }
        }
        /* ====================== */
        /* END PDP SPECIFIC STYLES */
        /* ====================== */




        /* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-info p {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.contact-detail p {
    color: var(--text-color);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--gray);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--light);
}

.contact-form {
    background-color: var(--gray);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(193, 155, 118, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.map-container {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-method {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* Product Badge Styles */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.bestseller-badge {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

/* Optional pulse animation for attention */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Positioning container */
.pdp-gallery {
    position: relative;
    /* Other existing gallery styles */
}

/* Quantity Selector Styles */
.quantity-selector {
    margin: 25px 0;
}

.qty-controls {
    display: flex;
    align-items: center;
    margin-left: 10px;
    gap: 15px;
    margin-top: 10px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.stock-status {
    font-size: 14px;
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
}

.in-stock {
    color: #4CAF50;
    background-color: #f0f9f0;
}

.out-of-stock {
    color: #F44336;
    background-color: #fef0f0;
}


/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.contact-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.contact-card, .contact-form-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    padding: 40px;
}

.card-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.card-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.card-header p {
    color: #666;
}

.contact-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #f8f3ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b78d65;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.detail-content p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.map-link, .whatsapp-link {
    color: #b78d65;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.map-link:hover, .whatsapp-link:hover {
    color: #9a7552;
}

.whatsapp-link i {
    font-size: 1.2rem;
}

.social-section {
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
}

.social-section h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.instagram { background: #E1306C; }
.social-icon.facebook { background: #3b5998; }
.social-icon.twitter { background: #1DA1F2; }
.social-icon.pinterest { background: #E60023; }

/* Form Styles */
.elegant-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.elegant-form .form-group {
    margin-bottom: 20px;
}

.elegant-form label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.elegant-form input,
.elegant-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border 0.3s;
}

.elegant-form input:focus,
.elegant-form textarea:focus {
    border-color: #b78d65;
    outline: none;
}

.elegant-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #b78d65;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #9a7552;
}

/* Map Section */
.map-section {
    padding: 80px 0 40px;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.map-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 250px;
}

.overlay-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.overlay-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f3ee;
    color: #b78d65;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.directions-btn:hover {
    background: #b78d65;
    color: white;
}

/* Hours Section */
.hours-section {
    padding: 60px 0;
}

.hours-card {
    background: white;
    border-radius: 8px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.hours-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 300px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.holiday-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    color: #666;
}

.holiday-notice i {
    color: #b78d65;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .elegant-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin-top: 20px;
    }
}
.product-card:hover {
    text-decoration: none;
}