/* ============================================
   CSS Reset & Base Styles
   ============================================ */

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

/* Allow text selection for content and links */
body, p, h1, h2, h3, h4, h5, h6, span, div, a, li, td, th, label, input, textarea {
    -webkit-user-select: text;
    user-select: text;
}

/* Ensure links are clickable and selectable */
a, .nav-link {
    -webkit-user-select: text;
    user-select: text;
    cursor: pointer;
    pointer-events: auto;
}

/* Disable selection for buttons, images, and UI elements */
button, img, .btn, .product-image, .menu-toggle, .logo img {
    -webkit-user-select: none;
    user-select: none;
}

:root {
    /* Color Palette - Rose Gold & Warm Tones (from Logo) */
    /* Rose Gold/Blush Pink - Metallic shimmer tone */
    --rose-gold: #D4A574;
    --rose-gold-light: #E8B4A8;
    --rose-gold-lighter: #F4D4C4;
    --rose-gold-dark: #C49A8A;
    --rose-gold-darker: #B88A7A;
    
    /* Warm Brown - Tagline/dark text */
    --warm-brown: #8B6F5E;
    --warm-brown-light: #A68B7A;
    --warm-brown-dark: #6B5445;
    --warm-brown-darker: #5A4A3A;
    
    /* Cream/Beige - Background tones */
    --cream: #FAF8F5;
    --cream-light: #FEFCF9;
    --beige: #F4EDE0;
    --beige-warm: #E8DCC6;
    
    /* Text Colors - Improved Contrast */
    --text-dark: #3A2E2A;
    --text-medium: #5A4A3A;
    --text-light: #6B5445;
    
    /* Neutrals */
    --black: #3A2E2A;
    --black-light: #5A4A3A;
    --white: #FFFFFF;
    --background: #FAF8F5;
    
    /* Legacy aliases for compatibility */
    --pink: var(--rose-gold-light);
    --pink-light: var(--rose-gold-lighter);
    --pink-dark: var(--rose-gold-dark);
    
    /* Typography */
    --font-heading: 'Dancing Script', cursive;
    --font-body: 'Playfair Display', serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Spacing */
    --container-padding: 1.5rem;
    --section-spacing: 4rem;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Mobile Performance Optimizations */
* {
    -webkit-tap-highlight-color: rgba(232, 180, 168, 0.2);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize video for mobile */
video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ============================================
   Animations & Transitions
   ============================================ */

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(232, 180, 168, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(232, 180, 168, 0.8), 0 0 30px rgba(232, 180, 168, 0.6);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmerText {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    background-color: #FAF5F2;
    line-height: 1.6;
    position: relative;
    -webkit-tap-highlight-color: rgba(232, 180, 168, 0.3);
}

/* Background Video */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Optimize video for mobile performance */
@media (max-width: 768px) {
    .video-background video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    /* Reduce backdrop blur on mobile for performance */
    .video-background {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.15;
    will-change: transform;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 245, 242, 0.9) 0%, rgba(255, 240, 235, 0.9) 100%);
    z-index: -1;
    opacity: 0.85;
    pointer-events: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.main-content {
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* ============================================
   Header / Navbar
   ============================================ */

.header {
    background-color: rgba(244, 212, 196, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(232, 180, 168, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.5s ease-out;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    background: none !important;
    background-color: transparent !important;
    border-radius: 0;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: scaleIn 0.6s ease-out;
}

.logo:hover {
    background: none !important;
    background-color: transparent !important;
    border: none;
    box-shadow: none;
    transform: scale(1.05);
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: var(--black);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    line-height: 0;
    width: 100%;
    height: 100%;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo img {
    width: 120px;
    height: auto;
    display: block;
    object-fit: contain;
    background: none !important;
    background-color: transparent !important;
    border-radius: 0;
    box-shadow: none;
    mix-blend-mode: normal;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Ensure nav menu is properly displayed on desktop */
@media (min-width: 769px) {
    .nav-menu {
        position: static !important;
        right: auto !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        background: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        overflow: visible !important;
        transform: none !important;
    }
    
    .nav-menu.active {
        right: auto !important;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(232, 180, 168, 0.2);
}

.nav-link:hover {
    color: var(--rose-gold-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--rose-gold-light);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(232, 180, 168, 0.3);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--black);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    display: block;
}

.menu-toggle:hover span {
    background-color: var(--rose-gold-dark);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Cart Link with Icon */
.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.cart-icon {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cart-link:hover .cart-icon {
    transform: scale(1.2) rotate(-10deg);
}

.cart-text {
    display: inline-block;
}

.cart-badge {
    background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold-dark));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 2px 5px rgba(232, 180, 168, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.cart-link:hover .cart-badge {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(232, 180, 168, 0.6);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(232, 180, 168, 0.3);
    /* user-select: none is now handled globally for buttons */
}

.btn::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:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover {
    background-color: var(--black-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-product {
    width: 100%;
    background-color: var(--rose-gold-light);
    color: var(--black);
    border: none;
}

.btn-product:hover {
    background-color: var(--rose-gold-dark);
    transform: translateY(-2px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: linear-gradient(135deg, rgba(232, 180, 168, 0.9) 0%, rgba(244, 237, 224, 0.9) 100%);
    background-size: 200% 200%;
    animation: gradient 10s ease infinite;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    display: inline-block;
}

.hero-headline:hover {
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

/* ============================================
   Products Section
   ============================================ */

.products {
    padding: var(--section-spacing) 0;
    background-color: rgba(250, 240, 235, 0.95);
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    color: var(--black);
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease-out;
    display: inline-block;
    position: relative;
}

.section-title:hover {
    transform: scale(1.05) translateY(-3px);
    text-shadow: 0 5px 15px rgba(232, 180, 168, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose-gold-light), transparent);
    transition: transform 0.4s ease;
}

.section-title:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: rgba(255, 250, 248, 0.98);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(232, 180, 168, 0.3);
    box-shadow: 0 2px 8px rgba(232, 180, 168, 0.1);
    animation: fadeInUp 0.6s ease-out backwards;
    position: relative;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card:nth-child(8) {
    animation-delay: 0.8s;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(232, 180, 168, 0.3);
    border-color: rgba(232, 180, 168, 0.6);
}

.product-image {
    width: 100%;
    height: 300px;
    background-color: var(--beige-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(1deg);
}

.product-placeholder {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    opacity: 0.6;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    color: var(--black);
    margin-bottom: 0.75rem;
}

.product-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    color: var(--rose-gold-dark);
    transform: scale(1.1);
}

/* ============================================
   Custom Hampers Section
   ============================================ */

.hampers {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, rgba(232, 180, 168, 0.95) 0%, rgba(244, 212, 196, 0.95) 50%, rgba(250, 240, 235, 0.95) 100%);
    background-size: 200% 200%;
    animation: gradient 12s ease infinite, fadeIn 1s ease-out;
    position: relative;
    z-index: 1;
}

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

.hampers-lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.hampers-description {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hampers-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Coming Soon Section
   ============================================ */

.coming-soon {
    padding: var(--section-spacing) 0;
    background-color: rgba(250, 240, 235, 0.95);
    position: relative;
    z-index: 1;
}

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

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--rose-gold-light);
    color: var(--warm-brown-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.coming-soon-image {
    margin-top: 2rem;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--rose-gold-lighter) 0%, var(--beige) 100%);
    border-radius: 20px;
    filter: blur(2px);
    opacity: 0.7;
}

.coming-soon-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(232, 180, 168, 0.2);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.coming-soon-image {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 3s ease-in-out infinite, fadeInUp 1s ease-out;
}

.coming-soon-image:hover {
    transform: translateY(-10px) scale(1.03);
}

.coming-soon-image:hover img {
    transform: scale(1.1);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: rgba(58, 46, 42, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--rose-gold-lighter);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    color: var(--rose-gold-lighter);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-list a {
    color: var(--beige);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--rose-gold-lighter);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    color: var(--rose-gold-lighter);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: var(--rose-gold-light);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--rose-gold-lighter);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom .footer-madeby {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   MOBILE-FIRST RESPONSIVE DESIGN
   ============================================ */

/* ============================================
   BASE MOBILE STYLES (Default - Mobile First)
   ============================================ */

/* Mobile is the default - no media query needed */
:root {
    --mobile-section-spacing: 2rem;
    --mobile-container-padding: 1rem;
    --mobile-touch-target: 48px;
    --mobile-font-base: 16px;
}

/* Mobile Base Styles */
html {
    font-size: var(--mobile-font-base);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: rgba(232, 180, 168, 0.2);
}

/* Mobile Container */
.container {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--mobile-container-padding);
    margin: 0 auto;
}

/* Mobile Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Typography Scale */
h1, .hero-headline {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.2;
}

h2, .section-title, .page-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    line-height: 1.4;
}

p, .section-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
}

/* Mobile Header & Navigation */
.header {
    padding: 0.875rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.logo {
    flex: 0 0 auto;
    padding: 0.25rem 0;
}

.logo img {
    max-height: 40px;
    width: auto;
    height: auto;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: var(--mobile-touch-target);
    height: var(--mobile-touch-target);
    min-width: var(--mobile-touch-target);
    min-height: var(--mobile-touch-target);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
    position: relative;
    touch-action: manipulation;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu - Slide from Right */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85%, 320px);
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 250, 248, 0.99);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: -4px 0 20px rgba(232, 180, 168, 0.3);
    z-index: 101;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-menu.active {
    right: 0;
}

/* Mobile Menu Overlay */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.15);
    z-index: 100;
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.4s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(232, 180, 168, 0.15);
}

.nav-menu li:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(232, 180, 168, 0.15);
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    min-height: var(--mobile-touch-target);
    font-size: 1.05rem;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(232, 180, 168, 0.3);
    position: relative;
    z-index: 103;
    background-color: transparent;
    pointer-events: auto;
    cursor: pointer;
}

.nav-link:active {
    background: rgba(232, 180, 168, 0.2);
    transform: translateX(4px);
}

/* Mobile Hero Section */
.hero {
    padding: 2.5rem 0;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 0 var(--mobile-container-padding);
}

.hero-headline {
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: clamp(0.875rem, 2.5vw, 0.95rem);
    max-width: 100%;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* Mobile Buttons */
.btn {
    width: 100%;
    padding: 1rem 1.5rem;
    min-height: var(--mobile-touch-target);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(232, 180, 168, 0.3);
}

/* Mobile Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.product-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-info {
    padding: 1.25rem;
}

.product-name {
    font-size: clamp(1.15rem, 3vw, 1.35rem);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: clamp(1.15rem, 3vw, 1.35rem);
    margin-bottom: 1rem;
}

/* Mobile Sections */
.products, .hampers, .coming-soon {
    padding: var(--mobile-section-spacing) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 0.75rem;
    padding: 0 var(--mobile-container-padding);
}

.section-subtitle {
    text-align: center;
    padding: 0 var(--mobile-container-padding);
    margin-bottom: 1.5rem;
}

/* Mobile Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 16px; /* Prevents iOS zoom */
    min-height: var(--mobile-touch-target);
    border-radius: 12px;
    -webkit-appearance: none;
    appearance: none;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Mobile Cart & Checkout */
.cart-content,
.checkout-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
}

.cart-item-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-details {
    text-align: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.75rem 0;
}

.quantity-btn {
    width: var(--mobile-touch-target);
    height: var(--mobile-touch-target);
    min-width: var(--mobile-touch-target);
    min-height: var(--mobile-touch-target);
    font-size: 1.25rem;
}

/* Mobile Footer */
.footer {
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    padding: 0.75rem 1.25rem;
    min-height: var(--mobile-touch-target);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   TABLET STYLES (768px and up)
   ============================================ */
@media (min-width: 768px) {
    :root {
        --section-spacing: 3rem;
        --container-padding: 1.5rem;
    }
    
    .container {
        max-width: 1200px;
        padding: 0 var(--container-padding);
    }
    
    /* Hide mobile menu toggle, show desktop nav */
    .menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0;
        overflow: visible;
        gap: 1.5rem;
    }
    
    .nav-menu li {
        width: auto;
        border: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        min-height: auto;
        font-size: 0.95rem;
    }
    
    .nav-link::after {
        display: block;
    }
    
    /* Desktop Hero */
    .hero {
        padding: 4rem 0;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .btn {
        width: auto;
        min-width: 200px;
    }
    
    /* Desktop Product Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Desktop Footer */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
    
    .social-links {
        flex-direction: row;
    }
}

/* ============================================
   DESKTOP STYLES (1024px and up)
   ============================================ */
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .cart-content,
    .checkout-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* ============================================
   SMALL MOBILE OPTIMIZATIONS (480px and below)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --container-padding: 0.875rem;
        --section-spacing: 2rem;
    }
    
    html {
        font-size: 15px; /* Slightly smaller base font for very small screens */
    }
    
    .container {
        padding: 0 0.875rem;
    }
    
    .header {
        padding: 0.875rem 0;
    }
    
    .navbar {
        gap: 0.75rem;
        position: relative;
    }
    
    .menu-toggle {
        display: flex !important;
        z-index: 102;
        position: relative;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .logo img {
        max-height: 40px;
        max-width: 140px;
    }
    
    .menu-toggle span {
        width: 24px;
        height: 2.5px;
    }
    
    .nav-menu {
        width: 90%;
        max-width: 300px;
        padding: 4.5rem 1.25rem 1.5rem;
    }
    
    
    .nav-link {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        min-height: 48px; /* Ensure touch target size */
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-headline {
        font-size: 1.75rem;
        line-height: 1.2;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
        padding: 0 0.5rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.4rem;
        padding: 0 0.5rem;
    }
    
    /* Optimize spacing for small screens */
    .products-grid {
        gap: 1.25rem;
    }
    
    .product-card {
        margin-bottom: 0;
    }
    
    /* Better button sizing for small screens */
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
        padding: 0 0.75rem;
    }
    
    .coming-soon-image img {
        height: 250px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1.25rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cart-item {
        padding: 1rem;
        gap: 0.875rem;
    }
    
    .cart-item-image {
        height: 180px;
        max-width: 250px;
    }
    
    .cart-item-name {
        font-size: 1.15rem;
    }
    
    .cart-item-description {
        font-size: 0.85rem;
    }
    
    .cart-item-price {
        font-size: 1.25rem;
    }
    
    .cart-summary,
    .checkout-summary {
        padding: 1.25rem;
    }
    
    .summary-row {
        font-size: 0.95rem;
        padding: 0.625rem 0;
    }
    
    .summary-total {
        font-size: 1.35rem;
    }
    
    .checkout-form-section {
        padding: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 16px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .checkout-item-image {
        width: 80px;
        height: 80px;
    }
    
    .checkout-item-info h4 {
        font-size: 1rem;
    }
    
    .checkout-item-info p {
        font-size: 0.85rem;
    }
    
    .checkout-item-price {
        font-size: 1.1rem;
    }
    
    #paystack-button {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .paystack-payment-section {
        padding: 1.25rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .about-image-wrapper {
        padding: 1rem;
        max-width: 100%;
    }
    
    .about-paragraph {
        font-size: 0.95rem;
    }
    
    .hampers-lead,
    .hampers-description,
    .coming-soon-text {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .cart-link {
        font-size: 0.9rem;
        padding: 0.625rem 0.875rem;
    }
    
    .cart-icon {
        font-size: 1rem;
    }
    
    .cart-badge {
        font-size: 0.65rem;
        min-width: 18px;
        height: 18px;
        top: -6px;
        right: -6px;
    }
    
    .cart-notification {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        top: 70px;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   Additional Page Styles
   ============================================ */

.page-header {
    background: linear-gradient(135deg, rgba(232, 180, 168, 0.95) 0%, rgba(244, 212, 196, 0.9) 50%, rgba(250, 240, 235, 0.9) 100%);
    background-size: 200% 200%;
    animation: gradient 8s ease infinite;
    padding: clamp(2rem, 6vw, 4rem) 0 clamp(1.5rem, 5vw, 3rem);
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(1.75rem, 6vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.contact-form {
    max-width: 600px;
    margin: clamp(1.5rem, 5vw, 3rem) auto;
    padding: clamp(1.25rem, 4vw, 2rem);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--beige);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--beige);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--background);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-gold-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background-color: rgba(255, 250, 248, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(232, 180, 168, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(232, 180, 168, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(232, 180, 168, 0.25);
    border-color: rgba(232, 180, 168, 0.5);
}

.contact-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--rose-gold-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--black);
}

/* ============================================
   About Page Styles
   ============================================ */

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
    margin-top: 2rem;
}

.about-image-wrapper {
    position: relative;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(232, 180, 168, 0.08) 0%, rgba(244, 237, 224, 0.08) 100%);
    border-radius: 30px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(135deg, var(--rose-gold-lighter), var(--beige), var(--rose-gold-lighter));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
}

.founder-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1s ease-out;
    display: block;
    position: relative;
    z-index: 1;
    filter: brightness(1.03) contrast(1.06) saturate(1.12);
    object-fit: cover;
}

.founder-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    filter: brightness(1.06) contrast(1.09) saturate(1.18);
}

.about-text {
    animation: fadeInUp 1.2s ease-out;
}

.about-paragraph {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.founder-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.about-paragraph.founder-name {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.about-section {
    padding-bottom: 4rem;
}

.about-section .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: start;
        margin-top: 3rem;
    }

    .about-image-wrapper {
        position: sticky;
        top: 100px;
        padding: 2rem;
    }
}

/* ============================================
   Cart & Checkout Styles
   ============================================ */

.cart-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    background-color: rgba(255, 250, 248, 0.98);
    border-radius: 15px;
    border: 1px solid rgba(232, 180, 168, 0.3);
    box-shadow: 0 2px 8px rgba(232, 180, 168, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideUp 0.5s ease-out backwards;
}

.cart-item:nth-child(1) {
    animation-delay: 0.1s;
}

.cart-item:nth-child(2) {
    animation-delay: 0.2s;
}

.cart-item-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    margin: 0 auto;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

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

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.cart-item-description {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(232, 180, 168, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
}

.quantity-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--rose-gold-dark);
    cursor: pointer;
    width: 30px;
    height: 30px;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.quantity-btn:hover {
    background-color: var(--rose-gold-light);
    color: var(--black);
    transform: scale(1.2) rotate(90deg);
}

.quantity-btn:active {
    transform: scale(1.1) rotate(180deg);
}

.quantity {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--black);
    min-width: 30px;
    text-align: center;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.remove-btn {
    background-color: transparent;
    border: 1px solid rgba(232, 180, 168, 0.4);
    color: var(--rose-gold-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: stretch;
    width: 100%;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(232, 180, 168, 0.2);
}

.remove-btn:hover {
    background-color: var(--rose-gold-light);
    border-color: var(--rose-gold-dark);
    color: var(--black);
}

.cart-summary {
    background-color: rgba(255, 250, 248, 0.98);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 180, 168, 0.3);
    box-shadow: 0 4px 15px rgba(232, 180, 168, 0.15);
    position: relative;
    height: fit-content;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-medium);
    font-size: 1rem;
    border-bottom: 1px solid rgba(232, 180, 168, 0.2);
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-total {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(232, 180, 168, 0.3);
}

.checkout-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.checkout-form-section {
    background-color: rgba(255, 250, 248, 0.98);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 180, 168, 0.3);
    box-shadow: 0 4px 15px rgba(232, 180, 168, 0.15);
}

.checkout-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.checkout-summary {
    background-color: rgba(255, 250, 248, 0.98);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 180, 168, 0.3);
    box-shadow: 0 4px 15px rgba(232, 180, 168, 0.15);
    position: relative;
    height: fit-content;
}

@media (hover: hover) {
    .cart-item:hover {
        box-shadow: 0 8px 25px rgba(232, 180, 168, 0.3);
        border-color: rgba(232, 180, 168, 0.6);
        transform: translateX(5px) scale(1.02);
    }
}

@media (min-width: 768px) {
    .cart-item {
        flex-direction: row;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .cart-item-image {
        width: 120px;
        height: 120px;
        max-width: none;
        margin: 0;
    }

    .cart-item-details {
        text-align: left;
    }

    .cart-item-controls {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .remove-btn {
        align-self: flex-start;
        width: auto;
    }

    .checkout-form-section {
        padding: 2.5rem;
    }

    .cart-summary,
    .checkout-summary {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .cart-content,
    .checkout-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }

    .cart-summary,
    .checkout-summary {
        position: sticky;
        top: 120px;
    }
}

.checkout-items {
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(232, 180, 168, 0.2);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.checkout-item-info {
    flex-grow: 1;
}

.checkout-item-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.checkout-item-info p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.25rem;
}

.checkout-item-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-top: 0.5rem;
}

.summary-divider {
    height: 1px;
    background: rgba(232, 180, 168, 0.3);
    margin: 1.5rem 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(232, 180, 168, 0.3);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rose-gold-dark);
    box-shadow: 0 0 0 4px rgba(232, 180, 168, 0.2), 0 5px 15px rgba(232, 180, 168, 0.1);
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

/* Paystack Payment Section */
.paystack-payment-section {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(232, 180, 168, 0.1) 0%, rgba(244, 212, 196, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(232, 180, 168, 0.2);
    margin-top: 1rem;
}

#paystack-button {
    background: linear-gradient(135deg, #00B67A 0%, #00A86B 100%);
    color: white;
    font-weight: 600;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 184, 122, 0.3);
    transition: all 0.3s ease;
}

#paystack-button:hover {
    background: linear-gradient(135deg, #00A86B 0%, #00995C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 122, 0.4);
}

#paystack-button:active {
    transform: translateY(0);
}

.paystack-security-badges {
    padding-top: 1rem;
    border-top: 1px solid rgba(232, 180, 168, 0.2);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold-dark));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(232, 180, 168, 0.4);
    z-index: 1000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-body);
    font-weight: 500;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Empty Cart */
.empty-cart {
    padding: 2rem;
    text-align: center;
}

/* Cart Items List */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Checkout Button Disabled State */
.checkout-btn:disabled,
.checkout-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Enhanced Cart Item Styling */
.cart-item {
    position: relative;
}

.cart-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 180, 168, 0.3), transparent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================
   Authentication Modal Styles
   ============================================ */

.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-modal.active {
    display: flex;
    opacity: 1;
}

.auth-modal-content {
    background: linear-gradient(135deg, rgba(255, 250, 248, 0.98) 0%, rgba(250, 240, 235, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: scaleIn 0.3s ease-out;
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-medium);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.auth-modal-close:hover {
    background: rgba(232, 180, 168, 0.2);
    color: var(--black);
    transform: rotate(90deg);
}

.auth-modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-modal-subtitle {
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(232, 180, 168, 0.2);
}

.auth-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.auth-tab:hover {
    color: var(--black);
    background: rgba(232, 180, 168, 0.1);
}

.auth-tab.active {
    color: var(--black);
    border-bottom-color: var(--rose-gold-dark);
    font-weight: 600;
}

.auth-form {
    margin-top: 1rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    font-weight: 500;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(232, 180, 168, 0.3);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--rose-gold-dark);
    box-shadow: 0 0 0 4px rgba(232, 180, 168, 0.2);
    background-color: rgba(255, 255, 255, 1);
}

.auth-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.auth-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Mobile styles for auth modal */
@media (max-width: 768px) {
    .auth-modal-content {
        padding: 1.5rem;
        max-width: 100%;
        margin: 1rem;
    }
    
    .auth-modal-title {
        font-size: 1.5rem;
    }
    
    .auth-modal-subtitle {
        font-size: 0.9rem;
    }
    
    .auth-tab {
        font-size: 0.9rem;
        padding: 0.625rem 0.75rem;
    }
}

/* Prevent “stuck hover” layout shifts on touch devices */
@media (hover: none) {
    .logo:hover,
    .logo a:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-product:hover,
    .product-card:hover,
    .coming-soon-image:hover,
    .contact-card:hover,
    .social-link:hover,
    .founder-image:hover,
    .quantity-btn:hover,
    #paystack-button:hover {
        transform: none;
    }

    .product-card:hover .product-image img,
    .coming-soon-image:hover img {
        transform: none;
    }

    .product-card:hover .product-price {
        transform: none;
    }

    .hero-headline:hover {
        animation: none;
    }
}
