/**
 * TAO Chocolates - Design Luxueux
 * E-boutique de chocolat belge artisanal
 */

/* ===========================================
   RESET & BASE
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #4A3728;
    background-color: #F5F1E8;
    line-height: 1.7;
    font-weight: 400;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #2A1B12;
    font-weight: 500;
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
}

/* ===========================================
   LAYOUT
   =========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #C9A962;
    background-color: #C9A962;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: #A68B4B;
    border-color: #A68B4B;
}

.btn--outline {
    background-color: transparent;
    color: #C9A962;
}

.btn--outline:hover {
    background-color: #C9A962;
    color: #FFFFFF;
}

.btn--white {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #2A1B12;
}

.btn--white:hover {
    background-color: #F5F1E8;
    border-color: #F5F1E8;
}

.btn--full {
    display: block;
    width: 100%;
}

.btn--disabled {
    background-color: #8B7355;
    border-color: #8B7355;
    cursor: not-allowed;
    opacity: 0.8;
}

.btn--disabled:hover {
    background-color: #8B7355;
    border-color: #8B7355;
}

/* ===========================================
   HEADER
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(26, 17, 13, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav__link {
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #C9A962;
    transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
    color: #C9A962;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cart {
    position: relative;
    color: #FFFFFF;
    font-size: 1.1rem;
    padding: 8px;
}

.nav__cart:hover {
    color: #C9A962;
}

.nav__link--disabled,
.nav__cart--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav__link--disabled:hover,
.nav__cart--disabled:hover {
    color: rgba(255, 255, 255, 0.6);
}

.nav__link--disabled::after {
    display: none;
}

.nav__cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #C9A962;
    color: #2A1B12;
    font-size: 0.6rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__toggle {
    display: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav__toggle {
        display: block;
        z-index: 1001;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #2A1B12;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__link {
        font-size: 1rem;
        padding: 15px 0;
    }
}

/* ===========================================
   HERO
   =========================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(26, 17, 13, 0.55), rgba(26, 17, 13, 0.65)), url('https://manuel.swiss/wp-content/uploads/2021/04/Assortiment-artisanal-pralines-truffes-chocolats-suisses-MANUEL-1300.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #F5F1E8, transparent);
}

.hero__content {
    max-width: 700px;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.hero__logo {
    margin: 0 auto 30px auto;
    text-align: center;
}

.hero__logo-img {
    width: 150px;
    height: auto;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero__title {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 3px;
    line-height: 1.2;
    font-weight: 400;
}

.hero__subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #D4B978;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.2rem;
    }
}

/* ===========================================
   SECTION HEADER
   =========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-header .subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #C9A962;
    font-size: 1.1rem;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #C9A962;
}

.divider__icon {
    color: #C9A962;
    font-size: 1rem;
}

.divider--left {
    justify-content: flex-start;
}

.divider--left::before {
    display: none;
}

/* ===========================================
   NOTRE UNIVERS
   =========================================== */
.univers {
    padding: 80px 0;
    background-color: #F5F1E8;
}

.univers__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.univers__image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.univers__image img {
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.univers__image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid #C9A962;
    z-index: -1;
}

.univers__content {
    flex: 1;
    min-width: 300px;
}

.univers__content h2 {
    margin-bottom: 20px;
    color: #2A1B12;
}

.univers__content p {
    color: #5C4A3D;
    line-height: 1.9;
    margin-bottom: 15px;
}

.univers__signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #C9A962;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .univers__grid {
        flex-direction: column;
    }
}

/* ===========================================
   NOS INCONTOURNABLES (Product Cards)
   =========================================== */
.incontournables {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.incontournables__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product-card {
    flex: 0 1 320px;
    background-color: #FFFFFF;
    border: 1px solid #E8E4DC;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: #C9A962;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card__image {
    height: 220px;
    overflow: hidden;
    background-color: #F5F1E8;
}

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

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #C9A962;
    color: #FFFFFF;
    padding: 5px 12px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card__content {
    padding: 25px;
    text-align: center;
}

.product-card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2A1B12;
}

.product-card__desc {
    font-size: 0.9rem;
    color: #7A6A5A;
    margin-bottom: 15px;
    min-height: 45px;
}

.product-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2A1B12;
    margin-bottom: 15px;
}

.product-card__btn {
    padding: 12px 28px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #C9A962;
    background-color: transparent;
    color: #C9A962;
    transition: all 0.3s ease;
    cursor: pointer;
    display: none;
}

.link_disabled {
    pointer-events: none !important;
    cursor: disabled;
}

.product-card__btn:hover {
    background-color: #C9A962;
    color: #FFFFFF;
}

/* ===========================================
   NOS COLLECTIONS (Dark Section)
   =========================================== */
.collections {
    padding: 80px 0;
    background: linear-gradient(135deg, #3D2B1F 0%, #2A1B12 100%);
}

.collections .section-header h2 {
    color: #FFFFFF;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-tab {
    padding: 10px 24px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.filter-tab:hover,
.filter-tab.active {
    border-color: #C9A962;
    background-color: #C9A962;
    color: #2A1B12;
}

.collections__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.collection-item {
    flex: 0 1 calc(25% - 20px);
    min-width: 200px;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover img {
    transform: scale(1.1);
}

.collection-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 17, 13, 0.85), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-item:hover .collection-item__overlay {
    opacity: 1;
}

.collection-item__title {
    color: #FFFFFF;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: 40px;
}

@media (max-width: 992px) {
    .collection-item {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .collection-item {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

/* ===========================================
   L'ATELIER
   =========================================== */
.atelier {
    padding: 80px 0;
    background-color: #EBE5D8;
}

.atelier__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.atelier__image {
    flex: 1;
    min-width: 300px;
}

.atelier__image img {
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.atelier__content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.atelier__content h2 {
    color: #C9A962;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.atelier__content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2A1B12;
}

.atelier__content p {
    color: #5C4A3D;
    line-height: 1.9;
    margin-bottom: 15px;
}

.atelier__link {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #C9A962;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.atelier__link:hover {
    color: #A68B4B;
}

@media (max-width: 768px) {
    .atelier__grid {
        flex-direction: column;
    }
}

/* ===========================================
   NOS CREATIONS (5 types)
   =========================================== */
.creations {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.creations__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.creation-card {
    flex: 0 1 calc(20% - 20px);
    min-width: 180px;
    max-width: 220px;
    background-color: #FFFFFF;
    border: 1px solid #E8E4DC;
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.creation-card:hover {
    border-color: #C9A962;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.creation-card a {
    display: block;
}

.creation-card__image {
    height: 140px;
    overflow: hidden;
    background-color: #F5F1E8;
}

.creation-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.creation-card:hover .creation-card__image img {
    transform: scale(1.08);
}

.creation-card__content {
    padding: 15px;
}

.creation-card__content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #2A1B12;
}

.creation-card__content p {
    font-size: 0.8rem;
    color: #7A6A5A;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .creation-card {
        flex: 0 1 calc(33.333% - 20px);
    }
}

@media (max-width: 576px) {
    .creation-card {
        flex: 0 1 calc(50% - 10px);
        min-width: 140px;
    }
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact-section {
    padding: 80px 0;
    background-color: #F5F1E8;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-box {
    flex: 1;
    min-width: 300px;
    background-color: #FFFFFF;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2A1B12;
}

.contact-intro {
    color: #7A6A5A;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-info-box {
    flex: 1;
    min-width: 300px;
    background-color: #2A1B12;
    padding: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #C9A962;
}

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

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: #C9A962;
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
}

.contact-item div {
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-item a {
    color: #D4B978;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===========================================
   FORMS
   =========================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #4A3728;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #DDD;
    background-color: #FFFFFF;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #C9A962;
}

.form-control::placeholder {
    color: #999;
}

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

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background-color: #1A110D;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__col {
    flex: 1;
    min-width: 200px;
}

.footer__col:first-child {
    flex: 1.5;
    min-width: 250px;
}

.footer__col h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer__col p,
.footer__col a {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer__col a:hover {
    color: #C9A962;
}

.footer__logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #FFFFFF;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.footer__tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #C9A962;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    border-color: #C9A962;
    background-color: #C9A962;
    color: #2A1B12;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    font-style: italic;
}

.footer__contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer__contact-item i {
    color: #C9A962;
    width: 18px;
    margin-top: 3px;
}

.footer__bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer__bottom a:hover {
    color: #C9A962;
}

@media (max-width: 992px) {
    .footer__grid {
        gap: 30px;
    }

    .footer__col {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .footer__col {
        flex: 0 1 100%;
    }
}

/* ===========================================
   CART
   =========================================== */
.cart-page {
    padding: 120px 0 80px 0;
    background-color: #F5F1E8;
    min-height: 100vh;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid #C9A962;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #2A1B12;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #EEE;
    vertical-align: middle;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item__image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #EEE;
}

.cart-item__name {
    font-weight: 500;
    color: #2A1B12;
}

.cart-item__variant {
    font-size: 0.85rem;
    color: #7A6A5A;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty__btn {
    width: 32px;
    height: 32px;
    border: 1px solid #DDD;
    background-color: #FFFFFF;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-qty__btn:hover {
    border-color: #C9A962;
    color: #C9A962;
}

.cart-qty__input {
    width: 50px;
    text-align: center;
    padding: 6px;
    border: 1px solid #DDD;
}

.cart-remove {
    color: #999;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.cart-remove:hover {
    color: #C0392B;
}

.cart-summary {
    background-color: #FFFFFF;
    padding: 30px;
    border: 1px solid #EEE;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #EEE;
}

.cart-summary__row:last-of-type {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-summary__total {
    color: #C9A962;
    font-family: 'Playfair Display', serif;
}

/* ===========================================
   CHECKOUT
   =========================================== */
.checkout-page {
    padding: 120px 0 80px 0;
    background-color: #F5F1E8;
    min-height: 100vh;
}

.checkout-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.checkout-grid > div:first-child {
    flex: 1.5;
    min-width: 300px;
}

.checkout-grid > div:last-child {
    flex: 1;
    min-width: 300px;
}

.checkout-section {
    background-color: #FFFFFF;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #EEE;
}

.checkout-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #C9A962;
}

.checkout-summary {
    background-color: #FFFFFF;
    padding: 30px;
    border: 1px solid #EEE;
    position: sticky;
    top: 100px;
}

.pickup-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.pickup-slot {
    flex: 0 1 calc(33.333% - 10px);
    min-width: 140px;
    padding: 15px;
    border: 1px solid #DDD;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.pickup-slot:hover {
    border-color: #C9A962;
}

.pickup-slot.selected {
    border-color: #C9A962;
    background-color: rgba(201, 169, 98, 0.1);
}

.pickup-slot.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #F5F5F5;
}

.pickup-slot__date {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2A1B12;
}

.pickup-slot__time {
    font-size: 0.85rem;
    color: #7A6A5A;
}

@media (max-width: 992px) {
    .checkout-grid > div:first-child,
    .checkout-grid > div:last-child {
        flex: 0 1 100%;
    }
}

/* ===========================================
   PRODUCT PAGE
   =========================================== */
.product-page {
    padding: 120px 0 80px 0;
    background-color: #F5F1E8;
}

.product-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.product-gallery {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.product-gallery__main {
    border: 1px solid #EEE;
    background-color: #FFFFFF;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info__category {
    color: #C9A962;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-info__price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2A1B12;
    margin: 20px 0;
}

.product-info__description {
    line-height: 1.8;
    margin-bottom: 30px;
    color: #5C4A3D;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .product-detail {
        flex-direction: column;
    }

    .product-gallery {
        position: static;
    }
}

/* ===========================================
   FLASH MESSAGES
   =========================================== */
.flash {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-left: 4px solid;
    background-color: #FFFFFF;
}

.flash-success {
    border-color: #4CAF50;
    color: #4CAF50;
}

.flash-error {
    border-color: #C0392B;
    color: #C0392B;
}

.flash-warning {
    border-color: #E67E22;
    color: #E67E22;
}

.flash-info {
    border-color: #C9A962;
    color: #C9A962;
}

/* ===========================================
   ACCOUNT
   =========================================== */
.account-page {
    padding: 120px 0 80px 0;
    background-color: #F5F1E8;
    min-height: 100vh;
}

.account-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 15px;
}

.account-nav a {
    padding: 12px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    color: #4A3728;
}

.account-nav a:hover,
.account-nav a.active {
    color: #C9A962;
    border-color: #C9A962;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background-color: #FFFFFF;
    padding: 20px;
    border: 1px solid #EEE;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.order-status {
    padding: 5px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.status-pending { background-color: #FFF3CD; color: #856404; }
.status-processing { background-color: #CCE5FF; color: #004085; }
.status-ready { background-color: #D4EDDA; color: #155724; }
.status-picked_up { background-color: #28A745; color: #FFFFFF; }
.status-cancelled { background-color: #F8D7DA; color: #721C24; }

/* ===========================================
   PAGE HEADER (Inner pages)
   =========================================== */
.page-header {
    padding: 140px 0 60px 0;
    background: linear-gradient(rgba(26, 17, 13, 0.85), rgba(26, 17, 13, 0.85)), url('https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #FFFFFF;
}

.page-header h1 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-header .subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #C9A962;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-top: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: #C9A962;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* ===========================================
   PRODUCTS PAGE
   =========================================== */
.products-page {
    padding: 80px 0;
    background-color: #F5F1E8;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
/* Reveal animation - elements are visible by default */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* ===========================================
   UTILITIES
   =========================================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: 15px !important; }
.mb-md { margin-bottom: 25px !important; }
.mb-lg { margin-bottom: 40px !important; }

.mt-sm { margin-top: 15px !important; }
.mt-md { margin-top: 25px !important; }
.mt-lg { margin-top: 40px !important; }

.hidden { display: none !important; }

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}

/* ===========================================
   PRINT
   =========================================== */
@media print {
    .header, .footer, .nav, .btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
