/*
Theme Name: The Blush Boutique
Theme URI: https://theblushboutique.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A beautiful, elegant WordPress theme for The Blush Boutique - Luxury Fresh Floral Arrangements. Features custom animations, pink theme, and WooCommerce integration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blush-boutique
Tags: e-commerce, woocommerce, custom-design, pink, elegant, floral
*/

/* ===== RESET & BASE STYLES ===== */
/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #FFB6C1;
    --light-pink: #FFE4E1;
    --dark-pink: #FF69B4;
    --rose-pink: #FFC0CB;
    --blush-pink: #FFF0F5;
    --white: #FFFFFF;
    --soft-white: #FFFEFE;
    --text-dark: #4A4A4A;
    --text-light: #666666;
    --gold: #FFD700;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE8F0 50%, var(--white) 100%);
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ===== FLOWER BRANCHES BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        url('assets/images/bbflowerbranch.png'),
        url('assets/images/bbflowerbranch.png');
    background-position: 
        left center,
        right center;
    background-repeat: no-repeat;
    background-size: 
        auto 120%,
        auto 120%;
    opacity: 0.15;
    background-attachment: fixed;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 192, 203, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

/* ===== CUSTOM CURSOR TRAIL ===== */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-trail::before {
    content: '🌸';
    position: absolute;
    font-size: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== FALLING PETALS FROM BRANCHES ===== */
.falling-petal {
    position: fixed;
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
    will-change: transform, opacity, filter;
    transform-origin: center center;
}

.falling-petal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
}

@keyframes petalFall {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
        filter: blur(4px) brightness(1.5);
    }
    10% {
        transform: translate(15px, 5vh) rotate(30deg);
        opacity: 0.4;
        filter: blur(3px) brightness(1.4);
    }
    25% {
        transform: translate(-10px, 15vh) rotate(60deg);
        opacity: 0.5;
        filter: blur(2px) brightness(1.3);
    }
    40% {
        transform: translate(20px, 30vh) rotate(90deg);
        opacity: 0.6;
        filter: blur(1.5px) brightness(1.2);
    }
    55% {
        transform: translate(-8px, 45vh) rotate(120deg);
        opacity: 0.65;
        filter: blur(1px) brightness(1.1);
    }
    70% {
        transform: translate(25px, 60vh) rotate(150deg);
        opacity: 0.7;
        filter: blur(0.5px) brightness(1.05);
    }
    85% {
        transform: translate(-12px, 80vh) rotate(180deg);
        opacity: 0.75;
        filter: blur(0.2px) brightness(1.02);
    }
    100% {
        transform: translate(30px, 100vh) rotate(210deg);
        opacity: 0.8;
        filter: blur(0px) brightness(1);
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 182, 193, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.logo a:hover,
.logo a:focus,
.logo a:active {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-pink);
    text-shadow: 2px 2px 4px rgba(255, 182, 193, 0.3);
    text-decoration: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark-pink);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-pink);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-pink);
    border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 4rem;
    min-height: 85vh;
    position: relative;
    z-index: 2;
    background: rgba(255, 105, 180, 0.26);
}

.hero-container-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SUBSCRIPTION BANNER (HOMEPAGE) ===== */
.subscription-banner {
    padding: 3rem 0;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
}

.subscription-banner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.subscription-banner-content {
    position: relative;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(255, 182, 193, 0.25);
}

.banner-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 206, 228, 0.87);
}

.banner-content-inner {
    position: relative;
    z-index: 2;
    padding: 4rem;
}

.banner-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.banner-main-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #4A4A4A;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 182, 193, 0.2);
}

.banner-main-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.banner-info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
}

.banner-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
    border-color: var(--primary-pink);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.banner-info-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--dark-pink);
    margin-bottom: 0.5rem;
}

.banner-info-card p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

.banner-cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--blush-pink), var(--light-pink));
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
}

.banner-price-box {
    display: flex;
    flex-direction: column;
}

.banner-price-label {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.banner-price-value {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #4A4A4A;
    line-height: 1;
}

.banner-price-suffix {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1rem;
    color: var(--text-light);
}

.btn-subscription-cta {
    padding: 1rem 3rem;
    font-size: 1.3rem;
    white-space: nowrap;
}

.btn-subscription-cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-subscription-cta:hover i {
    transform: translateX(5px);
}

/* Hero Text Box (Left Side) */
.hero-text-box {
    animation: fadeInLeft 1s ease;
}

.hero-title-new {
    font-family: 'Dancing Script', cursive;
    font-style: normal;
    font-size: 4.5rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle-new {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description-new {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    color: #FF69B4;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
    margin-bottom: 3rem;
}

.btn-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.6);
}

.btn-hero-cta i {
    transition: transform 0.3s ease;
}

.btn-hero-cta:hover i {
    transform: translateX(5px);
}

/* Hero Product Previews */
.hero-product-previews {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-product-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid rgba(255, 182, 193, 0.2);
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.1);
}

.hero-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.25);
    border-color: var(--primary-pink);
}

.hero-product-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-product-info {
    flex: 1;
}

.hero-product-name {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.hero-product-price {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-pink);
    margin-bottom: 0.3rem;
}

.hero-product-rating {
    display: flex;
    gap: 2px;
}

.hero-product-rating i {
    font-size: 0.85rem;
    color: #FFD700;
}

.hero-product-rating .far {
    color: #ddd;
}

/* Hero Image Section (Right Side) */
.hero-image-section {
    animation: fadeInRight 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-image-main {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    background: transparent;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.hero-image-main:hover {
    transform: scale(1.02);
}

/* Legacy hero styles for compatibility */
.hero-content {
    flex: 1;
    animation: fadeInLeft 1s ease;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(255, 182, 193, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    animation: fadeInRight 1s ease;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 182, 193, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05) rotate(2deg);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
    position: relative;
    z-index: 3;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--dark-pink);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 6px rgba(255, 182, 193, 0.3);
}

.page-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: var(--dark-pink);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(255, 182, 193, 0.3);
}

.page-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.5rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.product-card::before {
    content: '🌸';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.4);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 182, 193, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--dark-pink);
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.product-description {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    color: var(--text-light);
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.product-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: normal;
    margin-top: 0.5rem;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    background: rgba(255, 255, 255, 0.5);
    padding: 4rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.3);
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    background: rgba(255, 255, 255, 0.5);
    padding: 4rem 0;
}

.instagram-handle {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #4A4A4A;
    margin-bottom: 2rem;
}

.instagram-embed-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.instagram-preview {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
    padding: 2rem;
}

.instagram-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
    padding: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-pink) var(--light-pink);
}

.instagram-post-grid::-webkit-scrollbar {
    width: 8px;
}

.instagram-post-grid::-webkit-scrollbar-track {
    background: var(--light-pink);
    border-radius: 10px;
}

.instagram-post-grid::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 10px;
}

.instagram-post-grid::-webkit-scrollbar-thumb:hover {
    background: var(--dark-pink);
}

.instagram-post-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 182, 193, 0.2);
}

.instagram-post-item:hover {
    transform: scale(1.05);
}

.instagram-post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 182, 193, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post-item:hover .post-overlay {
    opacity: 1;
}

.post-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

.instagram-scroll-hint {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-pink);
}

.instagram-scroll-hint p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-pink), var(--primary-pink));
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-pink);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--white);
    color: var(--dark-pink);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Playfair Display', serif;
    font-style: normal;
}

/* ===== SHOP PAGE ===== */
.shop-header,
.about-header,
.contact-header {
    margin-top: 100px;
    padding: 3rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
}

/* ===== SUBSCRIPTION SECTION - HIGHLIGHTED ===== */
.subscription-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.subscription-section::before {
    content: '🌸';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.subscription-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.subscription-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 5px 25px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4); }
}

.subscription-badge i {
    margin-right: 0.5rem;
}

.subscription-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.subscription-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.3);
}

.subscription-video {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.subscription-info h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.subscription-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.subscription-price span {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: normal;
}

.subscription-description {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.subscription-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sub-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-style: normal;
}

.sub-feature i {
    color: var(--dark-pink);
    font-size: 1.2rem;
}

.btn-subscribe {
    width: 100%;
    font-size: 1.5rem;
    padding: 1rem 2rem;
}

.shop-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.shop-section .section-title {
    margin-bottom: 3rem;
}

.shop-grid {
    margin-bottom: 3rem;
}

.shop-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
    text-align: center;
}

.info-box i {
    font-size: 3rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.info-box h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.info-box p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ===== ABOUT PAGE ===== */
.about-content-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.about-main {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image-large {
    flex: 1;
}

.about-image-large img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.3);
}

.about-text-large {
    flex: 1;
}

.about-text-large h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-pink);
    margin-bottom: 1.5rem;
}

.about-text-large p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.feature-card p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    line-height: 1.6;
    color: var(--text-dark);
}

.about-signature {
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
}

.signature-content {
    flex: 1;
}

.signature-content h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-pink);
    margin-bottom: 1.5rem;
}

.signature-content p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.signature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.signature-list li {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.star {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.delivery-note {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
}

.signature-image {
    flex: 1;
}

.signature-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.3);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-pink);
    margin-bottom: 2rem;
}

.contact-intro {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--dark-pink);
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
}

.contact-details a:hover {
    color: var(--dark-pink);
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 182, 193, 0.2);
}

.social-link-large i {
    font-size: 1.5rem;
    color: var(--dark-pink);
}

.social-link-large span {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
}

.social-link-large:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
}

.contact-form-container h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-pink);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--light-pink);
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-pink);
}

.instagram-embed-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-pink), var(--blush-pink));
}

.instagram-embed {
    text-align: center;
}

.instagram-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
}

.instagram-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.4);
}

.instagram-link i {
    font-size: 4rem;
    color: var(--dark-pink);
}

.instagram-link span {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--dark-pink);
}

.instagram-link p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===== CLICK BLOOM ANIMATION ===== */
@keyframes bloom {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(2) rotate(360deg);
        opacity: 0;
    }
}

.bloom-effect {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(circle, var(--primary-pink), var(--dark-pink));
    border-radius: 50%;
    animation: bloom 0.6s ease-out;
}

.bloom-effect::before {
    content: '🌸';
    position: absolute;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 182, 193, 0.2);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-container-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-text-box {
        text-align: center;
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-subtitle-new {
        font-size: 1.1rem;
    }

    .hero-description-new {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .btn-hero-cta {
        margin-bottom: 2rem;
    }

    .hero-product-previews {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-product-card {
        max-width: 100%;
    }

    .hero-image-section {
        order: -1;
    }

    .hero-image-main {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-content,
    .about-main,
    .about-signature,
    .contact-content {
        flex-direction: column;
    }

    .about-content .about-text {
        order: 1;
    }

    .about-content .about-image {
        order: 2;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    /* Logo text on one line for mobile */
    .logo-text {
        font-size: 1.4rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Contact page mobile responsiveness */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-form-container {
        order: 2;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .social-links-large {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-link-large {
        flex: 1;
        min-width: 150px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ===== CART ICON ===== */
.cart-icon-container {
    position: relative;
    margin-left: 1rem;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    color: var(--dark-pink);
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.3);
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.5);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--dark-pink);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    visibility: visible;
}

/* Hide cart count when it's 0 or empty */
.cart-count:empty {
    display: none !important;
}

/* Show cart count when it has a number greater than 0 */
.cart-count:not(:empty) {
    display: flex !important;
    visibility: visible !important;
}

/* Ensure cart count is visible when count > 0 */
.cart-count {
    display: none;
}

.cart-count:not(:empty):not([data-count="0"]) {
    display: flex !important;
    visibility: visible !important;
}

/* ===== VIDEO SHOWCASE ===== */
.video-showcase {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

.showcase-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 182, 193, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.hero-video {
    flex: 1;
    animation: fadeInRight 1s ease;
}

.hero-vid {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 182, 193, 0.3);
    transition: transform 0.3s ease;
}

.hero-vid:hover {
    transform: scale(1.05) rotate(2deg);
}

/* ===== INFINITE SCROLLING CAROUSELS ===== */
.featured-products-carousels {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.infinite-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.infinite-carousel-container:hover .infinite-carousel-track {
    animation-play-state: paused;
}

.infinite-carousel-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
    will-change: transform;
}

.carousel-left-to-right .infinite-carousel-track {
    animation: scrollLeftToRight 40s linear infinite;
}

.carousel-right-to-left .infinite-carousel-track {
    animation: scrollRightToLeft 40s linear infinite;
}

.infinite-carousel-container:hover .infinite-carousel-track {
    animation-play-state: paused !important;
}

.infinite-carousel-item {
    flex-shrink: 0;
    width: 300px;
}

.infinite-carousel-item .product-card {
    width: 100%;
    margin: 0;
}

@keyframes scrollLeftToRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ===== ADDITIONAL VIDEOS ===== */
.additional-videos {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.video-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-item-large {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.3);
}

.large-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ===== IMAGE MOSAIC ===== */
.more-images {
    padding: 4rem 0;
}

.image-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    grid-auto-rows: 250px;
}

.mosaic-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
    transition: transform 0.3s ease;
}

.mosaic-item:hover {
    transform: scale(1.05);
}

.mosaic-item.large {
    grid-row: span 2;
}

.mosaic-item img,
.mosaic-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mosaic-item video {
    background: var(--light-pink);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-section {
    margin-top: 100px;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.3);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
}

.thumbnail-item {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--dark-pink);
    transform: scale(1.1);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.product-detail-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.product-description-full {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-style: normal;
}

.feature-item i {
    color: var(--dark-pink);
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-style: normal;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-pink);
    background: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--dark-pink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.quantity-selector input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    border: 2px solid var(--light-pink);
    border-radius: 10px;
    font-size: 1.2rem;
}

.product-note-full {
    background: var(--light-pink);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.product-note-full p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    color: var(--text-dark);
    margin: 0;
}

.btn-add-to-cart {
    width: 100%;
    margin-bottom: 2rem;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-link {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: scale(1.1);
}

/* ===== CART PAGE ===== */
.cart-section {
    margin-top: 100px;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.empty-cart h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 2fr 150px 100px 50px;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--light-pink);
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-pink);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.cart-item-details h3 a {
    color: var(--dark-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-details h3 a:hover {
    color: var(--primary-pink);
}

.cart-item-price {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    color: var(--text-light);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.cart-item-quantity .quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.cart-item-quantity .quantity {
    display: inline-block;
    margin: 0;
}

.cart-item-quantity input.qty {
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid var(--light-pink);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.cart-item-quantity .quantity-btn {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-pink);
    background: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--dark-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.cart-item-quantity .quantity-btn:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: scale(1.1);
}

.quantity-btn-small {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-pink);
    background: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--dark-pink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn-small:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.cart-item-total {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-remove {
    width: 35px;
    height: 35px;
    border: none;
    background: var(--light-pink);
    border-radius: 50%;
    color: var(--dark-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: var(--dark-pink);
    color: var(--white);
    transform: scale(1.1);
}

.cart-item-remove i {
    font-size: 0.9rem;
}

.cart-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.cart-summary h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--dark-pink);
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-style: normal;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-pink);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.btn-checkout {
    width: 100%;
    margin-top: 1.5rem;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
    margin-top: 100px;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
}

.checkout-form h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--dark-pink);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.checkout-form h2:first-child {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--light-pink);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-pink);
    background: var(--blush-pink);
}

.payment-option input[type="radio"] {
    accent-color: var(--dark-pink);
}

.btn-place-order {
    width: 100%;
    margin-top: 2rem;
}

.checkout-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.checkout-summary h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--dark-pink);
    margin-bottom: 1.5rem;
}

.order-items {
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-pink);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-details h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--dark-pink);
    margin-bottom: 0.3rem;
}

.checkout-item-details p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkout-item-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
}

.order-totals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-pink);
}

.total-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-style: normal;
}

.total-final {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-pink);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===== CART NOTIFICATION ===== */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.4);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--dark-pink);
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* ===== ORDER SUCCESS MODAL ===== */
.order-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-success-modal.show {
    opacity: 1;
}

.success-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(255, 182, 193, 0.4);
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.success-content h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.success-content p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.success-actions {
    margin-top: 2rem;
}

/* ===== IMAGE ZOOM MODAL ===== */
.image-zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.zoom-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.zoom-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-pink);
    border-radius: 50%;
}

#zoomedImage {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.main-image-container {
    position: relative;
}

.zoom-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.main-image-container:hover .zoom-hint {
    opacity: 1;
}

.zoom-hint i {
    margin-right: 0.5rem;
    color: var(--dark-pink);
}

/* ===== SUBSCRIPTION OPTIONS ===== */
.subscription-options {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--blush-pink), var(--light-pink));
    border-radius: 20px;
    border: 3px solid var(--primary-pink);
}

.subscription-options h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--dark-pink);
    margin-bottom: 2rem;
    text-align: center;
}

.subscription-choice {
    margin-bottom: 2rem;
}

.subscription-choice h4 {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.choice-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.choice-option {
    cursor: pointer;
}

.choice-option input[type="radio"] {
    display: none;
}

.option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border: 3px solid var(--light-pink);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.choice-option input[type="radio"]:checked + .option-box {
    background: var(--primary-pink);
    border-color: var(--dark-pink);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.5);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.option-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--dark-pink);
    margin-bottom: 0.3rem;
}

.option-hint {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-light);
}

.subscription-details {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

/* Date Picker Styling */
.date-picker-container {
    margin-top: 1rem;
}

.subscription-date-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 1.1rem;
    color: var(--text-dark);
    background: var(--white);
    border: 3px solid var(--primary-pink);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 182, 193, 0.2);
}

.subscription-date-input:hover {
    border-color: var(--dark-pink);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.3);
    transform: translateY(-2px);
}

.subscription-date-input:focus {
    outline: none;
    border-color: var(--dark-pink);
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.subscription-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.3rem;
    border-radius: 5px;
    background: var(--primary-pink);
    color: var(--white);
    transition: all 0.3s ease;
}

.subscription-date-input::-webkit-calendar-picker-indicator:hover {
    background: var(--dark-pink);
    transform: scale(1.1);
}

.date-info {
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 1rem;
    background: rgba(255, 182, 193, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-pink);
}

.subscription-details p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subscription-details p:last-child {
    margin-bottom: 0;
}

.subscription-details i {
    color: var(--dark-pink);
    font-size: 1.1rem;
}

/* ===== FLOWER VARIATIONS ===== */
.flower-variations {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--blush-pink);
    border-radius: 15px;
}

.flower-variations h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.variation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.variation-option {
    position: relative;
}

.variation-option input[type="checkbox"] {
    display: none;
}

.variation-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--light-pink);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.variation-option input[type="checkbox"]:checked + label {
    background: var(--primary-pink);
    border-color: var(--dark-pink);
    transform: scale(1.05);
}

/* ===== WOO VARIATION TABLE BASE STYLING (fallback if JS enhancement fails) ===== */
.product-details table.variations {
    width: 100%;
    border-collapse: collapse;
    background: var(--blush-pink);
    border-radius: 18px;
    padding: 1.5rem;
    display: block;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.25);
    margin-bottom: 1.5rem;
}

.product-details table.variations tbody,
.product-details table.variations tr {
    display: block;
    width: 100%;
}

.product-details table.variations th.label {
    display: block;
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--dark-pink);
    padding: 0 0 0.4rem 0;
    text-align: left;
}

.product-details table.variations td.value {
    display: block;
    width: 100%;
    padding: 0 0 0.8rem 0;
}

.product-details table.variations td.value:last-child {
    padding-bottom: 0;
}

.product-details table.variations select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 2px solid var(--light-pink);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    box-shadow: 0 6px 16px rgba(255, 182, 193, 0.2);
    outline: none;
}

.product-details table.variations select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.35);
}

.product-details table.variations .reset_variations {
    display: inline-block;
    margin-left: 0.75rem;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary-pink);
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: var(--dark-pink);
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-details table.variations .reset_variations:hover {
    background: var(--primary-pink);
    color: var(--white);
}

/* Quantity + Add to cart styling for variable products */
.product-details .single_variation_wrap .quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.25rem 0 0.75rem;
}

.product-details .single_variation_wrap .quantity .qty {
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid var(--light-pink);
    border-radius: 10px;
    font-size: 1rem;
}

/* Make WooCommerce add-to-cart look like theme primary button */
.product-details .single_variation_wrap .single_add_to_cart_button {
    width: 100%;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    border: none;
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-details .single_variation_wrap .single_add_to_cart_button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-details .single_variation_wrap .single_add_to_cart_button:hover::before {
    width: 300px;
    height: 300px;
}

.product-details .single_variation_wrap .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.6);
}

/* ===== WOO VARIATION SELECT ENHANCEMENTS (auto-styled options) ===== */
.product-details .wc-variation-group {
    margin: 0.75rem 0 1.25rem;
}

.product-details .wc-variation-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--dark-pink);
    margin-bottom: 0.75rem;
}

.product-details .wc-variation-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.product-details .wc-variation-option {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--light-pink);
    border-radius: 18px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    box-shadow: 0 6px 16px rgba(255, 182, 193, 0.2);
}

.product-details .wc-variation-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 182, 193, 0.28);
    border-color: var(--primary-pink);
}

.product-details .wc-variation-option.selected {
    background: #ffe9f1;
    border-color: var(--primary-pink);
    color: var(--dark-pink);
    box-shadow: 0 10px 22px rgba(255, 182, 193, 0.32);
    font-weight: 600;
}

.flower-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.flower-name {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.flower-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-pink);
}

/* ===== PRICE DISPLAY ===== */
.price-display {
    background: var(--light-pink);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.price-display p {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.price-display p:last-child {
    margin-bottom: 0;
}

.base-price,
.variation-price {
    font-size: 1rem;
    color: var(--text-dark);
}

.total-price-display {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-pink);
    padding-top: 1rem;
    border-top: 2px solid var(--primary-pink);
}

/* ===== BUY NOW BUTTON ===== */
.btn-buy-now {
    width: 100%;
    margin-top: 1rem;
}

/* ===== RELATED PRODUCTS CAROUSEL ===== */
.related-products {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.related-products > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
    width: 100%;
}

.products-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    will-change: transform;
    width: 100%;
}

.products-carousel .product-card {
    min-width: 300px;
    flex-shrink: 0;
    width: 300px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-pink);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 3px 10px rgba(255, 182, 193, 0.3);
}

.carousel-btn:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.5);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {
    .banner-content-inner {
        padding: 2.5rem 1.5rem;
    }
    
    .banner-main-title {
        font-size: 2.5rem;
    }
    
    .banner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .banner-cta-section {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .btn-subscription-cta {
        width: 100%;
    }
    
    .product-detail-container,
    .cart-container,
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .subscription-content {
        grid-template-columns: 1fr;
    }
    
    .choice-options {
        grid-template-columns: 1fr;
    }

    /* Single product subscription box responsiveness */
    .subscription-options {
        padding: 1.5rem 1.25rem;
    }

    .subscription-options h3 {
        font-size: 1.8rem;
        text-align: left;
    }

    .product-details .wc-variation-options {
        grid-template-columns: 1fr;
    }
    
    /* Single product page mobile responsiveness */
    .product-detail-section {
        margin-top: 80px;
        padding: 2rem 0;
    }
    
    .product-detail-container {
        gap: 2rem;
    }
    
    .product-images {
        gap: 0.75rem;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .thumbnail-images {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .thumbnail-item {
        width: 70px;
        height: 70px;
    }
    
    .product-details h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .product-detail-price {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .product-description-full {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .product-features {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .subscription-options {
        padding: 1.25rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .subscription-options h3 {
        font-size: 1.5rem;
    }
    
    .product-details table.variations {
        margin-bottom: 1rem;
    }
    
    .product-details table.variations th.label {
        font-size: 0.95rem;
        padding-bottom: 0.3rem;
    }
    
    .product-details table.variations td.value {
        padding-bottom: 0.6rem;
    }
    
    .product-details .wc-variation-group {
        margin: 0.5rem 0 1rem;
    }
    
    .quantity-selector {
        margin-bottom: 1rem;
    }
    
    .quantity-selector label {
        font-size: 0.95rem;
    }
    
    .quantity-controls {
        gap: 0.5rem;
    }
    
    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .product-details .single_variation_wrap .quantity .qty {
        width: 60px;
        padding: 0.5rem;
        font-size: 0.95rem;
    }
    
    .product-details .single_variation_wrap .single_add_to_cart_button {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .price-display {
        margin: 1rem 0;
    }
    
    .price-display p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .product-note-full {
        margin: 1rem 0;
        font-size: 0.85rem;
    }
    
    .related-products {
        margin-top: 2rem;
    }
    
    .related-products h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    /* Cart page mobile responsiveness */
    .cart-section {
        padding: 1rem 0;
    }
    
    .cart-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cart-items {
        padding: 1.5rem 1rem;
    }
    
    .cart-item {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--light-pink);
        position: relative;
    }
    
    .cart-item:last-child {
        border-bottom: none;
    }
    
    .cart-item-image {
        width: 100%;
        max-width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .cart-item-details {
        text-align: center;
        width: 100%;
    }
    
    .cart-item-details h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .cart-item-price {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .cart-item-quantity {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }
    
    .cart-item-total {
        text-align: center;
        width: 100%;
        font-size: 1.1rem;
        margin: 0.5rem 0;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 1rem;
        right: 0;
        width: 35px;
        height: 35px;
    }
    
    .cart-summary {
        padding: 1.5rem 1rem;
        margin-top: 1rem;
    }
    
    .cart-summary h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .summary-item,
    .summary-total {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }
    
    .btn-checkout {
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .video-row {
        grid-template-columns: 1fr;
    }
    
    .image-mosaic {
        grid-template-columns: 1fr;
    }
    
    .mosaic-item.large {
        grid-row: span 1;
    }
    
    .carousel-container {
        padding: 0;
    }
    
    .products-carousel .product-card {
        min-width: 250px;
        width: 250px;
    }
    
    .instagram-post-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        max-height: 500px;
    }
    
    .variation-options {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* Tablet styles for cart */
@media (min-width: 769px) and (max-width: 1024px) {
    .cart-item {
        grid-template-columns: 100px 2fr 120px 100px 50px;
        gap: 1rem;
    }
    
    .cart-item-details h3 {
        font-size: 1rem;
    }
    
    .cart-item-quantity input.qty {
        width: 50px;
        font-size: 0.9rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .cart-section .container {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .shop-header,
    .about-header,
    .contact-header {
        padding: 2rem 0 0.5rem;
        margin-top: 80px;
    }
    
    .cart-items {
        padding: 1rem 0.75rem;
    }
    
    .cart-item {
        padding: 1rem 0;
    }
    
    .cart-item-image {
        max-width: 120px;
        height: 120px;
    }
    
    .cart-item-details h3 {
        font-size: 0.95rem;
    }
    
    .cart-item-quantity .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .cart-item-quantity input.qty {
        width: 50px;
        padding: 0.4rem;
        font-size: 0.9rem;
    }
    
    .cart-item-remove {
        width: 30px;
        height: 30px;
        top: 0.5rem;
        right: 0;
    }
    
    .cart-summary {
        padding: 1rem 0.75rem;
    }
    
    /* Single product page - small mobile */
    .product-detail-section {
        padding: 1.5rem 0;
    }
    
    .product-detail-container {
        gap: 1.5rem;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .product-details h1 {
        font-size: 1.75rem;
    }
    
    .product-detail-price {
        font-size: 1.25rem;
    }
    
    .product-description-full {
        font-size: 0.95rem;
    }
    
    .subscription-options {
        padding: 1rem 0.75rem;
    }
    
    .subscription-options h3 {
        font-size: 1.3rem;
    }
}

