/* Global Styles */
:root {
    --primary: #2c3e50;
    --secondary: #b8a07e;
    --dark: #000000;
    --light: #f9f9f9;
    --accent: #c19a6b;
    --text: #555;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 12px 25px;
    border-radius: 2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #a87c4c;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(193, 154, 107, 0.2);
}

/* Optional: Add a subtle shine effect on hover */
.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-outline:hover::before {
    left: 100%;
}

.section-title {
    text-align: center;
    margin: 80px 0 20px;
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo Styles */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
}

.logo span {
    color: var(--accent);
}

/* Header Styles */
header {
    background-color: var(--dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--accent);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    color: var(--accent);
}

.favourite-link {
    color: #ff6b6b !important;
}

.favourite-link:hover {
    color: #ff5252 !important;
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-top: 20vh;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.slider-controls button {
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--accent);
}

/* Collection Section */
.collection {
    padding: 100px 0;
    background: var(--light);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.product-card {
    background-color: white;
    transition: var(--transition);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 3px;
}

.quick-view:hover {
    background: #a87c4c;
    transform: translateY(-2px);
}

.product-content {
    padding: 25px;
    text-align: center;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.description {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.inquiry-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 3px;
    flex: 1;
}

.inquiry-btn:hover {
    background: #1e2a38;
}

.wishlist {
    background: transparent;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 3px;
}

.wishlist:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.wishlist.active {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    border-top: 3px solid var(--accent);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-content {
    padding-right: 40px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Newsletter */
.newsletter {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid var(--accent);
}

.newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    letter-spacing: 1px;
}

.newsletter button {
    border-radius: 0;
    background-color: var(--accent);
}

.newsletter button:hover {
    background-color: #a87c4c;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 20px;
    border-top: 3px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1px;
    color: var(--accent);
}

.footer-about h3::after,
.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 1px;
    color: #ccc;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about .container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter input {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .inquiry-btn, .wishlist {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
/* ===== IMAGE OPTIMIZATION ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-slider .slide:first-child {
    z-index: 2;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    transition: opacity 0.3s ease;
}

.product-image img[loading] {
    opacity: 0;
}

.product-image img.loaded {
    opacity: 1;
}

/* ===== BETTER MOBILE RESPONSIVENESS ===== */
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem !important;
        padding: 0 20px;
    }
    
    .hero-content p {
        font-size: 0.9rem !important;
        padding: 0 20px;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding-top: 15vh;
    }
    
    .collection-grid {
        gap: 20px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .slider-controls {
        bottom: 15px;
    }
    
    .slider-controls button {
        width: 35px;
        height: 35px;
    }
}


/* ===== LOADING SPINNER - FIXED VERSION ===== */
.product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Hide spinner when image is loaded */
.product-image.loaded::before {
    opacity: 0;
    animation: none;
}

/* Hide spinner when image has error */
.product-image img[src=""]::before,
.product-image img:not([src])::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://source.unsplash.com/random/1920x1080/?textile-production') center center/cover;
    padding: 150px 0 100px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Intro Section */
.about-intro {
    padding: 100px 0;
    background: var(--light);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.about-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

.about-intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Values Section */
.values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light);
    border-radius: 10px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: var(--text);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin: 20px 0 15px;
    color: var(--dark);
}

.process-step p {
    color: var(--text);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-content {
    max-width: 800px;
    margin: 60px auto 0;
}

.benefit-item {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item h3 i {
    color: var(--accent);
}

.benefit-item p {
    color: var(--text);
    line-height: 1.6;
    margin-left: 34px;
}

/* CTA Section */
.cta-about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2a3b4d 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .values-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .value-card,
    .process-step {
        padding: 25px 20px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
}
/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://source.unsplash.com/random/1920x1080/?textile-meeting') center center/cover;
    padding: 150px 0 100px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.contact-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Contact Main Section */
.contact-main {
    padding: 100px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p {
    color: var(--text);
    line-height: 1.5;
}

.business-hours {
    padding: 25px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.business-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.business-hours p {
    color: var(--text);
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent) 0%, #d4af37 100%);
    padding: 15px 30px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d4af37 0%, var(--accent) 100%);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .business-hours {
        padding: 20px 15px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}
/* ===== THANK YOU PAGE STYLES ===== */
.thank-you-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: var(--light);
    margin-top: 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 30px;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.thank-you-content > p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text);
}

.next-steps {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.next-steps h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
    text-align: center;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.next-steps i {
    color: var(--accent);
}

.contact-info-thankyou {
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.contact-info-thankyou p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.contact-info-thankyou strong {
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thank-you-hero {
        padding: 120px 0 80px;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .success-icon {
        font-size: 4rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn,
    .action-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .next-steps {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .thank-you-content h1 {
        font-size: 1.8rem;
    }
    
    .thank-you-content > p {
        font-size: 1.1rem;
    }
    
    .contact-info-thankyou {
        padding: 20px 15px;
    }
    
    .contact-info-thankyou p {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}
/* ===== DROPDOWN MENU STYLES ===== */
nav ul li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    margin: 0;
}

.dropdown a {
    color: var(--dark) !important;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.dropdown a:hover {
    background: var(--accent);
    color: white !important;
}

.dropdown a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Nested dropdown for Parent-Child */
.dropdown-nested {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.dropdown li:hover .dropdown-nested {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
/* ===== COLLECTIONS OVERVIEW STYLES ===== */
.collections-overview {
    padding: 100px 0;
    background: var(--light);
}

.overview-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.overview-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.overview-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.category-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.category-preview.reverse {
    direction: rtl;
}

.category-preview.reverse > * {
    direction: ltr;
}

.preview-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.preview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text);
}

.preview-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.preview-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.preview-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.preview-images img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 968px) {
    .category-preview {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .preview-images {
        grid-template-columns: 1fr;
    }
    
    .preview-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .overview-intro h2 {
        font-size: 2rem;
    }
    
    .preview-content h3 {
        font-size: 1.8rem;
    }
    
    .preview-images img {
        height: 200px;
    }
}
/* ===== SUBCATEGORY PAGE STYLES ===== */
.subcategory-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://source.unsplash.com/random/1920x1080/?mens-fashion') center center/cover;
    padding: 150px 0 100px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.subcategory-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.subcategory-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.subcategory-intro {
    padding: 100px 0;
    background: var(--light);
}

.intro-content {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 50px;
}

.specifications {
    margin-top: 60px;
}

.specifications h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark);
    text-align: center;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.spec-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spec-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.spec-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.spec-item p {
    color: var(--text);
    line-height: 1.6;
}

.products-showcase {
    padding: 100px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.subcategory-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2a3b4d 100%);
    color: white;
    text-align: center;
}
/* ===== IMAGE LOADING OPTIMIZATION ===== */
.product-image {
    position: relative;
    background: linear-gradient(110deg, #f5f5f5 8%, #eeeeee 18%, #f5f5f5 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

.product-image img {
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image img.loaded {
    opacity: 1;
}

/* Remove the shimmer when image loads */
.product-image img.loaded ~ .product-overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Force smaller image sizes for faster loading */
.product-image img {
    max-width: 100%;
    height: auto;
}


@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.product-image img.loaded + ::before {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subcategory-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}