/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #FFE5EC;
    --accent-pink: #FFB3C6;
    --burgundy: #8B2E5C;
    --text-burgundy: #6B1B47;
    --white: #FFFFFF;
    --cream: #FFF8F3;
    --light-pink: #FFF0F5;
    --shadow: rgba(139, 46, 92, 0.08);
    --shadow-hover: rgba(139, 46, 92, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-burgundy);
    background: var(--cream);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Decorative Elements */
.decorative-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2n) {
    animation-duration: 8s;
    animation-delay: 1s;
}

.floating-element:nth-child(3n) {
    animation-duration: 7s;
    animation-delay: 2s;
}

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

/* Header */
.header {
    background: var(--white);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
}

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

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--burgundy);
    letter-spacing: 1px;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-burgundy);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.cart-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    border: 1.5px solid var(--burgundy);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    color: var(--burgundy);
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    background: var(--burgundy);
    color: var(--white);
}

.cart-count {
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.cart-btn:hover .cart-count {
    background: var(--white);
    color: var(--burgundy);
}

.cart-price {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    background: #ffecee;
    padding: 8rem 0 10rem;
    position: relative;
    overflow: hidden;
}

.hero-decoration-right {
    position: absolute;
    right: 15%;
    top: 2%;
    width: 550px;
    height: 650px;
    z-index: 1;
    opacity: 0.3;
    animation: floatSlow 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-decoration-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(139, 46, 92, 0.1));
    mix-blend-mode: multiply;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-burgundy);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-btn {
    background: var(--burgundy);
    color: var(--white);
    border: none;
    padding: 1.1rem 3.5rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 46, 92, 0.25);
    animation: fadeInUp 1s ease 0.4s backwards;
    margin-bottom: 2rem;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 46, 92, 0.35);
}

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

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, var(--light-pink) 0%, var(--cream) 30%, transparent 70%);
    z-index: 2;
}

.wave-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('wave-divider.png');
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: auto 100%;
}

.wave-divider-img {
    display: none;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--burgundy);
    margin-bottom: 4rem;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--burgundy);
    margin: 1.5rem auto 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 2rem 0;
}

.product-card {
    background: var(--white);
    border-radius: 0;
    border: 1px solid rgba(139, 46, 92, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--burgundy);
    box-shadow: 0 15px 40px var(--shadow-hover);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-pink);
}

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

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

.sold-out-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(139, 46, 92, 0.9);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 2rem;
    text-align: center;
    background: var(--white);
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-burgundy);
    margin-bottom: 1rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.add-to-cart-btn {
    width: 100%;
    background: transparent;
    color: var(--burgundy);
    border: 1.5px solid var(--burgundy);
    padding: 0.9rem;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.add-to-cart-btn:hover:not(:disabled) {
    background: var(--burgundy);
    color: var(--white);
}

.add-to-cart-btn:disabled {
    border-color: #ccc;
    color: #999;
    cursor: not-allowed;
}

.add-to-cart-btn.btn-success {
    background: #28a745;
    border-color: #28a745;
    color: var(--white);
}

/* Featured Section */
.featured-section {
    padding: 6rem 0;
    background: var(--light-pink);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.featured-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(139, 46, 92, 0.1);
}

.featured-card:hover {
    box-shadow: 0 20px 50px var(--shadow-hover);
    transform: translateY(-5px);
}

.featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-info {
    padding: 2.5rem;
}

.featured-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-burgundy);
    margin-bottom: 1rem;
}

.featured-badge svg {
    width: 20px;
    height: 20px;
}

.featured-description {
    color: var(--text-burgundy);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 27, 71, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 0;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    border: 1.5px solid var(--burgundy);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--burgundy);
}

.modal-close:hover {
    background: var(--burgundy);
    color: var(--white);
}

.modal-body {
    display: flex;
    gap: 3rem;
    padding: 3rem;
}

/* Modal Slider */
.modal-image-container {
    flex: 1.2;
    position: relative;
}

.modal-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--light-pink);
}

.modal-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-slider-image.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid var(--burgundy);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    color: var(--burgundy);
}

.slider-btn:hover {
    background: var(--burgundy);
    color: var(--white);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 46, 92, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--burgundy);
    width: 30px;
    border-radius: 5px;
}

/* Modal Info */
.modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-burgundy);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 2rem;
}

.modal-description {
    color: var(--text-burgundy);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    flex: 1;
    font-size: 1.05rem;
}

.modal-add-btn {
    background: var(--burgundy);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-add-btn:hover:not(:disabled) {
    background: var(--text-burgundy);
    transform: scale(1.02);
}

.modal-add-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.modal-add-btn.btn-success {
    background: #28a745;
}

/* Sticky button container for mobile */
.modal-add-btn-container {
    position: relative;
}

/* Cart Modal */
.cart-modal-content {
    max-width: 700px;
}

.cart-header {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(139, 46, 92, 0.1);
}

.cart-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--text-burgundy);
    font-weight: 600;
}

.cart-body {
    padding: 2rem 2.5rem;
    max-height: 450px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-burgundy);
    font-size: 1.1rem;
    opacity: 0.6;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-pink);
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: var(--primary-pink);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-burgundy);
    margin-bottom: 0.4rem;
}

.cart-item-price {
    color: var(--burgundy);
    font-size: 1rem;
    font-weight: 500;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quantity-btn {
    background: var(--white);
    border: 1.5px solid var(--burgundy);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--burgundy);
    color: var(--white);
}

.quantity {
    min-width: 35px;
    text-align: center;
    font-weight: 600;
    color: var(--text-burgundy);
}

.cart-item-total {
    font-weight: 700;
    color: var(--burgundy);
    min-width: 80px;
    text-align: right;
    font-size: 1.1rem;
}

.remove-btn {
    background: transparent;
    border: none;
    color: var(--burgundy);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.remove-btn:hover {
    opacity: 1;
    transform: scale(1.2);
}

.cart-footer {
    padding: 2rem 2.5rem;
    border-top: 1px solid rgba(139, 46, 92, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.cart-total-price {
    color: var(--burgundy);
    font-size: 2rem;
}

.checkout-btn {
    width: 100%;
    background: var(--burgundy);
    color: var(--white);
    border: none;
    padding: 1.2rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.checkout-btn:hover {
    background: var(--text-burgundy);
}

/* Checkout Modal */
.checkout-modal-content {
    max-width: 800px;
}

.checkout-header {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(139, 46, 92, 0.1);
}

.checkout-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--text-burgundy);
    font-weight: 600;
}

.checkout-body {
    padding: 2.5rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-burgundy);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1.5px solid rgba(139, 46, 92, 0.2);
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

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

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--burgundy);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: var(--burgundy);
}

.terms-link {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

.checkout-summary {
    background: var(--light-pink);
    padding: 2rem;
    margin-top: 1.5rem;
}

.checkout-summary h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-burgundy);
    font-weight: 600;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-burgundy);
    font-size: 0.95rem;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(139, 46, 92, 0.2);
}

.checkout-total span:last-child {
    color: var(--burgundy);
}

.submit-order-btn {
    width: 100%;
    background: var(--burgundy);
    color: var(--white);
    border: none;
    padding: 1.2rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-order-btn:hover {
    background: var(--text-burgundy);
}

/* Success Modal */
.success-modal-content {
    max-width: 550px;
    text-align: center;
}

.success-body {
    padding: 4rem 3rem;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: #28a745;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 2rem;
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--text-burgundy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-body p {
    color: var(--text-burgundy);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.success-btn {
    background: var(--burgundy);
    color: var(--white);
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-btn:hover {
    background: var(--text-burgundy);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-burgundy) 0%, var(--burgundy) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-decoration-right {
        width: 200px;
        height: 200px;
        right: 1%;
        top: 8%;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-decoration-right {
        display: none;
    }
    
    .wave-divider {
        height: 80px;
    }
    
    .modal-body {
        flex-direction: column;
        padding: 2rem 2rem 0;
    }
    
    .modal-slider {
        height: 350px;
    }
    
    .modal-info {
        padding-bottom: 100px;
    }
    
    .modal-add-btn-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem 2rem;
        background: var(--white);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 10;
    }
    
    .modal-add-btn {
        width: 100%;
        padding: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-decoration-right {
        display: none;
    }
    
    .wave-divider {
        height: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .cart-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-pink);
}

::-webkit-scrollbar-thumb {
    background: var(--burgundy);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-burgundy);
}
