:root {
    --primary-color: #282056;
    --accent-color: #ef3093;
    --light-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:  'Inter', sans-serif;
    overflow-x: hidden;
}


/* Promo Bar - Text Only Transition */
.promo-bar {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.promo-text-container {
    position: relative;
    height: 30px;
}

.promo-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.promo-text.active {
    opacity: 1;
    transform: translateY(0);
}


/* Header Customizations */
.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    width: 140px;
    height: auto;
    transition: transform 0.3s ease;
}

/* Navigation Links */
.nav-link-custom {
    color: var(--primary-color) !important;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 1rem !important; /* Increased padding for better hover target */
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--accent-color) !important;
}

/* Desktop Dropdown Hover Logic */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu-custom {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-item.dropdown:hover .fa-chevron-down {
        transform: rotate(180deg);
    }
    /* The Bridge: Prevents menu closing when moving mouse from link to menu */
    .dropdown-menu-custom::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        height: 20px;
        background: transparent;
    }
}

.nav-link-custom .fa-chevron-down {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu-custom {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 220px;
    margin-top: 0 !important; /* Remove margin to keep it close */
    display: block; /* Controlled by opacity/visibility for transitions */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-item-custom {
    color: var(--primary-color);
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item-custom:hover {
    background: rgba(239, 48, 147, 0.1);
    color: var(--accent-color);
    padding-left: 25px;
}

/* Header Icons */
.header-icons-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.profile-icon-wrapper { background: white; border: 2px solid var(--primary-color); }
.icon-wrapper i { color: white; font-size: 16px; }
.profile-icon-wrapper i { color: var(--primary-color); }
.profile-icon-wrapper:hover i { color: var(--accent-color); }

.cart-badge {
    position: absolute; top: -5px; right: -5px;
    background: #ff4757; color: white;
    border-radius: 50%; width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; border: 2px solid white;
}

/* Requirement 2: Logo - Nav - Icons Layout for > 1200px */
@media (min-width: 1200px) {
    .navbar-collapse {
        order: 2; /* Nav links in middle */
        flex-grow: 1;
    }
    .navbar-brand {
        order: 1; /* Logo on left */
        margin-right: 2rem;
    }
    .header-icons-group {
        order: 3; /* Icons on right */
    }
}

/* Mobile Specific Layout */
@media (max-width: 991px) {
    .navbar-brand img { width: 110px; }
    .navbar-toggler { border: none; padding-right: 0; }
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); z-index: 9998;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 320px; max-width: 85%;
    height: 100%; background: white; z-index: 9999;
    transition: right 0.4s ease; box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-menu-header {
    display: flex; justify-content: space-between;
    align-items: center; padding: 20px;
    background: #fff; color: var(--primary-color);
}
.mobile-menu-close { background: transparent; border: none; color: white; font-size: 24px; }
.mobile-nav-link {
    display: block; padding: 15px; color: var(--primary-color);
    text-decoration: none; font-weight: 500;
}
.mobile-dropdown-menu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding-left: 15px; }
.mobile-dropdown.active .mobile-dropdown-menu { max-height: 500px; }



/* Enhanced Profile Icon */
.profile-dropdown {
    display: flex;
    align-items: center;
}

.profile-icon-wrapper {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.profile-icon-circle {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-icon-circle:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(40, 32, 86, 0.3);
}

.profile-icon-circle i {
    font-size: 18px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.profile-icon-circle:hover i {
    color: white;
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-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 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary-custom {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: white;
}

.btn-main {
    background: var(--accent-color);
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--primary-color);
    color: white;
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

/* Product Cards */
.product-card {
    width: 100%;
    max-width: 320px;
    background: white;
    border-radius: 12px;
    height: 100% !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 15px;
}

.product-header {
    margin-bottom: 14px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-price {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: -10px;
}

.product-specs {
    margin-bottom: 10px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: #666;
    font-weight: 500;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.btn-add-cart {
    flex: 1;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 13px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 48, 147, 0.3);
}

.btn-add-cart.added {
    background: #28a745;
}

.btn-wishlist {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-wishlist:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

.btn-wishlist.active {
    background: var(--accent-color);
    color: white;
}

/* Demo container */
.demo-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .product-card {
        max-width: 100%;
    }
}

/* Why Choose Us */
.why-choose-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-text {
    color: #666;
}

/* Shop by Texture */
.texture-tile {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.texture-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.texture-tile:hover img {
    transform: scale(1.1);
}

.texture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(40, 32, 86, 0.9), transparent);
    padding: 30px 20px;
    color: white;
}

.texture-name {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Testimonials */
.testimonials-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.stars i {
    margin: 0 2px;
}

/* Blog Preview */
.blog-card {
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    margin-bottom: 20px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons a {
    color: white;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.newsletter-input {
    padding: 12px 20px;
    border: none;
}

.btn-subscribe {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    margin-top: 10px;
}

.btn-subscribe:hover {
    background: #fff;
    transform: translateY(5px);
    color: var(--primary-color);
}



@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}


/* Get Inspired Section */
.get-inspired-section {
    padding: 80px 0;
    background: white;
}

.inspiration-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.inspiration-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.inspiration-card:hover img {
    transform: scale(1.15);
}

.inspiration-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(40, 32, 86, 0.95), rgba(239, 48, 147, 0.7));
    padding: 30px 20px;
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.inspiration-card:hover .inspiration-overlay {
    padding: 40px 20px;
}

.inspiration-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.inspiration-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
}

.inspiration-cta {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.inspiration-cta strong {
    color: var(--accent-color);
}

.inspirationSwiper {
    padding: 20px 0 60px;
}

.inspirationSwiper .swiper-button-next,
.inspirationSwiper .swiper-button-prev {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.158);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.inspirationSwiper .swiper-button-next:after,
.inspirationSwiper .swiper-button-prev:after {
    font-size: 20px;
}

.inspirationSwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.inspirationSwiper .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
    color: var(--accent-color);
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    top: auto;
    bottom: 5px;
    justify-content: center;
}

.productSwiper .swiper-button-next {
    right: calc(50% - 60px);
}

.productSwiper .swiper-button-prev {
    left: calc(50% - 60px);
}


.productSwiper .swiper-button-next:after,
.productSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bolder;
}


.cart-count {
    font-size: 12px;
    color: var(--primary-color);
}

.testimonialsSwiper {
    min-height: 350px;
    padding: 20px 0 60px;
}

.productSwiper {
    min-height: 450px;
    padding: 20px 0 60px;
}


/* Sell Your Hair Section */
.sell-hair-section {
    padding: 80px 0;
    background: white;
}

.step-card {
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin: 20px 0;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.1rem;
}


/* Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background: linear-gradient(135deg, rgba(40, 32, 86, 0.95) 0%, rgba(239, 48, 147, 0.85) 100%),
        url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.story-content .highlight {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.value-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Image Text Section */
.image-text-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.image-text-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.image-text-row:last-child {
    margin-bottom: 0;
}

.image-text-row.reverse {
    flex-direction: row-reverse;
}

.image-col {
    flex: 1;
}

.image-col img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.text-col {
    flex: 1;
}

.text-col h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.text-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-custom {
    background: white;
    color: var(--primary-color);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .story-content h2,
    .section-title {
        font-size: 2rem;
    }

    .image-text-row {
        flex-direction: column;
        gap: 30px;
    }

    .image-text-row.reverse {
        flex-direction: column;
    }

    .image-col img {
        height: 350px;
    }

    .story-section,
    .mission-section,
    .values-section,
    .image-text-section {
        padding: 60px 0;
    }
}




/* Cart Modal */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
}

.cart-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    max-width: 90%;
    height: 100%;
    background: var(--primary-color);
    color: white;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 10001;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #ffffff;
}

.cart-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.cart-modal-close {
    background: transparent;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cart-modal-close:hover {
    transform: rotate(90deg);
}

.cart-modal-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #fff;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-specs {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-top: 10px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #666;
    background: transparent;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: white;
    color: #000;
    border-color: white;
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.remove-item-btn:hover {
    color: var(--accent-color);
}

.cart-modal-footer {
    padding: 25px 30px;
    border-top: 1px solid #fff;
    background: var(--primary-color);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cart-subtotal-label {
    font-weight: 500;
    color: #999;
}

.cart-subtotal-amount {
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-btn {
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.cart-btn-primary {
    background: white;
    color: #000;
}

.cart-btn-primary:hover {
    background: var(--accent-color);
    color: white;
}

.cart-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cart-btn-secondary:hover {
    background: white;
    color: #000;
}

@media (max-width: 768px) {
    .cart-modal {
        width: 100%;
        max-width: 100%;
    }
}

/* CEO Section */
.ceo-section {
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ceo-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.ceo-image-col {
    flex: 0 0 45%;
    position: relative;
}

.ceo-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(40, 32, 86, 0.3);
}

.ceo-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

.ceo-image-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

.ceo-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.ceo-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ceo-badge i {
    font-size: 1.2rem;
}

.ceo-content-col {
    flex: 1;
}

.ceo-subtitle {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ceo-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.ceo-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ceo-name {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
}

.ceo-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.ceo-quote {
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    padding: 25px 30px;
    margin: 35px 0;
    border-radius: 8px;
    position: relative;
}

.ceo-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.3;
}

.ceo-quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.7;
    font-weight: 500;
}

.ceo-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-text {
    flex: 1;
}

.highlight-text strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

.highlight-text span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .ceo-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .ceo-image-col {
        flex: 0 0 100%;
    }

    .ceo-image {
        height: 500px;
    }

    .ceo-title {
        font-size: 2.2rem;
    }

    .ceo-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ceo-section {
        padding: 60px 0;
    }

    .ceo-image {
        height: 400px;
    }

    .ceo-title {
        font-size: 1.8rem;
    }

    .ceo-name {
        font-size: 1.3rem;
    }

    .ceo-bio {
        font-size: 1rem;
    }

    .ceo-quote-text {
        font-size: 1.05rem;
    }

    .ceo-highlights {
        grid-template-columns: 1fr;
    }

    .ceo-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.related-post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-post-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* ===== SPECIFICATION MODAL STYLING ===== */

/* Modal Overlay */
.spec-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    /* Above header */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spec-modal-overlay.active {
    opacity: 1;
}

/* Modal Container */
.spec-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.spec-modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Modal Header */
.spec-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #dee2e6;
}

.spec-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.spec-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.spec-modal-close:hover {
    background: #f8f9fa;
    color: var(--accent-color);
}

/* Modal Body */
.spec-modal-body {
    padding: 24px;
}

/* Product Header in Modal */
.product-modal-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.modal-product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.product-modal-header h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--primary-color);
}

.modal-product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    transition: transform 0.2s ease;
}

/* Specification Groups */
.modal-spec-group {
    margin-bottom: 24px;
}

.modal-spec-group.error .modal-spec-label {
    color: #dc3545;
}

.modal-spec-group.error .modal-spec-options {
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 8px;
}

.modal-spec-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Specification Options */
.modal-spec-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.modal-spec-option {
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
    color: #495057;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.modal-spec-option:hover:not([disabled]) {
    border-color: var(--accent-color);
    background: rgba(239, 48, 147, 0.05);
    transform: translateY(-2px);
}

.modal-spec-option.selected {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: white;
}

.modal-spec-option[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
}

.modal-spec-option .price-modifier {
    font-size: 12px;
    font-weight: 600;
}

.modal-spec-option .out-of-stock,
.modal-spec-option .low-stock {
    display: block;
    font-size: 11px;
    margin-top: 4px;
}

.modal-spec-option .out-of-stock {
    color: #dc3545;
}

.modal-spec-option .low-stock {
    color: #ff6f00;
}

/* Modal Quantity */
.modal-quantity {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.modal-quantity label {
    font-weight: 600;
    color: var(--primary-color);
}

/* Modal Footer */
.spec-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #dee2e6;
    background: #f8f9fa;
}

.btn-modal-cancel,
.btn-modal-confirm {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-cancel {
    background: white;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.btn-modal-cancel:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.btn-modal-confirm {
    background: var(--accent-color);
    color: white;
}

.btn-modal-confirm:hover:not(.disabled) {
    background: #d42b7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 48, 147, 0.3);
}

.btn-modal-confirm.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== PRODUCT CARD SPEC ROW STYLING ===== */

/* Product Specs Container */
.product-specs {
    margin: 12px 0;
    padding: 0;
}

/* Individual Spec Row */
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 13px;
}

.spec-row:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

/* Spec Label */
.spec-label {
    font-weight: 600;
    color: #6c757d;
    flex-shrink: 0;
    margin-right: 12px;
}

/* Spec Value */
.spec-value {
    color: var(--primary-color);
    font-weight: 500;
    text-align: right;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .spec-modal {
        width: 95%;
        max-height: 95vh;
    }

    .modal-spec-options {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }

    .modal-spec-option {
        padding: 10px 12px;
        font-size: 13px;
    }

    .product-modal-header {
        flex-direction: column;
    }

    .modal-product-image {
        width: 100%;
        height: 200px;
    }

    .spec-modal-footer {
        flex-direction: column-reverse;
    }

    .btn-modal-cancel,
    .btn-modal-confirm {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-spec-options {
        grid-template-columns: 1fr;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .spec-value {
        text-align: left;
    }
}

/* ===== LOADING STATES ===== */

.loading-products {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    font-size: 16px;
}

.loading-products::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    font-size: 16px;
}

/* ===== QUANTITY CONTROLS (IN MODAL) ===== */

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 4px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #f8f9fa;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--accent-color);
    color: white;
}

.quantity-value {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
}

/* ===== ANIMATIONS ===== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spec-modal-body>* {
    animation: fadeIn 0.3s ease forwards;
}

.spec-modal-body>*:nth-child(1) {
    animation-delay: 0.05s;
}

.spec-modal-body>*:nth-child(2) {
    animation-delay: 0.1s;
}

.spec-modal-body>*:nth-child(3) {
    animation-delay: 0.15s;
}

.spec-modal-body>*:nth-child(4) {
    animation-delay: 0.2s;
}

.spec-modal-body>*:nth-child(5) {
    animation-delay: 0.25s;
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(239, 48, 147, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(239, 48, 147, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 48, 147, 0.3);
}

/* Honeypot field - Visually hidden */
.website-url-field {
    display: none;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    background: #eee;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* About Page Styles */
.about-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(40, 32, 86, 0.7), rgba(40, 32, 86, 0.7)), url('https://images.unsplash.com/photo-1594968944510-4497e28328aa?w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.row-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
}

.story-img,
.mentor-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.story-img:hover {
    transform: translateY(-5px);
}

.sub-heading {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

/* Mission Section */
.mission-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.mission-box {
    background: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 5px solid var(--accent-color);
}

.mission-icon {
    font-size: 3rem;
    color: rgba(239, 48, 147, 0.2);
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.5;
    font-family: 'Poppins', serif;
}

/* Offerings Section */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offering-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.offering-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.offering-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offering-card:hover img {
    transform: scale(1.1);
}

.offering-content {
    padding: 30px;
}

.offering-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.offering-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mentor Section */
.mentor-image-col {
    position: relative;
}

.mentor-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    color: var(--accent-color);
}

.mentor-quote {
    margin-top: 30px;
    padding: 20px 30px;
    background: rgba(40, 32, 86, 0.05);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    border-radius: 0 10px 10px 0;
}

.mentor-quote footer {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-color);
    font-style: normal;
}

@media (max-width: 991px) {
    .row-flex {
        flex-direction: column;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .mentor-badge {
        right: 10px;
        bottom: 10px;
    }

    .col-image {
        width: 100%;
    }
}


/* Standard Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}


/* Remove obsolete contact-header and about-hero if desired, or keep as fallbacks */
/* .about-hero { display: none; } */
/* .contact-header { display: none; } */


/* Custom Order Page Styles */
.custom-order-wrapper .header-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Form Container */
.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 50px;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 35px 40px;
    text-align: center;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1rem;
    opacity: 0.95;
}

.form-body {
    padding: 45px 40px;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

/* Form Groups */
.custom-order-wrapper .form-group {
    margin-bottom: 25px;
}

.custom-order-wrapper .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.custom-order-wrapper label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.required {
    color: var(--accent-color);
    margin-left: 4px;
}

.custom-order-wrapper input[type='text'],
.custom-order-wrapper input[type='email'],
.custom-order-wrapper input[type='tel'],
.custom-order-wrapper input[type='number'],
.custom-order-wrapper select,
.custom-order-wrapper textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

.custom-order-wrapper input:focus,
.custom-order-wrapper select:focus,
.custom-order-wrapper textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(239, 48, 147, 0.1);
}

.custom-order-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.custom-order-wrapper select {
    cursor: pointer;
    background: white;
    appearance: none;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'12\' height=\'12\' viewBox=\'0 0 12 12\'%3E%3Cpath fill=\'%23282056\' d=\'M6 9L1 4h10z\'/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Checkbox/Radio Groups */
.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 12px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 20px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.checkbox-item:hover,
.radio-item:hover {
    background: #e8e9eb;
}

.checkbox-item input:checked+label,
.radio-item input:checked+label {
    color: var(--accent-color);
    font-weight: 700;
}

.custom-order-wrapper input[type='checkbox'],
.custom-order-wrapper input[type='radio'] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.checkbox-item label,
.radio-item label {
    cursor: pointer;
    margin: 0;
    font-weight: 500;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.color-swatch {
    position: relative;
}

.color-swatch input[type='radio'] {
    position: absolute;
    opacity: 0;
}

.color-swatch label {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #ddd;
    transition: all 0.3s;
    position: relative;
}

.color-swatch input:checked+label {
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(239, 48, 147, 0.4);
}

.color-swatch input:checked+label::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* File Upload */
.file-upload {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    background: var(--light-bg);
}

.file-upload:hover {
    border-color: var(--accent-color);
    background: white;
}

.file-upload input[type='file'] {
    display: none;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.file-upload-icon {
    font-size: 3rem;
    color: var(--accent-color);
}

.file-upload-text {
    color: #666;
    font-size: 0.95rem;
}

.file-upload-text strong {
    color: var(--accent-color);
}

.uploaded-files {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.uploaded-file {
    background: var(--light-bg);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.uploaded-file i {
    color: var(--accent-color);
}

.remove-file {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.3s;
}

.remove-file:hover {
    color: var(--accent-color);
}

.help-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.help-text i {
    color: var(--accent-color);
}

/* Submit Section */
.submit-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
}

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(239, 48, 147, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 48, 147, 0.4);
}

.submit-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Success Message */
.success-message {
    display: none;
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-message i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(40, 32, 86, 0.05), rgba(239, 48, 147, 0.05));
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 6px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box li i {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .form-body {
        padding: 30px 25px;
    }

    .custom-order-wrapper .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group,
    .radio-group {
        flex-direction: column;
    }

    .checkbox-item,
    .radio-item {
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Footer Social Icons - Global Fix */
.social-icons {
    display: flex;
    gap: 15px;
}

/* .social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none !important;
    line-height: 1 !important;
    transition: all 0.3s ease;
    border: none;
} */

.social-icons a:hover {
    background: var(--accent-color) !important;
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 18px !important;
    line-height: 1 !important;
    color: white !important;
    margin: 0 !important;
    display: inline-block;
}


/* Beauty Cards Section */
.beauty-section {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #f9f7ff 0%, #fff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Poppins', serif;
    font-size: 2.8rem;
    color: #281d55;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ef3093, #281d55);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Beauty Cards Grid */
.beauty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

/* Beauty Card Styles */
.beauty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.beauty-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.beauty-card:hover .beauty-image {
    transform: scale(1.05);
}

.beauty-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.beauty-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.beauty-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ef3093, #ff6bc9);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(239, 48, 147, 0.3);
    z-index: 2;
}

.beauty-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.beauty-card:hover .beauty-overlay {
    opacity: 1;
}

.beauty-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.beauty-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888;
}

.beauty-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.beauty-meta-item i {
    color: #ef3093;
}

.beauty-title {
    font-family: 'Poppins', serif;
    font-size: 1.6rem;
    color: #281d55;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.beauty-title a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.beauty-title a:hover {
    color: #ef3093;
}

.beauty-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.beauty-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.beauty-read-more:hover {
    background: #ef3093;
    color: white;
    transform: translateX(5px);
}

.beauty-read-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.beauty-read-more:hover i {
    transform: translateX(3px);
}

/* Shop By Look Styles */

.shop-by-look-page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.shop-by-look-header {
    text-align: center;
    margin-bottom: 50px;
}

.shop-by-look-title {
    font-family: 'Poppins', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.shop-by-look-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.looks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.look-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    group: transition;
}

.look-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.look-image-container {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.look-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.look-card:hover .look-image {
    transform: scale(1.05);
}

.look-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: #fff;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.look-info {
    position: relative;
    z-index: 2;
}

.look-name {
    font-family: 'Poppins', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.look-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.btn-shop-look {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.look-card:hover .btn-shop-look {
    opacity: 1;
    transform: translateY(0);
}

.btn-shop-look:hover {
    background: var(--accent-color);
    color: #fff;
}

@media (max-width: 768px) {
    .look-image-container {
        height: 350px;
    }

    .btn-shop-look {
        opacity: 1;
        transform: translateY(0);
    }
}