/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette */
    --primary-pink: #FCE4EC;
    /* Blush Pink */
    --primary-beige: #F5F5DC;
    /* Beige */
    --accent-gold: #D4AF37;
    /* Gold */
    --accent-gold-light: #F4D03F;
    --text-dark: #2C2C2C;
    /* Dark Grey for text */
    --text-light: #666666;
    /* Light Grey for secondary text */
    --white: #FFFFFF;
    --off-white: #075847;
    --black: #000000;
    --hover-gold: #B89628;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-accent: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(to bottom, var(--off-white) 0%, var(--white) 50%, var(--off-white) 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

h5 {
    font-size: 1.2rem;
    font-weight: 600;
}

h6 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    text-rendering: optimizeLegibility;
    font-weight: 400;
    letter-spacing: 0.01em;
}

a {
    text-decoration: none;
    color: var(--accent-gold);
    transition: var(--transition-fast);
    font-weight: 500;
}

a:hover {
    color: var(--hover-gold);
    text-decoration: underline;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--accent-gold);
    color: var(--white);
    font-family: var(--font-accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--hover-gold);
    transition: all .3s;
    z-index: -1;
}

.btn:hover::after {
    width: 100%;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

/* Header */
#header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-pink);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--spacing-md);
    height: 80px;
}

.logo h1 {
    font-size: 2rem;
    color: var(--black);
    letter-spacing: -1px;
}

.logo span {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: var(--primary-pink);
    color: var(--text-dark);
}

.dropdown-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 8px 8px;
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icons a {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.nav-icons a:hover {
    color: var(--accent-gold);
}

.login-register {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.login-register:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding-left: var(--spacing-xl);
}

.hero-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--accent-gold);
}

/* Categories Section */
.categories {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h3 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-family: var(--font-accent);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.category-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 40%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    transition: background 0.3s;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
}

.category-overlay h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.category-overlay a {
    color: var(--accent-gold);
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.category-card:hover h4 {
    transform: translateY(0);
}

.category-card:hover .category-overlay a {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Shop Page Styles */
.page-header {
    background-color: var(--primary-pink);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.shop-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.filters {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    align-self: start;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-options label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: color 0.3s;
}

.filter-options label:hover {
    color: var(--accent-gold);
}

.filter-options input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--accent-gold);
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
}

/* Product Page Styles */
.product-container {
    padding: 60px 0;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    display: grid;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
    cursor: zoom-in;
    position: relative;
    background-color: #f9f9f9;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.5);
    transform-origin: center center;
}

.thumbnail-list {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border: 2px solid var(--accent-gold);
}

.product-details h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.product-meta {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-price {
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.option-group {
    margin-bottom: 25px;
}

.option-title {
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.size-btn:hover,
.size-btn.active {
    background-color: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid transparent;
    /* Selection border */
    cursor: pointer;
    transition: transform 0.2s;
}

.color-btn.active {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px var(--text-dark);
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.qty-btn {
    width: 40px;
    height: 50px;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    height: 50px;
}

/* Footer Styles */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive Product */
@media (max-width: 768px) {

    .shop-container,
    .product-wrapper {
        grid-template-columns: 1fr;
    }

    .filters {
        display: none;
    }


    .main-image {
        height: 400px;
    }
}

/* --- New Additions for Dynamic Features --- */

/* Cart Count Badge */
.nav-icons {
    position: relative;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: none;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    z-index: 10000;
    font-family: var(--font-body);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInToast 0.3s ease, fadeOutToast 0.3s ease 2.7s forwards;
}

.toast::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-gold);
}

@keyframes slideInToast {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOutToast {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* User Profile Dropdown (Simple) */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 10px;
    border-radius: 4px;
    min-width: 150px;
    display: none;
    z-index: 1001;
}

.user-menu:hover .user-dropdown {
    display: block;
}

.user-dropdown li {
    padding: 5px 0;
}

.user-dropdown li a {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: block;
    padding: 5px 10px;
}

.user-dropdown li a:hover {
    display: block;
    padding: 5px 10px;
}

.user-dropdown li a:hover {
    background-color: var(--off-white);
    color: var(--accent-gold);
}

/* --- Order Timeline Styles --- */
.timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 20px 0;
    padding: 0 10px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #eee;
    z-index: 1;
    transform: translateY(-50%);
}

.timeline-step {
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 10px;
    text-align: center;
}

.step-dot {
    width: 15px;
    height: 15px;
    background: #ddd;
    border-radius: 50%;
    display: block;
    margin: 0 auto 5px;
    transition: 0.3s;
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.timeline-step.active .step-dot {
    background: var(--accent-gold);
    box-shadow: 0 0 0 4px #fff8e1;
}

.timeline-step.active .step-label {
    color: var(--accent-gold);
    font-weight: 700;
}

.timeline-step.completed .step-dot {
    background: var(--accent-gold);
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-gold-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h3 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-weight: 600;
}

.contact-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.feature-item div strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.feature-item div p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), var(--primary-pink));
    border-radius: 22px;
    z-index: -1;
}

.contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-btn {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-text h3 {
        font-size: 2.2rem;
    }

    .contact-features {
        gap: var(--spacing-sm);
    }

    .feature-item {
        padding: var(--spacing-sm);
    }

    .contact-form {
        padding: var(--spacing-lg);
    }
}

/* Alternating Content Section */
.alternating-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--off-white) 0%, var(--white) 50%, var(--off-white) 100%);
}

.alternating-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 0 var(--spacing-md);
}

.alternating-row:last-child {
    margin-bottom: 0;
}

.alternating-row.reverse {
    direction: rtl;
}

.alternating-row.reverse .alternating-content {
    direction: ltr;
}

.alternating-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.alternating-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.alternating-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.alternating-image:hover img {
    transform: scale(1.1);
}

.alternating-content {
    padding: 0 20px;
}

.alternating-content h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-weight: 600;
}

.alternating-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.service-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    color: var(--text-dark);
}

.service-list li i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    width: 20px;
}

.fabric-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.fabric-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-gold-light) 100%);
    border-radius: 12px;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.fabric-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.fabric-item i {
    font-size: 1.5rem;
}

.occasion-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.occasion-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.occasion-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.occasion-card h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
    font-weight: 600;
}

.occasion-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.alternating-content .btn {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--white);
    padding: 14px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.alternating-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive Design for Alternating Section */
@media (max-width: 1024px) {
    .alternating-row {
        gap: 50px;
        margin-bottom: 80px;
    }

    .alternating-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .alternating-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .alternating-row.reverse {
        direction: ltr;
    }

    .alternating-image {
        order: -1;
    }

    .alternating-image img {
        height: 300px;
    }

    .alternating-content {
        padding: 0;
        text-align: center;
    }

    .alternating-content h3 {
        font-size: 1.8rem;
    }

    .fabric-features {
        grid-template-columns: 1fr;
    }

    .occasion-types {
        grid-template-columns: 1fr;
    }

    .service-list li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .alternating-section {
        padding: 60px 0;
    }

    .alternating-row {
        margin-bottom: 40px;
    }

    .alternating-image img {
        height: 250px;
    }

    .alternating-content h3 {
        font-size: 1.6rem;
    }

    .fabric-item,
    .occasion-card {
        padding: var(--spacing-sm);
    }
}

/* Art Features */
.art-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.art-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(252, 228, 236, 0.8), rgba(244, 208, 63, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.art-item:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(252, 228, 236, 0.9), rgba(244, 208, 63, 0.2));
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.art-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.art-item div strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.art-item div p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Custom Services */
.custom-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Accessory Grid */
.accessory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.accessory-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-gold-light) 100%);
    border-radius: 12px;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.accessory-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.accessory-item i {
    font-size: 1.5rem;
    width: 30px;
}

/* Delivery Features */
.delivery-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.delivery-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.delivery-step:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Enhanced Responsive Design */

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .alternating-row {
        gap: 100px;
    }

    .contact-container {
        max-width: 1300px;
    }
}

/* Desktop (1025px to 1439px) */
@media (min-width: 1025px) and (max-width: 1439px) {
    .alternating-row {
        gap: 60px;
    }

    .alternating-content h3 {
        font-size: 2.2rem;
    }

    .contact-content {
        gap: 70px;
    }
}

/* Tablet (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .alternating-row {
        gap: 50px;
        margin-bottom: 80px;
    }

    .alternating-content h3 {
        font-size: 2rem;
    }

    .custom-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .accessory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        gap: 50px;
    }

    .contact-text h3 {
        font-size: 2.4rem;
    }

    .hero-content h2 {
        font-size: 3.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        gap: 30px;
    }
}

/* Mobile Landscape (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .alternating-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .alternating-row.reverse {
        direction: ltr;
    }

    .alternating-image {
        order: -1;
    }

    .alternating-image img {
        height: 300px;
    }

    .alternating-content {
        padding: 0;
        text-align: center;
    }

    .alternating-content h3 {
        font-size: 1.8rem;
    }

    .fabric-features {
        grid-template-columns: 1fr;
    }

    .occasion-types {
        grid-template-columns: 1fr;
    }

    .art-features {
        align-items: center;
    }

    .custom-services {
        grid-template-columns: 1fr;
    }

    .accessory-grid {
        grid-template-columns: 1fr;
    }

    .delivery-step {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .service-list li {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-text h3 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: var(--spacing-lg);
    }

    .hero {
        height: 70vh;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: var(--spacing-sm);
    }

    .dropdown-menu li a {
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }
}

/* Mobile Portrait (320px to 480px) */
@media (max-width: 480px) {
    .alternating-section {
        padding: 60px 0;
    }

    .alternating-row {
        margin-bottom: 40px;
    }

    .alternating-image img {
        height: 250px;
    }

    .alternating-content h3 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .alternating-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .fabric-item,
    .occasion-card,
    .art-item,
    .service-card,
    .accessory-item {
        padding: var(--spacing-sm);
    }

    .delivery-step {
        padding: var(--spacing-sm);
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-text h3 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .contact-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero {
        height: 70vh;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .slider-dots {
        bottom: 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .category-card {
        padding: var(--spacing-md);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .product-card {
        padding: var(--spacing-sm);
    }

    .navbar {
        padding: 10px var(--spacing-md);
        height: 70px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-icons {
        gap: 15px;
    }

    .login-register {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .section-header h3 {
        font-size: 2rem;
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .feature-box {
        padding: var(--spacing-lg);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .footer-col {
        text-align: center;
    }
}

/* Extra Small Mobile (up to 320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .alternating-content h3 {
        font-size: 1.4rem;
    }

    .alternating-content p {
        font-size: 0.95rem;
    }

    .contact-text h3 {
        font-size: 1.6rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .category-card h4,
    .product-card h5 {
        font-size: 1rem;
    }
}