:root {
    --sunset-coral: #FF6B58;
    --vibrant-magenta: #D6246E;
    --golden-yellow: #F4B942;
    --sky-blue: #7FCCE6;
    --deep-purple: #8B5FA8;
    --sage-green: #9BC184;
    --burgundy-gold: #A0755C;
    --cream-white: #FFF9F0;
    --warm-charcoal: #3A3A3A;
    --light-gray: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--warm-charcoal);
    background: var(--cream-white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Permanent Marker', cursive;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--sunset-coral) 0%, var(--golden-yellow) 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: var(--cream-white);
    font-size: 24px;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: var(--cream-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--vibrant-magenta);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cart-icon {
    color: var(--cream-white);
    font-size: 24px;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--vibrant-magenta);
    color: var(--cream-white);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream-white);
    font-size: 28px;
    cursor: pointer;
}

.hero-section {
    min-height: 100vh;
    background: radial-gradient(circle at 70% 50%, var(--golden-yellow) 0%, var(--sunset-coral) 100%);
    padding-top: 100px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    min-height: calc(100vh - 100px);
    gap: 40px;
}

.hero-text h1 {
    font-size: 64px;
    color: var(--cream-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 24px;
    color: var(--cream-white);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-illustration {
    width: auto;
    height: 500px;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.15));
}

.btn-primary {
    background: var(--vibrant-magenta);
    color: var(--cream-white);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 36, 110, 0.3);
    margin-right: 15px;
}

.btn-primary:hover {
    background: #B01E5A;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(214, 36, 110, 0.4);
}

.btn-secondary {
    background: var(--golden-yellow);
    color: var(--warm-charcoal);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: 3px solid var(--golden-yellow);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--golden-yellow);
}

.about-section {
    background: var(--cream-white);
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    gap: 60px;
}

.about-text h2 {
    font-size: 42px;
    color: var(--golden-yellow);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 18px;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vibrant-magenta);
    font-weight: bold;
    font-size: 24px;
}

.illustration-frame {
    padding: 20px;
    background: var(--cream-white);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(214, 36, 110, 0.12);
    display: inline-block;
}

.about-illustration {
    width: auto;
    height: 350px;
    border-radius: 50%;
    border: 4px solid var(--vibrant-magenta);
    display: block;
}

.products-showcase {
    background: var(--light-gray);
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: var(--golden-yellow);
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--warm-charcoal);
    font-size: 20px;
    margin-bottom: 60px;
    opacity: 0.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--cream-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-image.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-image.hover {
    opacity: 1;
}

.product-info {
    padding: 30px;
    text-align: center;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.product-description {
    color: rgba(58, 58, 58, 0.8);
    font-size: 16px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--vibrant-magenta);
    margin-bottom: 20px;
}

.btn-add-to-cart {
    background: var(--vibrant-magenta);
    color: var(--cream-white);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: #B01E5A;
    transform: scale(1.05);
}

.community-showcase {
    background: var(--cream-white);
    padding: 100px 0;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.community-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.community-card:hover {
    transform: translateY(-10px);
}

.community-card img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.community-quote {
    font-size: 16px;
    font-style: italic;
    color: var(--vibrant-magenta);
    font-weight: 600;
}

.main-footer {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--burgundy-gold) 100%);
    color: var(--cream-white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--golden-yellow);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--cream-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--golden-yellow);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    background: var(--cream-white);
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 32px;
    cursor: pointer;
    color: var(--warm-charcoal);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .community-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 42px;
    }
    .hero-illustration {
        height: 350px;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }
    .community-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    color: var(--warm-charcoal);
    margin-bottom: 8px;
}

.cart-item-info p {
    color: rgba(58, 58, 58, 0.7);
    font-size: 14px;
    margin: 4px 0;
}

.cart-item-price {
    color: var(--vibrant-magenta) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--warm-charcoal);
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    transition: color 0.3s ease;
}

.btn-remove:hover {
    color: var(--vibrant-magenta);
}

.cart-total {
    padding: 20px;
    border-top: 2px solid var(--vibrant-magenta);
    margin-top: 20px;
}

.cart-total p {
    font-size: 24px;
    font-weight: 700;
    color: var(--vibrant-magenta);
    text-align: right;
}

#checkoutBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
}
/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, var(--sunset-coral), var(--golden-yellow));
        flex-direction: column;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        gap: 20px;
    }
    
    .nav-menu.mobile-active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}
