:root {
    --gold: #e3b018;
    --purple: #742979;
    --deep-purple: #4b008d;
    --white: #ffffff;
    --font-primary: 'Fredoka', sans-serif;
    --font-brand: 'Pacifico', cursive;
}

/* Reset & Globals */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: #222;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    height: 52px; /* Fixed container height */
    overflow: hidden; /* Prevent overflow */
}

.brand-name {
    font-family: var(--font-brand);
    color: var(--deep-purple);
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.2); /* Increased scale factor */
}

nav {
    display: flex;
    gap: 2rem;
}


nav a {
    color: var(--deep-purple);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover, nav a.active {
    color: var(--deep-purple);
    transform: translateY(-2px);
}

nav a i {
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--deep-purple);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--deep-purple);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img, 
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(116, 41, 121, 0.85),
        rgba(227, 176, 24, 0.75)
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 25%;
    left: 10%;
    max-width: 500px;
    z-index: 2;
    text-align: left;
    animation: slideInLeft 1s ease;
    color: var(--white);
}

.hero-content h1 {
    font-family: var(--font-brand);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: var(--white);
    color: var(--deep-purple);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        top: 20%;
        left: 5%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .slide img, 
    .slide video {
        object-position: center center;
        height: 100vh;
        width: 100vw;
    }
}

/* Portrait mode specific adjustments */
@media (max-width: 768px) and (orientation: portrait) {
    .slide img, 
    .slide video {
        object-position: center;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(116, 41, 121, 0.9),
            rgba(227, 176, 24, 0.8)
        );
    }
}

/* Responsive Navbar */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        background-color: white;
        position: absolute;
        top: 80px;
        right: 5%;
        width: 200px;
        padding: 1rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    nav.show {
        display: flex;
        animation: slideIn 0.3s ease;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .brand-name {
        display: none;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Product Catalog Section */
.catalog {
    padding: 6rem 2rem;
    background-image: url('images/popcorn-bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.95);
    min-height: 100vh;
}

.catalog-title {
    text-align: center;
    font-size: 3.5rem;
    font-family: var(--font-brand);
    color: var(--deep-purple);
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.catalog-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--purple));
    border-radius: 2px;
}

.category-label {
    font-size: 2rem;
    color: var(--purple);
    margin: 3rem 0 2rem;
    padding-left: 2rem;
    position: relative;
    font-family: var(--font-brand);
}

.category-label::before {
    content: '🍿';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1400px;
    padding: 1rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(116, 41, 121, 0.1), 
        rgba(227, 176, 24, 0.1));
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h4 {
    font-size: 1.2rem;
    color: var(--deep-purple);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

.add-to-cart {
    background: linear-gradient(45deg, var(--purple), var(--deep-purple));
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gold), var(--purple));
    transition: left 0.3s ease;
    z-index: -1;
}

.add-to-cart:hover::before {
    left: 0;
}

.cart-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--purple), var(--deep-purple));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cart-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .catalog {
        padding: 4rem 1rem;
    }

    .catalog-title {
        font-size: 2.5rem;
    }

    .category-label {
        font-size: 1.8rem;
        margin: 2rem 0 1.5rem;
    }

    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-card img {
        height: 180px;
    }
}

/* Build A Bowl Section */
.bowl-builder {
    padding: 8rem 2rem;
    background-image: url('images/popcorn-bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    min-height: 100vh;
}

.bowl-builder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1)
    );
    z-index: 1;
}

.bowl-builder form {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.bowl-builder form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(116, 41, 121, 0.1), 
        rgba(227, 176, 24, 0.1)
    );
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bowl-builder form:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.bowl-builder form:hover::before {
    opacity: 1;
}

.bowl-builder .catalog-title {
    position: relative;
    z-index: 2;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 3rem;
}

.bowl-builder .catalog-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--purple));
    border-radius: 2px;
}

.flavour-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.flavour-checkboxes label {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(116, 41, 121, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flavour-checkboxes label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(116, 41, 121, 0.05), 
        rgba(227, 176, 24, 0.05)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flavour-checkboxes label:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.flavour-checkboxes label:hover::before {
    opacity: 1;
}

.bowl-quantity {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 2px solid var(--purple);
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin: 1rem 0 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bowl-builder {
        padding: 4rem 1rem;
    }

    .bowl-builder form {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .flavour-checkboxes {
        grid-template-columns: 1fr;
    }

    .bowl-builder label,
    .bowl-builder p {
        font-size: 1.1rem;
    }

    .bowl-builder select {
        padding: 0.8rem;
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid #4CAF50;
}

.toast.error {
    border-left: 4px solid #f44336;
}

.toast.info {
    border-left: 4px solid var(--gold);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--deep-purple);
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: #4CAF50;
}

.toast.error i {
    color: #f44336;
}

.toast.info i {
    color: var(--gold);
}

/* Quantity Selector */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--purple);
    border-radius: 50px;
    padding: 5px;
    margin: 1rem 0;
    position: relative;
    z-index: 2;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
}

.qty-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 50px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-purple);
    border: none;
    background: transparent;
    margin: 0 8px;
    padding: 0;
    -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:focus {
    outline: none;
}

/* Override for bowl quantity */
.bowl-quantity {
    margin: 1rem 0 2rem;
    justify-content: flex-start;
    width: fit-content;
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f6fb 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '🍿';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: -5rem;
    right: -5rem;
    transform: rotate(15deg);
}

.why-choose-us .catalog-title {
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(116, 41, 121, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(116, 41, 121, 0.05),
        rgba(227, 176, 24, 0.05)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--purple), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
    font-size: 1.5rem;
    color: var(--deep-purple);
    margin-bottom: 1rem;
    font-family: var(--font-brand);
    position: relative;
}

.benefit-card h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--purple));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.benefit-card:hover h4::after {
    width: 80px;
}

.benefit-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--deep-purple);
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 6rem 1rem;
    }

    .benefits-grid {
        gap: 2rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .benefit-icon {
        font-size: 3rem;
    }

    .benefit-card h4 {
        font-size: 1.3rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }
}

/* Animation for cards on scroll */
.benefit-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--purple), var(--deep-purple));
    color: var(--white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.testimonials::before,
.testimonials::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.testimonials::before {
    background: radial-gradient(circle at 0% 0%, rgba(227, 176, 24, 0.15) 0%, transparent 50%);
    top: 0;
    left: 0;
}

.testimonials::after {
    background: radial-gradient(circle at 100% 100%, rgba(116, 41, 121, 0.15) 0%, transparent 50%);
    bottom: 0;
    right: 0;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    font-family: var(--font-brand);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Container */
.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
}

/* Smooth edges */
.testimonial-slider::before,
.testimonial-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
}

.testimonial-slider::before {
    left: 0;
    background: linear-gradient(to right, 
        var(--purple) 0%, 
        rgba(116, 41, 121, 0.8) 50%,
        transparent 100%
    );
}

.testimonial-slider::after {
    right: 0;
    background: linear-gradient(to left, 
        var(--deep-purple) 0%, 
        rgba(75, 0, 141, 0.8) 50%,
        transparent 100%
    );
}

/* Testimonial Cards */
.testimonial {
    flex: 0 0 400px;
    margin: 0 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-family: var(--font-brand);
    color: var(--gold);
    opacity: 0.2;
    z-index: 0;
}

.testimonial:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.testimonials .catalog-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonials .catalog-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--gold);
    font-size: 1.2rem;
    font-family: var(--font-brand);
    margin-bottom: 0.2rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 5));
    }
}

.slide-track {
    display: flex;
    width: calc(400px * 10);
    animation: scroll 50s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        padding: 6rem 0 4rem;
    }

    .testimonials-header h2 {
        font-size: 2.5rem;
    }

    .testimonials-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .testimonial {
        flex: 0 0 300px;
        padding: 2rem;
        margin: 0 1rem;
    }

    .slide-track {
        width: calc(300px * 10);
        animation-duration: 40s;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 5));
        }
    }
}

/* Founder Section */
.founder {
    background: linear-gradient(135deg, #fff5f9 0%, #fff 100%);
    padding: 8rem 2rem;
    color: var(--deep-purple);
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.founder::before,
.founder::after {
    content: '💖';
    position: absolute;
    font-size: 15rem;
    opacity: 0.03;
    pointer-events: none;
}

.founder::before {
    top: -2rem;
    left: -2rem;
    transform: rotate(-15deg);
}

.founder::after {
    bottom: -2rem;
    right: -2rem;
    transform: rotate(15deg);
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.founder-img-wrapper {
    flex: 1;
    max-width: 450px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    /* Add aspect ratio to maintain image proportions */
    aspect-ratio: 3/4;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    /* Remove any transforms that might affect layout */
    transform: none;
    /* Fix for iOS Safari */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

.founder-img img {
    width: 100%;
    height: 100%; /* Change from auto to 100% */
    object-fit: cover; /* Add object-fit property */
    object-position: center; /* Add object-position property */
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(116, 41, 121, 0.15);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.founder-img::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--gold);
    border-radius: 40px;
    transform: translate(15px, 15px);
    transition: all 0.5s ease;
}

.founder-img:hover img {
    transform: translateY(-10px);
}

.founder-img:hover::before {
    transform: translate(10px, 10px);
}

.founder-text {
    flex: 1;
    padding-right: 2rem;
}

.founder-text h2 {
    font-family: var(--font-brand);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--purple), var(--deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.founder-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--purple));
    border-radius: 2px;
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--deep-purple);
    opacity: 0.9;
}

.founder-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--purple), var(--deep-purple));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, var(--gold), var(--purple));
}

/* Responsive Design */
@media (max-width: 992px) {
    .founder-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .founder-text {
        padding-right: 0;
    }

    .founder-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .founder-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .founder {
        padding: 6rem 1.5rem;
    }

    .founder-text h2 {
        font-size: 2.5rem;
    }

    .founder-img {
        max-width: 350px;
        margin: 0 auto;
    }

    .founder-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.site-footer {
    background: linear-gradient(to right, #4b008d, #742979);
    color: var(--white);
    padding: 4rem 1.5rem 2rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }
  
  .footer-logo {
    flex: 1 1 240px;
  }
  
  .footer-logo img {
    max-width: 90px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  }
  
  .footer-logo p {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 1px;
  }
  
  .footer-links,
  .footer-contact {
    flex: 1 1 200px;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.6rem;
  }
  
  .footer-links a,
  .footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover,
  .footer-contact a:hover {
    color: var(--gold);
  }
  
  .footer-contact p {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-contact i {
    color: var(--gold);
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
  }
  
  /* Mobile responsive tweaks */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-logo,
    .footer-links,
    .footer-contact {
      flex: 1 1 100%;
    }
  
    .footer-links ul {
      padding-left: 0;
    }
  }
  
  .payment-info {
    background: rgba(116, 41, 121, 0.05);
    border: 1px solid rgba(116, 41, 121, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.payment-verification label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--deep-purple);
}

.payment-verification input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--purple);
}

#checkout-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#cart-modal {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid #742979;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 300px;
    max-height: 80vh; /* Limit height to 80% of viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
    display: none;
    flex-direction: column;
}

/* Style the scrollbar */
#cart-modal::-webkit-scrollbar {
    width: 8px;
}

#cart-modal::-webkit-scrollbar-track {
    background: rgba(116, 41, 121, 0.1);
    border-radius: 4px;
}

#cart-modal::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 4px;
}

/* Keep checkout button visible */
#checkout-btn {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    background: #e3b018;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    color: #4b008d;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}
