/* ==========================================
   BADONKADONK - Premium Sculpting Activewear
   Soft Pink Color Palette
   ========================================== */

:root {
    --pink-50: #fef5f7;
    --pink-100: #fce4ec;
    --pink-200: #f8c8d8;
    --pink-300: #f0a8c0;
    --pink-400: #e880a0;
    --pink-500: #d4698a;
    --pink-600: #c0506e;
    --pink-700: #a03858;
    --pink-800: #802848;
    --pink-900: #601838;
    --rose-gold: #d4a0b0;
    --blush: #f5e6ea;
    --cream: #fdf8f9;
    --dark: #2d2024;
    --text: #3d2d35;
    --text-light: #6b4f5a;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.announcement-bar strong {
    color: var(--pink-300);
}

/* Header / Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(212, 160, 176, 0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: var(--pink-500);
}

.logo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text);
}

.logo:hover {
    color: var(--pink-500);
}

.nav-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 4px;
    transition: color 0.2s;
    position: relative;
}

.nav-icon:hover {
    color: var(--pink-500);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -8px;
    background: var(--pink-500);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(45, 32, 36, 0.1);
    border-radius: 8px;
    margin-top: 16px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--pink-50);
    color: var(--pink-500);
    padding-left: 28px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 16px 40px 24px;
    border-bottom: 1px solid var(--blush);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--blush);
    text-transform: uppercase;
}

/* Search Overlay */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 32, 36, 0.6);
    z-index: 2000;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    backdrop-filter: blur(4px);
}

.search-overlay.active {
    display: flex;
}

.search-container {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.search-input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    background: transparent;
}

.search-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    padding: 8px 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--pink-700);
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-content h1 em {
    color: var(--pink-600);
    font-style: italic;
}

.hero-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--pink-600);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--pink-600);
    transform: scale(1.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--pink-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 105, 138, 0.3);
}

.btn-small {
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.btn-full {
    width: 100%;
}

/* Value Props */
.value-props {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 28px 40px;
    background: var(--pink-50);
    border-bottom: 1px solid rgba(212, 160, 176, 0.15);
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text);
}

.value-prop svg {
    color: var(--pink-500);
}

/* Product Sections */
.product-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 400;
}

.section-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pink-500);
    transition: all 0.2s;
}

.section-link:hover {
    color: var(--pink-700);
    letter-spacing: 2px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    cursor: pointer;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    width: 70%;
    opacity: 0.6;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
}

.sale-badge {
    background: var(--pink-500);
}

.quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(45, 32, 36, 0.3));
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    display: flex;
    justify-content: center;
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.quick-add .btn {
    background: var(--white);
    color: var(--dark);
}

.quick-add .btn:hover {
    background: var(--pink-500);
    color: var(--white);
}

.product-info {
    padding: 16px 4px 0;
}

.product-colors {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.product-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.stars {
    color: var(--pink-500);
    font-size: 13px;
    letter-spacing: 1px;
}

.review-count {
    font-size: 12px;
    color: var(--text-light);
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

/* Feature Banner */
.feature-banner {
    background: linear-gradient(135deg, var(--pink-100) 0%, var(--blush) 50%, var(--pink-200) 100%);
    padding: 100px 40px;
}

.feature-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.feature-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--pink-600);
    margin-bottom: 16px;
}

.feature-content h2 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--pink-600);
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Ambassador Section */
.ambassador-section {
    padding: 100px 40px;
    background: var(--cream);
}

.ambassador-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ambassador-text .feature-tag {
    text-align: left;
}

.ambassador-text h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.ambassador-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 28px;
}

.ambassador-perks {
    list-style: none;
    margin-bottom: 32px;
}

.ambassador-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.ambassador-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ambassador-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(45, 32, 36, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ambassador-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
}

.ambassador-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 12px;
}

.ambassador-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--pink-500);
    letter-spacing: 0.5px;
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
}

.instagram-section .section-header {
    padding: 0 40px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    margin-top: 40px;
}

.insta-tile {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.insta-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-tile:hover img {
    transform: scale(1.08);
}

.insta-tile:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.insta-icon {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-tile:hover .insta-icon {
    opacity: 1;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 40px;
    background: var(--pink-50);
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 15px;
    color: var(--text-light);
}

.large-stars {
    font-size: 22px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(45, 32, 36, 0.05);
}

.review-card .stars {
    margin-bottom: 12px;
    display: block;
}

.review-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.review-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.reviewer {
    font-size: 12px;
    font-weight: 600;
    color: var(--pink-500);
    letter-spacing: 0.5px;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--pink-200) 0%, var(--pink-300) 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    border-color: var(--pink-600);
    background: var(--white);
}

.newsletter-note {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 40px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--pink-300);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    opacity: 0.7;
    transition: all 0.2s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--pink-300);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.6;
}

.payment-icons {
    display: flex;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 32, 36, 0.6);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
}

.modal h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--dark);
}

.modal p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.ambassador-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ambassador-form input,
.ambassador-form select,
.ambassador-form textarea {
    padding: 14px 18px;
    border: 2px solid var(--blush);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
    background: var(--white);
}

.ambassador-form input:focus,
.ambassador-form select:focus,
.ambassador-form textarea:focus {
    border-color: var(--pink-400);
}

/* Cart Drawer */
.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 32, 36, 0.4);
    z-index: 2500;
}

.cart-overlay.active {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: var(--white);
    z-index: 2600;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--blush);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
}

.cart-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-light);
    font-size: 15px;
}

/* Shop by Category */
.category-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(45, 32, 36, 0.7));
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

.category-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* As Seen On */
.seen-on-section {
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--blush);
    border-bottom: 1px solid var(--blush);
}

.seen-on-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.seen-on-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.seen-on-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--rose-gold);
    opacity: 0.5;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.seen-on-logo:hover {
    opacity: 0.8;
}

/* Countdown Timer */
.countdown-section {
    padding: 80px 40px;
    background: var(--dark);
    text-align: center;
}

.countdown-content {
    max-width: 600px;
    margin: 0 auto;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--pink-300);
}

.countdown-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    margin: 12px 0 32px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 24px;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.countdown-unit {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--pink-300);
    margin-top: 6px;
    text-transform: uppercase;
}

.countdown-sep {
    font-size: 32px;
    font-weight: 700;
    color: var(--pink-400);
    margin-top: -12px;
}

.countdown-section .btn-primary {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
}

.countdown-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
}

/* Trust Badges */
.trust-section {
    padding: 70px 40px;
    background: var(--pink-50);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--pink-500);
    box-shadow: 0 2px 12px rgba(212, 105, 138, 0.12);
}

.trust-badge h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.trust-badge p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--blush);
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--pink-500);
}

.faq-arrow {
    transition: transform 0.3s;
    color: var(--pink-500);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Welcome Popup */
.welcome-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 32, 36, 0.6);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.welcome-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.welcome-modal {
    background: var(--white);
    border-radius: 20px;
    display: flex;
    width: 90%;
    max-width: 720px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.welcome-image {
    flex: 1;
    min-width: 0;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-text {
    flex: 1;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--pink-500);
    margin-bottom: 8px;
}

.welcome-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.welcome-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.welcome-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.welcome-input {
    padding: 14px 18px;
    border: 2px solid var(--blush);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.welcome-input:focus {
    border-color: var(--pink-400);
}

.welcome-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.welcome-skip {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: underline;
    cursor: pointer;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.welcome-skip:hover {
    opacity: 1;
}

/* Social Proof Notification */
.social-proof {
    position: fixed;
    bottom: 28px;
    left: 28px;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    display: none;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 24px rgba(45, 32, 36, 0.12);
    z-index: 3500;
    max-width: 340px;
    animation: slideInLeft 0.4s ease;
}

.social-proof.active {
    display: flex;
}

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

.social-proof-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.social-proof-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-proof-text {
    flex: 1;
    min-width: 0;
}

.social-proof-name {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 2px;
}

.social-proof-product {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 2px;
}

.social-proof-time {
    font-size: 11px;
    color: var(--text-light);
}

.social-proof-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    align-self: flex-start;
}

/* Announcement Bar Rotation */
.announcement-msg {
    display: none;
    animation: announceFade 0.5s ease;
}

.announcement-msg.active {
    display: block;
}

@keyframes announceFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--blush);
    color: var(--pink-500);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    box-shadow: 0 2px 12px rgba(45, 32, 36, 0.1);
    transition: all 0.3s;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--pink-500);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(212, 105, 138, 0.3);
}

/* Size Quiz */
.size-quiz-modal {
    max-width: 480px;
    text-align: center;
}

.size-quiz-modal h2 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--dark);
}

.size-quiz-modal p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.quiz-progress {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink-500);
    margin-bottom: 12px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px;
    border: 2px solid var(--blush);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s;
}

.quiz-option:hover {
    border-color: var(--pink-400);
    background: var(--pink-50);
    transform: translateY(-1px);
}

.quiz-option-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.quiz-option-sub {
    font-size: 13px;
    color: var(--text-light);
}

.quiz-result {
    padding: 20px 0;
}

.quiz-result-size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: white;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin: 16px 0;
}

.quiz-result-recs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    text-align: left;
}

.quiz-rec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--pink-50);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.2s;
}

.quiz-rec-item:hover {
    background: var(--pink-100);
}

.quiz-rec-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.quiz-rec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Chatbot */
.chatbot-bubble {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4000;
    box-shadow: 0 4px 20px rgba(212, 105, 138, 0.4);
    transition: all 0.3s;
    animation: chatPulse 3s ease-in-out infinite;
}

.chatbot-bubble:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(212, 105, 138, 0.5);
}

@keyframes chatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(212, 105, 138, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(212, 105, 138, 0.6); }
}

.chat-notification {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #ff4757;
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 380px;
    height: 520px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(45, 32, 36, 0.15);
    z-index: 4001;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
    animation: chatSlideUp 0.3s ease;
}

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

.chatbot-header {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: white;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-display);
}

.chatbot-header h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
}

.chatbot-status {
    font-size: 12px;
    opacity: 0.85;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--pink-50);
}

.chat-message {
    max-width: 82%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    animation: msgFade 0.3s ease;
}

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

.chat-message.bot {
    background: var(--white);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(45, 32, 36, 0.06);
}

.chat-message.user {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.bot .chat-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.chat-option-btn {
    background: var(--pink-50);
    border: 1.5px solid var(--pink-200);
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 13px;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    color: var(--pink-600);
    font-weight: 500;
    transition: all 0.2s;
}

.chat-option-btn:hover {
    background: var(--pink-100);
    border-color: var(--pink-400);
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-self: flex-start;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rose-gold);
    animation: typingDot 1.4s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chatbot-input-area {
    padding: 14px 16px;
    border-top: 1px solid var(--blush);
    display: flex;
    gap: 8px;
    background: var(--white);
}

.chatbot-input {
    flex: 1;
    border: 2px solid var(--blush);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.chatbot-input:focus {
    border-color: var(--pink-400);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.chatbot-send:hover {
    transform: scale(1.05);
}

/* Chatbot inline form */
.chatbot-form {
    padding: 20px;
    background: var(--white);
    border-top: 1px solid var(--blush);
}

.chatbot-form-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-form-inner h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--dark);
    text-align: center;
}

.chatbot-form-inner > p {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4px;
}

.chatbot-form-inner input {
    padding: 11px 14px;
    border: 2px solid var(--blush);
    border-radius: 10px;
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.chatbot-form-inner input:focus {
    border-color: var(--pink-400);
}

.chatbot-form-row {
    display: flex;
    gap: 8px;
}

.chatbot-form-row input {
    flex: 1;
    min-width: 0;
}

.chatbot-form-inner .btn {
    margin-top: 4px;
    padding: 12px;
    font-size: 12px;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .ambassador-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .feature-stats {
        gap: 40px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-left {
        display: none;
    }

    .nav-right .nav-link {
        display: none;
    }

    .hero {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .value-props {
        gap: 20px;
        padding: 20px;
    }

    .value-prop span {
        font-size: 12px;
    }

    .product-section {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .feature-banner {
        padding: 60px 20px;
    }

    .feature-content h2 {
        font-size: 32px;
    }

    .feature-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .ambassador-section {
        padding: 60px 20px;
    }

    .ambassador-text h2 {
        font-size: 30px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-section {
        padding: 50px 20px;
    }

    .newsletter-section {
        padding: 50px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-content h2 {
        font-size: 28px;
    }

    .footer {
        padding: 40px 20px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .countdown-title {
        font-size: 28px;
    }

    .countdown-num {
        font-size: 30px;
    }

    .countdown-block {
        padding: 12px 16px;
        min-width: 60px;
    }

    .seen-on-logos {
        gap: 28px;
    }

    .seen-on-logo {
        font-size: 18px;
    }

    .welcome-modal {
        flex-direction: column;
        max-width: 400px;
    }

    .welcome-image {
        height: 200px;
    }

    .welcome-text {
        padding: 28px 24px;
    }

    .welcome-text h2 {
        font-size: 28px;
    }

    .social-proof {
        left: 12px;
        bottom: 12px;
        max-width: 300px;
    }

    .cart-drawer {
        width: 100%;
        right: -100%;
    }

    .modal {
        padding: 32px 24px;
    }

    .chatbot-window {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .chatbot-bubble {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 38px;
    }

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

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 14px;
    }

    .value-props {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
