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

:root {
    --dark-blue: #0a1628;
    --dark-blue-light: #1a2a3a;
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --gold-dark: #b8941f;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #b0b0b0;
}

body {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    background-color: var(--dark-blue);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 1.1rem;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav a:hover {
    color: var(--gold);
}

.nav a:hover::after {
    width: 100%;
}

/* Cart Link in Navigation */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-icon {
    font-size: 1.5rem;
}

.cart-count {
    background: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    min-width: 20px;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    position: absolute;
    top: -8px;
    right: -8px;
    line-height: 1;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Banner Section */
.banner-section {
    margin-top: 80px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 3;
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
    pointer-events: none;
    /* Ensure video covers entire banner area */
    min-width: 100%;
    min-height: 100%;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.5) 100%);
    z-index: 2;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    padding: 20px;
}

.banner-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    letter-spacing: 1px;
    text-transform: none;
}

.banner-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
    font-style: italic;
    opacity: 0.95;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.banner-nav:hover {
    background: rgba(212, 175, 55, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
    left: 30px;
}

.banner-nav.next {
    right: 30px;
}

.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--gold);
    border-color: var(--gold-light);
    transform: scale(1.2);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 50px;
    letter-spacing: 1.5px;
    font-weight: 400;
    font-style: italic;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: rgba(26, 42, 58, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: rgba(26, 42, 58, 0.8);
    display: block;
}

.product-image[src=""],
.product-image:not([src]) {
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.9) 0%, rgba(10, 22, 40, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image[src=""]::after,
.product-image:not([src])::after {
    content: "Caviar Tin";
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
}

.product-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.8) 0%, rgba(10, 22, 40, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper::before {
    content: '🖼️';
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    z-index: 0;
}

.product-image-wrapper .product-image {
    position: relative;
    z-index: 1;
}

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

.product-info {
    padding: 25px;
}

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.product-price-container {
    margin-bottom: 15px;
}

.price-per-gram {
    font-size: 1.3rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.gram-selector-container {
    margin: 12px 0;
}

.gram-label {
    display: block;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.gram-selector {
    width: 100%;
    padding: 10px 12px;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.gram-selector:hover {
    border-color: var(--gold);
    background-color: rgba(10, 22, 40, 0.95);
}

.gram-selector:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.gram-selector option {
    background: var(--dark-blue);
    color: var(--text-light);
    padding: 10px;
}

.total-price {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 12px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
    padding-top: 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.product-origin {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 10px;
}

.product-grade {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    border-radius: 20px;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.2);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.modal-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

.modal-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.detail-label {
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 1px;
}

.detail-value {
    color: var(--text-light);
    font-weight: 400;
}

.detail-value.price {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-gram-selector-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.modal-gram-selector {
    width: 100%;
    max-width: 300px;
}

.total-price-modal {
    font-size: 1.8rem !important;
    color: var(--gold) !important;
    font-weight: 700 !important;
}

.modal-description {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-blue);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-gray);
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.2rem;
    }

    .banner-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .banner-nav.prev {
        left: 10px;
    }

    .banner-nav.next {
        right: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .modal-body {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .modal-info h2 {
        font-size: 2rem;
    }

    .nav {
        gap: 15px;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner-section {
        height: 400px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-blue-light) 0%, var(--dark-blue) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    max-width: 800px;
}

.about-story {
    margin-top: 30px;
}

.story-intro {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 25px;
    font-style: italic;
}

.about-story p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 2.2;
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: justify;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.story-signature {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 30px;
    text-align: right;
    font-style: italic;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.family-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.info-item strong {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-item p {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 400;
}

.contact-form {
    background: rgba(26, 42, 58, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    background: rgba(10, 22, 40, 0.95);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-blue);
    color: var(--text-light);
}

.form-message {
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #81c784;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #ef5350;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-top: 40px;
    }
}

/* Cart Section */
.cart-section {
    padding: 100px 0;
    min-height: 60vh;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 15px;
    padding: 12px;
    background: rgba(26, 42, 58, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(26, 42, 58, 0.7);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin: 0;
}

.cart-item-info {
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.cart-item-origin {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-style: italic;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-total {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
}

.cart-item-remove {
    background: transparent;
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #ef5350;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.cart-item-remove:hover {
    background: rgba(244, 67, 54, 0.2);
    border-color: #ef5350;
}

.cart-summary {
    padding: 0;
    background: transparent;
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 968px) {
    .cart-summary {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.cart-total {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 1.5rem;
    padding: 30px;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    font-family: 'Cinzel', serif;
}

.total-label {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
}

.total-amount {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 600;
}

.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.empty-cart-message p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(26, 42, 58, 0.95);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 20px 30px;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    z-index: 2000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }
    
    .cart-item-price {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .cart-summary {
        align-items: stretch;
    }
    
    .cart-total {
        justify-content: space-between;
        width: 100%;
    }
    
    .cart-notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .cart-notification.show {
        transform: translateY(0);
    }
}

/* Products Search and Filters */
.products-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(26, 42, 58, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.search-container {
    position: relative;
    max-width: 500px;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--gold);
    background: rgba(10, 22, 40, 0.95);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    pointer-events: none;
}

.filter-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-select {
    padding: 12px 20px;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    border-color: var(--gold);
}

.btn-filter-clear {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter-clear:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

/* Wishlist Button */
.product-image-wrapper {
    position: relative;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 42, 58, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.wishlist-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-blue);
}

.wishlist-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.wishlist-btn.active .wishlist-icon {
    content: '♥';
    color: var(--dark-blue);
}

/* Cart Improvements */
.discount-section {
    padding: 35px;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.discount-section:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.discount-section h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 12px;
}

.discount-input-container {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.discount-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(10, 22, 40, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.discount-input::placeholder {
    color: rgba(224, 224, 224, 0.5);
    font-style: italic;
}

.discount-input:focus {
    border-color: var(--gold);
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-apply-discount {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-blue);
    border: none;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-apply-discount:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-apply-discount:active {
    transform: translateY(0);
}

.discount-message {
    margin-top: 12px;
    font-size: 0.9rem;
    font-family: 'Playfair Display', serif;
    padding: 10px 15px;
    border-radius: 6px;
    font-style: italic;
    min-height: 20px;
}

.discount-message.success {
    color: #a5d6a7;
    background: rgba(165, 214, 167, 0.1);
    border: 1px solid rgba(165, 214, 167, 0.3);
}

.discount-message.error {
    color: #ef9a9a;
    background: rgba(239, 154, 154, 0.1);
    border: 1px solid rgba(239, 154, 154, 0.3);
}

.shipping-section {
    padding: 35px;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.shipping-section:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.shipping-label {
    display: block;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 12px;
}

.shipping-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 22, 40, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.shipping-select:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.shipping-select:focus {
    border-color: var(--gold);
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.cart-totals-breakdown {
    grid-column: 1 / -1;
    padding: 35px;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.6) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.cart-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.cart-total-line:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.cart-total-line:last-child {
    border-bottom: none;
}

.cart-total-main {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.4);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.cart-total-main .total-label {
    font-size: 1.3rem;
}

.cart-total-main .total-amount {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
}

.discount-amount {
    color: #a5d6a7;
    font-weight: 500;
}

.cart-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

@media (max-width: 640px) {
    .cart-actions {
        grid-template-columns: 1fr;
    }
}

#checkoutBtn {
    grid-column: 1 / -1;
    order: -1;
}

#saveForLaterBtn {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
}

#saveForLaterBtn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

#clearCartBtn {
    transition: all 0.3s ease;
}

#clearCartBtn:hover {
    transform: translateY(-2px);
}

/* Recipe Print and Share */
.recipe-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.recipe-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.recipe-print-btn,
.recipe-share-btn {
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recipe-print-btn:hover,
.recipe-share-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.recipe-share-dropdown {
    position: relative;
}

.share-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: rgba(26, 42, 58, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.recipe-share-dropdown:hover .share-menu,
.share-menu:hover {
    display: flex;
}

.share-link {
    padding: 10px 15px;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, rgba(26, 42, 58, 0.5) 25%, rgba(26, 42, 58, 0.8) 50%, rgba(26, 42, 58, 0.5) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

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

.product-card.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Smooth Animations */
.product-card {
    animation: fadeInUp 0.6s ease;
}

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

/* Cart Success Modal */
.cart-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-success-modal.active {
    opacity: 1;
    visibility: visible;
}

.cart-success-content {
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.98) 0%, rgba(10, 22, 40, 0.98) 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-success-modal.active .cart-success-content {
    transform: scale(1) translateY(0);
}

.cart-success-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease 0.2s both;
}

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

.cart-success-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cart-success-message {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cart-success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-continue-shopping,
.btn-go-to-checkout {
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
    min-width: 180px;
}

.btn-continue-shopping {
    background: transparent;
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--gold);
}

.btn-continue-shopping:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-go-to-checkout {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: var(--gold);
    color: var(--dark-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-go-to-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 640px) {
    .cart-success-content {
        padding: 40px 30px;
    }
    
    .cart-success-actions {
        flex-direction: column;
    }
    
    .btn-continue-shopping,
    .btn-go-to-checkout {
        width: 100%;
    }
}

/* Enhanced Toast Notifications */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.98) 0%, rgba(10, 22, 40, 0.98) 100%);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 20px 30px;
    border-radius: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    z-index: 2000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    min-width: 300px;
}

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

.cart-notification::before {
    content: '✓';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    font-weight: bold;
    vertical-align: middle;
}

/* Product Card Hidden State */
.product-card.hidden {
    display: none;
}

@media (max-width: 768px) {
    .products-controls {
        padding: 20px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select,
    .btn-filter-clear {
        width: 100%;
    }
    
    .recipe-header-actions {
        flex-direction: column;
    }
    
    .recipe-actions {
        width: 100%;
    }
    
    .recipe-print-btn,
    .recipe-share-btn {
        flex: 1;
    }
    
    .cart-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}

/* Recipes Section */
.recipes-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.recipe-card {
    background: rgba(26, 42, 58, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.recipe-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.recipe-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.recipe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-image {
    transform: scale(1.05);
}

.recipe-content {
    padding: 30px;
}

.recipe-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.recipe-description {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.6;
}

.recipe-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.recipe-time,
.recipe-servings {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.recipe-ingredients,
.recipe-process {
    background: rgba(10, 22, 40, 0.4);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.ingredients-title,
.process-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredients-list li {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.ingredients-list li::before {
    content: '•';
    color: var(--gold);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 2px;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.process-steps li {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    line-height: 1.8;
    counter-increment: step-counter;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .recipes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recipe-image-wrapper {
        height: 250px;
    }
    
    .recipe-content {
        padding: 20px;
    }
    
    .recipe-title {
        font-size: 1.5rem;
    }
}

/* Checkout Section */
.checkout-section {
    padding: 100px 0;
    min-height: 80vh;
    display: none;
}

.checkout-section.active {
    display: block;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
}

.checkout-items-summary {
    background: rgba(26, 42, 58, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 30px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.checkout-items-summary h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.checkout-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-item-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--gold);
}

.checkout-item-info {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.checkout-item-price {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    align-self: flex-end;
}

.checkout-total-summary {
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding-top: 20px;
    margin-top: 20px;
}

.checkout-total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-light);
}

.checkout-total-amount {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

.checkout-form-container {
    background: rgba(26, 42, 58, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 30px;
}

.checkout-form-container h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(10, 22, 40, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-option:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(10, 22, 40, 0.7);
}

.delivery-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold);
}

.delivery-option input[type="radio"]:checked + .delivery-option-content {
    color: var(--gold);
}

.delivery-option:has(input[type="radio"]:checked) {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.delivery-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.delivery-option-content strong {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
}

.delivery-option-content small {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
}

.payment-form {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.payment-form h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pickup-info {
    margin-top: 25px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.pickup-info h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.pickup-details p {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.pickup-details p:first-of-type {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
}

#placeOrderBtn {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 15px;
}

#backToCartBtn {
    width: 100%;
}

@media (max-width: 968px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-items-summary {
        position: static;
        max-height: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark-blue);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.chatbot-toggle.hidden {
    display: none;
}

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    height: 600px;
    background: rgba(26, 42, 58, 0.98);
    border: 2px solid var(--gold);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.chatbot-header-content p {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.chatbot-close:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(10, 22, 40, 0.5);
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

.chatbot-message {
    display: flex;
    gap: 10px;
    animation: fadeInMessage 0.3s ease;
}

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

.chatbot-message.user-message {
    justify-content: flex-end;
}

.chatbot-message.bot-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.user-message .message-content {
    background: var(--gold);
    color: var(--dark-blue);
    border-bottom-right-radius: 4px;
}

.bot-message .message-content {
    background: rgba(212, 175, 55, 0.15);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom-left-radius: 4px;
}

.message-content p {
    margin: 0;
}

.chatbot-input-container {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(10, 22, 40, 0.5);
}

.chatbot-input {
    flex: 1;
    background: rgba(26, 42, 58, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-input:focus {
    border-color: var(--gold);
    background: rgba(26, 42, 58, 0.95);
}

.chatbot-input::placeholder {
    color: var(--text-gray);
    font-style: italic;
}

.chatbot-send {
    background: var(--gold);
    color: var(--dark-blue);
    border: none;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chatbot-send:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

.chatbot-send:active {
    transform: scale(0.95);
}

.chatbot-send svg {
    stroke: var(--dark-blue);
}

@media (max-width: 768px) {
    .chatbot-container {
        width: calc(100% - 20px);
        height: calc(100vh - 100px);
        right: 10px;
        bottom: 10px;
    }
    
    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

