/* =============================================
   TASTE BY CANDY — MAIN STYLESHEET
   ============================================= */

:root {
    --orange: #E8601A;
    --dark: #1A1A1A;
    --off-white: #F2EBE0;
    --gold: #C9963E;
    --text: #2D2D2D;
    --white: #FDFAF6;
    --light-bg: #F0EAE0;
    --border: #E0D8CE;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 15px 36px;
    border: 2px solid var(--orange);
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 36px;
    border: 2px solid var(--white);
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-secondary:hover { background: var(--white); color: var(--dark); }

.btn-dark {
    background: var(--dark);
    color: var(--white);
    padding: 15px 36px;
    border: 2px solid var(--dark);
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-dark:hover { background: var(--orange); border-color: var(--orange); }

.btn-white {
    background: var(--white);
    color: var(--orange);
    padding: 15px 36px;
    border: 2px solid var(--white);
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-white:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

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

.eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.section-title { font-size: 42px; color: var(--dark); line-height: 1.15; margin-bottom: 15px; }
.section-title.light { color: var(--white); }

.section-subtitle { font-size: 16px; color: #777; line-height: 1.8; max-width: 560px; }
.section-header.center .section-subtitle { margin: 0 auto; }

.gold-line { width: 55px; height: 3px; background: var(--gold); margin: 15px 0 25px; }
.gold-line.center { margin: 15px auto 25px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--dark); padding: 10px 0; font-size: 13px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }

.top-bar-left { display: flex; gap: 25px; align-items: center; }
.top-bar-left a, .top-bar-left span { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.75); transition: color 0.3s; }
.top-bar-left a:hover { color: var(--orange); }
.top-bar-left i { color: var(--orange); font-size: 11px; }

.top-bar-right { display: flex; align-items: center; gap: 5px; }
.top-bar-right span { color: rgba(255,255,255,0.5); font-size: 12px; margin-right: 8px; }
.top-bar-right a {
    width: 30px; height: 30px; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 13px; transition: all 0.3s; border-radius: 50%;
}
.top-bar-right a:hover { background: var(--orange); color: var(--white); }

/* ===== NAVIGATION ===== */
.navbar { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 25px rgba(0,0,0,0.08); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.navbar-logo img { height: 65px; width: auto; }

.navbar-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.navbar-links a {
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--dark); transition: color 0.3s; position: relative; padding-bottom: 4px;
}
.navbar-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.3s ease; }
.navbar-links a:hover::after, .navbar-links a.active::after { width: 100%; }
.navbar-links a:hover, .navbar-links a.active { color: var(--orange); }

.navbar-book { background: var(--orange); color: var(--white) !important; padding: 10px 22px; font-size: 11px !important; }
.navbar-book::after { display: none !important; }
.navbar-book:hover { background: var(--dark); color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; height: 92vh; min-height: 620px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.62)); z-index: 1; }

.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 20px; max-width: 820px; }
.hero-content .eyebrow { color: var(--gold); margin-bottom: 18px; }
.hero-content h1 { font-size: 62px; line-height: 1.1; margin-bottom: 22px; font-weight: 700; }
.hero-content p { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.88); margin-bottom: 38px; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-hero .hero-bg { background-position: center 40%; }
.page-hero .hero-overlay { background: rgba(0,0,0,0.6); }
.page-hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.page-hero-content h1 { font-size: 52px; margin-bottom: 12px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; gap: 8px; }
.breadcrumb a { color: var(--gold); }

/* ===== OFFERINGS ===== */
.offerings { padding: 100px 0; background: var(--off-white); }
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.offering-card { background: var(--white); padding: 42px 30px; text-align: center; transition: all 0.35s ease; border-bottom: 3px solid transparent; }
.offering-card:hover { transform: translateY(-6px); border-bottom-color: var(--orange); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

.offering-icon { width: 68px; height: 68px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; transition: background 0.3s; }
.offering-card:hover .offering-icon { background: var(--dark); }
.offering-icon i { color: var(--white); font-size: 24px; }
.offering-card h3 { font-size: 20px; color: var(--dark); margin-bottom: 12px; }
.offering-card p { font-size: 14px; color: #888; line-height: 1.75; }

/* ===== ABOUT SNIPPET ===== */
.about-snippet { padding: 100px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 520px; object-fit: cover; }
.about-image-wrap::before { content: ''; position: absolute; top: -15px; left: -15px; right: 15px; bottom: 15px; border: 3px solid var(--gold); z-index: -1; }

.exp-badge { position: absolute; bottom: -20px; right: -20px; background: var(--orange); color: var(--white); width: 130px; height: 130px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.exp-badge .num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; line-height: 1; }
.exp-badge .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

.about-text p { font-size: 15px; color: #666; line-height: 1.9; margin-bottom: 20px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 35px 0; padding: 30px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 38px; color: var(--orange); font-weight: 700; line-height: 1; }
.stat-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: #aaa; margin-top: 6px; }

/* ===== FEATURED ===== */
.featured { padding: 100px 0; background: var(--light-bg); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.product-card { background: var(--white); overflow: hidden; transition: all 0.35s ease; }
.product-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.1); transform: translateY(-4px); }
.product-img { overflow: hidden; height: 230px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-info { padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; }
.product-info h3 { font-size: 18px; color: var(--dark); }
.product-info .sub { font-size: 12px; color: #aaa; font-family: 'Lato', sans-serif; margin-top: 3px; }
.price { font-size: 20px; font-weight: 700; color: var(--orange); font-family: 'Lato', sans-serif; white-space: nowrap; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--dark); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.55); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 55px; }

.testimonial-card { background: rgba(255,255,255,0.04); padding: 38px 32px; border: 1px solid rgba(255,255,255,0.07); transition: all 0.3s; }
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: var(--orange); }

.stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-card blockquote { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.85; font-style: italic; margin-bottom: 25px; }

.t-author { display: flex; align-items: center; gap: 13px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 17px; flex-shrink: 0; }
.t-name { font-weight: 700; color: var(--white); font-size: 14px; }
.t-event { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ===== HOURS + CTA ===== */
.hours-cta { padding: 80px 0; background: var(--orange); }
.hours-cta .container { display: grid; grid-template-columns: 1fr auto 1fr; gap: 60px; align-items: center; }

.hours-block h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--white); margin-bottom: 22px; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; color: rgba(255,255,255,0.85); font-size: 14px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.18); gap: 30px; }
.hours-list li:last-child { border-bottom: none; }
.hours-list .closed { color: rgba(255,255,255,0.45); }
.divider-v { width: 1px; height: 150px; background: rgba(255,255,255,0.25); }
.cta-block { text-align: center; }
.cta-block h3 { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--white); margin-bottom: 10px; }
.cta-block p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 28px; line-height: 1.6; }

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 100px 0; background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.contact-text p { font-size: 15px; color: #666; line-height: 1.85; margin-bottom: 30px; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-details li { display: flex; align-items: center; gap: 13px; font-size: 15px; color: var(--text); }
.contact-details i { color: var(--orange); width: 18px; font-size: 15px; flex-shrink: 0; }

.contact-form-box { background: var(--white); padding: 50px; box-shadow: 0 15px 50px rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); font-family: 'Lato', sans-serif; font-size: 14px; color: var(--text); background: var(--off-white); outline: none; transition: border-color 0.3s; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== FOOTER ===== */
footer { background: var(--dark); padding: 75px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 45px; padding-bottom: 55px; }
.footer-brand p { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.55); margin: 20px 0 28px; max-width: 280px; }
.footer-logo { height: 70px; width: auto; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 14px; transition: all 0.3s; }
.footer-socials a:hover { background: var(--orange); color: var(--white); }

.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); margin-bottom: 22px; position: relative; padding-bottom: 14px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--orange); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a::before { content: '›'; color: var(--orange); font-size: 16px; }
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--orange); margin-top: 2px; flex-shrink: 0; font-size: 14px; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== SERVICES PAGE ===== */
.services-section { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: all 0.35s; }
.service-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.09); transform: translateY(-4px); border-color: var(--orange); }
.service-card-img { overflow: hidden; height: 270px; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-body { padding: 35px; }
.service-body .svc-icon { width: 55px; height: 55px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-body .svc-icon i { color: var(--white); font-size: 20px; }
.service-body h3 { font-size: 24px; color: var(--dark); margin-bottom: 12px; }
.service-body p { font-size: 15px; color: #777; line-height: 1.8; margin-bottom: 22px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 25px; }
.service-features li { font-size: 14px; color: #555; display: flex; align-items: center; gap: 8px; }
.service-features li i { color: var(--orange); font-size: 11px; }

/* ===== ABOUT PAGE ===== */
.stats-strip { padding: 70px 0; background: var(--orange); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-grid .stat-num { font-size: 52px; color: var(--white); }
.stats-grid .stat-lbl { color: rgba(255,255,255,0.75); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 35px; }
.value-item { padding: 22px; border-left: 3px solid var(--orange); background: var(--off-white); }
.value-item h4 { font-size: 15px; color: var(--dark); margin-bottom: 6px; }
.value-item p { font-size: 13px; color: #888; line-height: 1.6; margin: 0; }

/* ===== MENU PAGE ===== */
.menu-section { padding: 100px 0; background: var(--white); }
.menu-tabs { display: flex; margin-bottom: 55px; border-bottom: 2px solid var(--border); }
.menu-tab { padding: 14px 28px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; cursor: pointer; transition: all 0.3s; border-bottom: 2px solid transparent; margin-bottom: -2px; background: none; border-top: none; border-left: none; border-right: none; font-family: 'Lato', sans-serif; }
.menu-tab.active, .menu-tab:hover { color: var(--orange); border-bottom-color: var(--orange); }
.menu-content { display: none; }
.menu-content.active { display: block; }

.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 60px; }
.package-card { border: 2px solid var(--border); padding: 40px 30px; text-align: center; position: relative; transition: all 0.3s; }
.package-card:hover, .package-card.featured-pkg { border-color: var(--orange); box-shadow: 0 15px 45px rgba(232,96,26,0.12); }
.pkg-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); padding: 4px 18px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.package-card h3 { font-size: 26px; color: var(--dark); margin-bottom: 8px; }
.pkg-count { font-size: 14px; color: var(--orange); font-weight: 700; margin-bottom: 25px; }
.pkg-items { list-style: none; text-align: left; margin-bottom: 30px; }
.pkg-items li { font-size: 14px; color: #666; padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.pkg-items li i { color: var(--orange); font-size: 11px; }

.menu-category { margin-bottom: 50px; }
.menu-category h3 { font-size: 28px; color: var(--dark); margin-bottom: 25px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.menu-items-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.menu-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; background: var(--off-white); transition: background 0.3s; }
.menu-item:hover { background: #ede8e2; }
.menu-item-name { font-size: 14px; color: var(--dark); font-weight: 600; }
.menu-item-desc { font-size: 12px; color: #aaa; margin-top: 2px; }
.menu-item-price { font-size: 15px; font-weight: 700; color: var(--orange); white-space: nowrap; margin-left: 15px; }

.allergen-note { background: #FFF8F5; border-left: 4px solid var(--orange); padding: 18px 22px; margin-top: 40px; font-size: 13px; color: #666; line-height: 1.6; }
.allergen-note strong { color: var(--dark); }

/* ===== GALLERY PAGE ===== */
.gallery-section { padding: 80px 0; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img,
.gallery-item video { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(232,96,26,0.72); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 30px; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 28px; color: var(--white); font-size: 36px; cursor: pointer; line-height: 1; }

/* ===== SHOP PAGE ===== */
.shop-section { padding: 80px 0; background: var(--light-bg); }
.shop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.shop-count { font-size: 14px; color: #aaa; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.shop-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: all 0.35s; }
.shop-card:hover { box-shadow: 0 15px 45px rgba(0,0,0,0.1); border-color: var(--orange); transform: translateY(-3px); }
.shop-img { position: relative; overflow: hidden; height: 240px; }
.shop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.shop-card:hover .shop-img img { transform: scale(1.07); }
.shop-category-tag { position: absolute; top: 14px; left: 14px; background: var(--orange); color: var(--white); padding: 4px 12px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.shop-body { padding: 22px; }
.shop-body h3 { font-size: 18px; color: var(--dark); margin-bottom: 6px; }
.shop-body .desc { font-size: 13px; color: #aaa; margin-bottom: 18px; line-height: 1.5; }
.shop-footer { display: flex; justify-content: space-between; align-items: center; }
.shop-price { font-size: 22px; font-weight: 700; color: var(--orange); font-family: 'Lato', sans-serif; }
.add-to-cart { background: var(--dark); color: var(--white); border: none; padding: 10px 18px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.3s; font-family: 'Lato', sans-serif; }
.add-to-cart:hover { background: var(--orange); }

/* ===== ABOUT PAGE INLINE SECTIONS ===== */
.about-story-section { padding: 100px 0; }
.about-gallery-section { padding: 100px 0; }

/* ===== CONTACT ICON STRIP ===== */
.contact-icon-strip-section { padding: 60px 0; }
.contact-icon-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }

/* ===== SHARED CTA BOXES ===== */
.section-cta { padding: 50px; text-align: center; background: var(--off-white); }

/* ===== CONTACT PAGE ===== */
.contact-full { padding: 100px 0; background: var(--off-white); }
.contact-full-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-side .section-title { margin-bottom: 15px; }
.contact-side > p { font-size: 15px; color: #666; line-height: 1.85; margin-bottom: 35px; }
.info-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: var(--white); margin-bottom: 14px; }
.info-card .ic-icon { width: 46px; height: 46px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card .ic-icon i { color: var(--white); font-size: 16px; }
.info-card .ic-body h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 4px; font-family: 'Lato', sans-serif; }
.info-card .ic-body p { font-size: 14px; color: #777; margin: 0; line-height: 1.5; font-family: 'Lato', sans-serif; }
.social-links { display: flex; gap: 10px; margin-top: 25px; }
.social-links a { width: 42px; height: 42px; background: var(--dark); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 15px; transition: background 0.3s; }
.social-links a:hover { background: var(--orange); }
.contact-form-side { background: var(--white); padding: 55px; box-shadow: 0 15px 55px rgba(0,0,0,0.06); }
.contact-form-side h3 { font-size: 28px; color: var(--dark); margin-bottom: 30px; }

/* ===== MENU ITEM SELECTOR ===== */
.menu-selector { margin-bottom: 20px; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease; }
.menu-selector.visible { max-height: 600px; opacity: 1; }
.menu-selector > label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; }
.menu-selector-hint { font-size: 12px; color: #999; margin-bottom: 14px; line-height: 1.5; }
.menu-checkboxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.menu-check-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); cursor: pointer; padding: 11px 14px; background: var(--off-white); border: 1px solid var(--border); transition: all 0.2s; user-select: none; }
.menu-check-item:hover { border-color: var(--orange); background: #FFF3EC; }
.menu-check-item input[type="checkbox"] { accent-color: var(--orange); width: 15px; height: 15px; cursor: pointer; flex-shrink: 0; }
.menu-check-item.selected { background: #FFF3EC; border-color: var(--orange); font-weight: 600; }
