/*
Theme Name:  Restaurant Zone Child
Template:    restaurant-zone
Description: Warm & Luxurious redesign for Spice N Bites — saffron/gold spice-tone palette, Playfair Display headings, dark cardamom backgrounds.
Version:     1.0.0
Author:      Spice N Bites
License:     GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: restaurant-zone-child
*/

/* ============================================================
   DESIGN TOKENS — SPICE N BITES COLOUR PALETTE
   ============================================================
   --snb-saffron     : #D4841A  (primary gold/turmeric accent)
   --snb-gold-light  : #E8C374  (hover/highlight)
   --snb-spice-red   : #C0392B  (deep red for CTA / sale badges)
   --snb-cream       : #F5ECD7  (parchment — body text on dark)
   --snb-dark        : #1C0800  (cardamom — main dark bg)
   --snb-darker      : #0F0400  (footer — very dark)
   --snb-surface     : #2D1508  (card/box surface)
   --snb-mid         : #3D2010  (medium surface / hover bg)
   ============================================================ */

/* ============================================================
   1. ROOT VARIABLES — override parent theme CSS vars
   ============================================================ */
:root {
    /* These override the parent's --first-color (#ef2923) and
       --second-color (#000) used throughout the theme */
    --first-color:  #D4841A !important;   /* saffron gold  */
    --second-color: #1C0800 !important;   /* cardamom dark */

    /* New tokens for the child theme */
    --snb-saffron:    #D4841A;
    --snb-gold-light: #E8C374;
    --snb-spice-red:  #C0392B;
    --snb-cream:      #F5ECD7;
    --snb-dark:       #1C0800;
    --snb-darker:     #0F0400;
    --snb-surface:    #2D1508;
    --snb-mid:        #3D2010;

    /* Bootstrap primary — overrides the red Bootstrap .btn-primary / bg-primary */
    --bs-primary:         #D4841A;
    --bs-primary-rgb:     212, 132, 26;
    --bs-link-color:      #D4841A;
    --bs-link-hover-color:#E8C374;
}

/* ============================================================
   2. GLOBAL TYPOGRAPHY
   ============================================================ */
body {
    font-family: 'Lato', sans-serif;
    color: #3e4050;
    background-color: #faf7f2;  /* warm off-white for light pages */
}

/* Headings — switch from Cookie (cursive) to Playfair Display */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--snb-dark);
    letter-spacing: 0.01em;
}

/* Site title */
.navbar-brand h1.site-title,
p.site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0;
    color: var(--snb-cream);
}
.navbar-brand a {
    color: var(--snb-cream);
    text-decoration: none;
}

/* Site description / tagline */
.navbar-brand p.site-description {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 14px;
    color: var(--snb-gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 0;
}

/* General links */
a {
    color: var(--snb-saffron);
}
a:hover {
    color: var(--snb-gold-light);
}

/* Sidebar / content underlined links */
.sidebar p a,
.entry-content a,
.entry-summary a,
.comment-content a {
    color: var(--snb-saffron);
    text-decoration: underline;
}

/* Pull-quotes and blockquotes */
blockquote,
.wp-block-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.3em;
    color: var(--snb-dark);
    border-left: 4px solid var(--snb-saffron);
    padding-left: 1.2em;
    margin-left: 0;
}

/* ============================================================
   3. ORNAMENTAL SECTION HEADING STYLE
      Used on h3, h2 inside #items-section and homepage sections
   ============================================================ */
#items-section h3,
.theme-area-headlines h2,
.snb-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--snb-saffron);
    text-align: center;
    padding-bottom: 10px;
    letter-spacing: 0.02em;
}

/* Thin ornamental lines flanking section titles */
#items-section h3::before,
.theme-area-headlines h2::before,
.snb-section-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--snb-saffron));
    margin: 0 auto 14px;
}
#items-section h3::after,
.theme-area-headlines h2::after,
.snb-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(to left, transparent, var(--snb-saffron));
    margin: 10px auto 0;
    /* override parent's heading-icon background-image */
    background-image: none !important;
    position: static !important;
    height: 2px !important;
}

/* ============================================================
   4. BOOTSTRAP PRIMARY COLOUR OVERRIDES
   ============================================================ */
.btn-primary,
.bg-primary {
    background-color: var(--snb-dark) !important;
    border-color: var(--snb-dark) !important;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--snb-mid) !important;
    border-color: var(--snb-mid) !important;
}
/* Keep Bootstrap's text-primary readable */
.text-primary {
    color: var(--snb-saffron) !important;
}

/* ============================================================
   5. TOP SOCIAL / INFO BAR  (.socialmedia)
   ============================================================ */
.socialmedia {
    background: var(--snb-darker);
    border-bottom: 1px solid rgba(212, 132, 26, 0.25);
}
.socialmedia .top-info i {
    color: var(--snb-saffron);
}
.socialmedia .top-info p a {
    color: var(--snb-cream);
    font-size: 13px;
}
.socialmedia .top-info p a:hover {
    color: var(--snb-gold-light);
    text-decoration: none;
}
.socialmedia .social-link a {
    color: var(--snb-cream);
    margin-right: 14px;
    font-size: 14px;
    transition: color 0.2s;
}
.socialmedia .social-link a:hover {
    color: var(--snb-saffron);
}
/* Cart icon in top bar */
.cart-customlocation {
    color: var(--snb-cream) !important;
    font-size: 16px;
}
.cart-customlocation:hover {
    color: var(--snb-saffron) !important;
}

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
header#masthead,
.site-header {
    background: var(--snb-dark) !important;
    border-bottom: 2px solid rgba(212, 132, 26, 0.4);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5) !important;
}

/* The dark nav-menu bar inside the header */
.head-menu {
    background: var(--snb-dark) !important;
    padding: 16px 0;
}

/* Transparent overlay on front-page template */
.page-template-custom-front-page .head-menu {
    background: rgba(15, 4, 0, 0.75) !important;
    backdrop-filter: blur(4px);
}

/* Sticky header */
.stick_header {
    background: var(--snb-dark) !important;
    border-bottom: 2px solid var(--snb-saffron);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7) !important;
}

/* ——— Nav links ——— */
.main-navigation .menu {
    font-family: 'Playfair Display', Georgia, serif;
}
.main-navigation .menu > li > a,
.main-navigation .menu li a,
#site-navigation .menu ul li a {
    color: var(--snb-cream);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 10px 14px;
    position: relative;
    transition: color 0.2s;
}

/* Underline grow on hover */
.main-navigation .menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--snb-saffron);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.main-navigation .menu > li > a:hover::after {
    transform: scaleX(1);
}

.main-navigation .menu > li > a:hover,
#site-navigation .menu ul li a:hover {
    color: var(--snb-gold-light) !important;
}

/* Current page / active item */
.main-navigation .menu > li.current-menu-item > a,
.main-navigation .menu > li.current_page_item > a {
    color: var(--snb-saffron) !important;
}

/* ——— Dropdown sub-menus ——— */
.main-navigation .sub-menu,
.main-navigation .children,
.main-navigation .menu li.page_item_has_children ul.children {
    background-color: var(--snb-surface) !important;
    border-top: 2px solid var(--snb-saffron);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.main-navigation .sub-menu > li > a,
.main-navigation .menu li ul.children li a,
.main-navigation ul.sub-menu li a {
    color: var(--snb-cream) !important;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    padding: 12px 18px;
    display: block;
    transition: background 0.2s, color 0.2s;
}
.main-navigation .sub-menu > li > a:hover,
.main-navigation ul.sub-menu > li > a:hover,
.main-navigation .sub-menu > li > a:focus {
    background: var(--snb-saffron) !important;
    color: var(--snb-dark) !important;
}

/* ——— Reservation button in top bar ——— */
.reservation-btn a {
    background: var(--snb-saffron);
    color: var(--snb-dark);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 9px 20px;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
}
.reservation-btn a:hover {
    background: var(--snb-gold-light);
    color: var(--snb-dark);
}

/* ——— Mobile sidenav ——— */
#mySidenav.sidenav {
    background: var(--snb-darker) !important;
}
a.closebtn.mobile-menu {
    color: var(--snb-saffron) !important;
}
.toggle-nav.mobile-menu button {
    background: transparent;
    border: 1px solid var(--snb-saffron);
    color: var(--snb-cream);
    padding: 6px 12px;
    border-radius: 4px;
}

/* ============================================================
   7. HERO / TOP SLIDER
   ============================================================ */
.slider-box {
    background: var(--snb-darker);
    position: relative;
}

#top-slider .slider-box img {
    opacity: 0.35;
    object-fit: cover;
    height: 620px;
    filter: saturate(0.8) contrast(1.1);
}

.slider-inner-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    right: 10%;
    text-align: center;
    z-index: 2;
}

/* Decorative horizontal rule above slider title */
.slider-inner-box::before {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--snb-saffron);
    margin: 0 auto 20px;
    opacity: 0.8;
}

.slider-inner-box h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--snb-gold-light);
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.02em;
}

.slider-inner-box p {
    color: var(--snb-cream);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    letter-spacing: 0.06em;
    margin-top: 12px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

/* Slider CTA buttons */
.slide-btn a {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 3px;
    transition: all 0.25s ease;
}
.slide-btn a:first-child,
.slide-btn a {
    background: var(--snb-saffron);
    color: var(--snb-dark);
    border: 2px solid var(--snb-saffron);
}
.slide-btn a:hover {
    background: transparent;
    color: var(--snb-gold-light);
    border-color: var(--snb-gold-light);
}

/* Owl carousel nav arrows */
.owl-prev, .owl-next {
    background: rgba(212, 132, 26, 0.3) !important;
    color: var(--snb-cream) !important;
    border: 1px solid var(--snb-saffron) !important;
    border-radius: 3px !important;
    transition: background 0.2s !important;
}
.owl-prev:hover, .owl-next:hover {
    background: var(--snb-saffron) !important;
    color: var(--snb-dark) !important;
}

/* ============================================================
   8. HOMEPAGE SECTIONS
   ============================================================ */
#items-section {
    background-color: #faf7f2;
    padding: 60px 0;
}

/* Service / feature boxes */
.serv-box {
    background: #fff;
    border: 1px solid rgba(212, 132, 26, 0.2);
    border-top: 3px solid var(--snb-saffron);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 28px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.serv-box:hover {
    box-shadow: 0 8px 30px rgba(212, 132, 26, 0.18);
    transform: translateY(-3px);
}
.serv-box h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    color: var(--snb-dark);
}
.serv-box p {
    color: #6b5a4e;
    font-size: 14px;
}
.serv-box a {
    color: var(--snb-saffron);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}
.serv-box a:hover {
    color: var(--snb-spice-red);
}

/* Item image boxes */
.item-image {
    background: var(--snb-darker);
    border-radius: 4px;
    overflow: hidden;
}
.item-image img {
    outline: 2px solid rgba(212, 132, 26, 0.4);
    outline-offset: -12px;
    opacity: 0.85;
    transition: opacity 0.25s, transform 0.35s;
}
.item-image:hover img {
    opacity: 1;
    transform: scale(1.03);
}

/* Custom scrollbar for item-list */
.item-list::-webkit-scrollbar { width: 5px; background: var(--snb-surface); }
.item-list::-webkit-scrollbar-thumb { background: var(--snb-saffron); border-radius: 3px; }

/* ============================================================
   9. ARTICLE / BLOG POSTS
   ============================================================ */
.article-box {
    border: 1px solid rgba(212, 132, 26, 0.18);
    border-top: 3px solid var(--snb-saffron);
    padding: 15px;
    margin-bottom: 28px;
    background: #fff;
    border-radius: 4px;
}
.article-box h3.entry-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    color: var(--snb-dark);
}
.article-box a:hover {
    color: var(--snb-spice-red);
}
.article-box img {
    border-radius: 6px;
}

/* Post meta */
.posted-on, .byline, .comments-link {
    color: #8a7060;
    font-style: italic;
    font-size: 13px;
}

/* Post navigation */
.post-navigation .nav-previous a,
.post-navigation .nav-next a,
.posts-navigation .nav-previous a,
.posts-navigation .nav-next a {
    background: #fff;
    border-color: rgba(212, 132, 26, 0.3);
    border-radius: 3px;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover,
.posts-navigation .nav-previous a:hover,
.posts-navigation .nav-next a:hover {
    background: var(--snb-saffron);
    border-color: var(--snb-saffron);
    color: var(--snb-dark);
}

/* Pagination */
.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
    background: #fff;
    border-color: rgba(212, 132, 26, 0.3);
    border-radius: 3px;
}
.navigation.pagination .nav-links a.current,
.navigation.pagination .nav-links a:hover,
.navigation.pagination .nav-links span.current,
.navigation.pagination .nav-links span:hover {
    background: var(--snb-saffron);
    border-color: var(--snb-saffron);
    color: var(--snb-dark);
}

/* ============================================================
   10. WOOCOMMERCE — PRODUCT CARDS & SHOP ARCHIVE
   ============================================================ */

/* Price */
p.price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--snb-saffron);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 20px;
}

/* Product title */
h2.woocommerce-loop-product__title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 22px !important;
    color: var(--snb-dark);
    padding: 10px 0 4px !important;
}

/* Individual product card li */
.woocommerce ul.products li.product {
    background: #fff;
    border: 1px solid rgba(212, 132, 26, 0.15);
    border-top: 3px solid var(--snb-saffron);
    border-radius: 4px;
    padding: 14px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.woocommerce ul.products li.product:hover {
    box-shadow: 0 8px 30px rgba(212, 132, 26, 0.18);
    transform: translateY(-3px);
}

/* Add to Cart / WooCommerce buttons (primary action) */
.pro-button a,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--snb-saffron) !important;
    color: var(--snb-dark) !important;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 20px !important;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s !important;
}
.pro-button a:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: var(--snb-spice-red) !important;
    color: #fff !important;
}

/* "View Cart" / added_to_cart forwarding link */
a.added_to_cart.wc-forward {
    background: var(--snb-mid);
    color: var(--snb-cream);
    border-radius: 3px;
    margin: 8px auto;
    font-weight: 700;
    padding: 4px 20px 8px;
    display: inline-block;
}
a.added_to_cart.wc-forward:hover {
    background: var(--snb-saffron);
    color: var(--snb-dark);
}

/* Sale badge */
span.onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
    background: var(--snb-spice-red) !important;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 0;
}

/* Sort dropdown */
.woocommerce .woocommerce-ordering select {
    background: var(--snb-dark);
    color: var(--snb-cream);
    border: 1px solid rgba(212, 132, 26, 0.4);
    padding: 4px 8px;
}

/* Quantity input */
.woocommerce .quantity .qty {
    border: 2px solid var(--snb-saffron);
    color: var(--snb-dark);
    border-radius: 3px;
    padding: 4px 8px;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--snb-saffron);
    background: #fffbf3;
}
.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--snb-saffron);
}

/* My Account navigation tabs */
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    background: var(--snb-saffron);
    color: var(--snb-dark);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    color: var(--snb-dark);
    font-weight: 700;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:hover {
    background: var(--snb-spice-red) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    color: #fff !important;
}

/* ============================================================
   11. FORMS  (checkout, contact, comments)
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input#url,
textarea {
    border: 1px solid rgba(212, 132, 26, 0.35);
    border-radius: 3px;
    background: #fffbf5;
    color: var(--snb-dark);
    font-size: 15px;
    padding: 10px 12px;
    width: 100%;
    margin: 0 0 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    border-color: var(--snb-saffron);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 132, 26, 0.15);
}

/* Comment submit button */
.comment-respond input#submit {
    background: var(--snb-saffron);
    color: var(--snb-dark);
    border: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}
.comment-respond input#submit:hover {
    background: var(--snb-spice-red);
    color: #fff;
}

/* Search form submit */
.page-content input.search-submit.btn.btn-primary,
.sidebar input[type="submit"],
.sidebar button[type="submit"] {
    background: var(--snb-saffron) !important;
    border: none;
    color: var(--snb-dark) !important;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.page-content input.search-submit.btn.btn-primary:hover,
.sidebar input[type="submit"]:hover,
.sidebar button[type="submit"]:hover {
    background: var(--snb-spice-red) !important;
    color: #fff !important;
}

/* ============================================================
   12. SIDEBAR
   ============================================================ */
.sidebar section {
    border: 1px solid rgba(212, 132, 26, 0.18);
    background: #fff;
    border-radius: 4px;
    margin-bottom: 28px;
    padding: 0;
    overflow: hidden;
}

.sidebar h5,
.sidebar .wp-block-search .wp-block-search__label,
.sidebar .widget h2.wp-block-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    color: var(--snb-cream);
    background: var(--snb-dark);
    padding: 14px 16px;
    letter-spacing: 0.04em;
    border-left: 4px solid var(--snb-saffron);
    margin-bottom: 12px;
}

.sidebar li {
    color: #5a4a40;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(212, 132, 26, 0.1);
}
.sidebar a {
    color: #5a4a40;
}
.sidebar a:hover {
    color: var(--snb-saffron);
}

/* Tag cloud */
.sidebar .tagcloud a {
    border: 1px solid rgba(212, 132, 26, 0.35);
    color: #5a4a40;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 12px !important;
    display: inline-block;
    margin-bottom: 5px;
    transition: background 0.2s, color 0.2s;
}
.sidebar .tagcloud a:hover {
    background: var(--snb-saffron);
    color: var(--snb-dark);
    border-color: var(--snb-saffron);
}

/* Search in sidebar */
.sidebar input[type="search"] {
    border: 1px solid rgba(212, 132, 26, 0.35);
    border-radius: 3px 3px 0 0;
    padding: 10px;
    font-size: 14px;
}

/* ============================================================
   13. FOOTER
   ============================================================ */

/* Ornamental divider above footer */
.snb-footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0 0;
    background: var(--snb-darker);
}
.snb-footer-line {
    display: block;
    flex: 1;
    max-width: 160px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 132, 26, 0.6));
}
.snb-footer-divider .snb-footer-line:last-child {
    background: linear-gradient(to left, transparent, rgba(212, 132, 26, 0.6));
}
.snb-footer-logo {
    font-size: 20px;
    color: var(--snb-saffron);
    padding: 0 16px;
    line-height: 1;
}

#colophon {
    background: var(--snb-darker) !important;
    color: var(--snb-cream);
    border-top: 3px solid var(--snb-saffron);
    /* warm saffron top gradient accent */
    background-image: linear-gradient(
        to bottom,
        rgba(212, 132, 26, 0.08) 0px,
        transparent 120px
    ) !important;
}

#colophon a {
    color: var(--snb-cream);
    text-decoration: none;
    transition: color 0.2s;
}
#colophon a:hover,
#colophon a:focus {
    color: var(--snb-saffron) !important;
}

/* Footer widget columns */
.footer-column {
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(212, 132, 26, 0.25);
}

/* Widget headings in footer */
.footer-column h5,
.footer-column .widget-title,
#colophon .widget h5,
#colophon .widget-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    color: var(--snb-gold-light);
    background: transparent !important;
    padding: 0 0 10px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(212, 132, 26, 0.4);
    margin-bottom: 20px;
}

/* Footer widget list items */
#colophon .widget ul li,
#colophon .widget li {
    color: rgba(245, 236, 215, 0.8);
    padding: 5px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(212, 132, 26, 0.08);
    line-height: 1.5;
}

/* Footer text */
#colophon .textwidget,
#colophon p {
    color: rgba(245, 236, 215, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

/* Copyright bar */
.site-info {
    background: var(--snb-darker);
    padding: 18px 0;
    font-size: 13px;
    color: rgba(245, 236, 215, 0.5);
    border-top: 1px solid rgba(212, 132, 26, 0.15);
}
.site-info a {
    color: rgba(245, 236, 215, 0.7);
}
.site-info a:hover {
    color: var(--snb-saffron) !important;
}
.footer-menu-left {
    text-align: right;
}

/* ============================================================
   14. SCROLL-TO-TOP BUTTON
   ============================================================ */
#button {
    background-color: var(--snb-saffron);
    color: var(--snb-dark) !important;
    border-radius: 3px;
    bottom: 28px;
    right: 28px;
    transition: background 0.2s, transform 0.2s;
}
#button:hover {
    background-color: var(--snb-spice-red) !important;
    color: #fff !important;
    transform: translateY(-3px);
}

/* ============================================================
   15. PRELOADER
   ============================================================ */
.loading {
    background-color: var(--snb-darker);
}
@keyframes loading {
    0%,100% {
        transform: translatey(-2.5rem);
        background-color: var(--snb-cream);
    }
    50% {
        transform: translatey(2.5rem);
        background-color: var(--snb-saffron);
    }
}
/* Preloader 2 */
.load hr {
    background: var(--snb-saffron);
}

/* ============================================================
   16. BLOCK EDITOR / GUTENBERG
   ============================================================ */
.wp-block-button__link {
    background: var(--snb-saffron) !important;
    color: var(--snb-dark) !important;
    border-radius: 3px !important;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.wp-block-button__link:hover {
    background: var(--snb-spice-red) !important;
    color: #fff !important;
}
.wp-block-button.is-style-outline a.wp-block-button__link {
    background: transparent !important;
    color: var(--snb-saffron) !important;
    border: 2px solid var(--snb-saffron) !important;
}
.wp-block-button.is-style-outline a.wp-block-button__link:hover {
    background: var(--snb-saffron) !important;
    color: var(--snb-dark) !important;
}

/* ============================================================
   17. PAGE TITLES & SINGLE POST HEADERS
   ============================================================ */
h2.entry-title,
h1.entry-title,
h2.page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    color: var(--snb-dark);
    letter-spacing: 0.01em;
}

/* Featured image header overlay */
.custom-header .bg-gradient,
.featured-header-image .bg-gradient {
    background-image: linear-gradient(
        135deg,
        rgba(15, 4, 0, 0.75) 0%,
        rgba(212, 132, 26, 0.12) 100%
    );
}
.custom-header *,
.featured-header-image * {
    color: var(--snb-cream);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   18. 404 / SEARCH NO-RESULTS
   ============================================================ */
.not-found-pagetext input.search-submit.btn.btn-primary {
    background: var(--snb-saffron) !important;
    color: var(--snb-dark) !important;
    border: none;
    font-weight: 700;
}

/* ============================================================
   19. STICKY POST INDICATOR
   ============================================================ */
.sticky .entry-title::before {
    background: var(--snb-saffron);
    color: var(--snb-dark);
}

/* ============================================================
   20. RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media screen and (max-width: 768px) {
    .slider-inner-box h2 {
        font-size: 42px;
    }
    .slider-inner-box p {
        font-size: 16px;
    }
    #top-slider .slider-box img {
        height: 360px;
    }
    .footer-column h5,
    .footer-column .widget-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 425px) {
    .slider-inner-box h2 {
        font-size: 28px;
    }
    .slider-inner-box p {
        font-size: 14px;
    }
    .slide-btn a {
        padding: 10px 18px;
        font-size: 13px;
    }
    #items-section h3 {
        font-size: 34px;
    }
}

/* ============================================================
   21. PRINT — strip dark backgrounds
   ============================================================ */
@media print {
    body, #colophon, header#masthead {
        background: #fff !important;
        color: #000 !important;
    }
}

/* ============================================================
   22. LANDING PAGE — HERO BANNER & ALL SECTIONS
   ============================================================ */

/* ── Remove the default #masthead margin on front page ── */
.page-template-page-template-custom-front-page #masthead,
.page-template-custom-front-page #masthead {
    margin-bottom: 0;
}
.page-template-page-template-custom-front-page .site-content,
.page-template-custom-front-page .site-content {
    padding: 0;
}

/* ─────────────────────────────────────────
   HERO BANNER
───────────────────────────────────────── */
.snb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0f0400;
}

/* Food photography layer — always the bottommost element */
.snb-hero__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark gradient overlay — sits above photo for text contrast */
.snb-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(180, 80, 10, 0.45) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(212, 132, 26, 0.25) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(15, 4, 0, 0.60) 0%, rgba(15, 4, 0, 0.78) 100%);
    z-index: 1;
}

/* Subtle repeating diagonal spice-weave texture */
.snb-hero__texture {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(212, 132, 26, 0.04) 0px,
            rgba(212, 132, 26, 0.04) 1px,
            transparent         1px,
            transparent        20px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(212, 132, 26, 0.03) 0px,
            rgba(212, 132, 26, 0.03) 1px,
            transparent          1px,
            transparent         20px
        );
    z-index: 1;
}

/* Floating golden bokeh orbs */
.snb-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.18;
    z-index: 1;
    animation: snb-float 8s ease-in-out infinite;
}
.snb-hero__orb--1 {
    width: 420px; height: 420px;
    background: #D4841A;
    top: -80px; left: -100px;
    animation-delay: 0s;
}
.snb-hero__orb--2 {
    width: 300px; height: 300px;
    background: #C0392B;
    bottom: 60px; right: -60px;
    animation-delay: 3s;
}
.snb-hero__orb--3 {
    width: 200px; height: 200px;
    background: #E8C374;
    top: 60%; left: 55%;
    animation-delay: 5s;
}
@keyframes snb-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.08); }
}

/* Hero content */
.snb-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    animation: snb-fadeup 1s ease both;
}
@keyframes snb-fadeup {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Ornamental top line */
.snb-hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    animation: snb-fadeup 1s 0.15s ease both;
    opacity: 0;
}
.snb-hero__eyebrow span {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0.25em;
    color: var(--snb-gold-light);
    text-transform: uppercase;
}
.snb-hero__eyebrow::before,
.snb-hero__eyebrow::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--snb-saffron);
    opacity: 0.7;
}

/* Main heading */
.snb-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(52px, 8vw, 108px);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
    animation: snb-fadeup 1s 0.3s ease both;
    opacity: 0;
}
.snb-hero__title em {
    font-style: italic;
    color: var(--snb-gold-light);
    display: block;
}

/* Tagline */
.snb-hero__tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 28px);
    color: rgba(245, 236, 215, 0.82);
    letter-spacing: 0.06em;
    margin: 16px 0 40px;
    animation: snb-fadeup 1s 0.45s ease both;
    opacity: 0;
}

/* CTA buttons */
.snb-hero__cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    animation: snb-fadeup 1s 0.6s ease both;
    opacity: 0;
}
.snb-btn {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 38px;
    border-radius: 3px;
    display: inline-block;
    transition: all 0.25s ease;
    text-decoration: none !important;
    cursor: pointer;
    border: 2px solid transparent;
}
.snb-btn--primary {
    background: var(--snb-saffron);
    color: var(--snb-dark) !important;
    border-color: var(--snb-saffron);
}
.snb-btn--primary:hover {
    background: var(--snb-gold-light);
    border-color: var(--snb-gold-light);
    color: var(--snb-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 132, 26, 0.35);
}
.snb-btn--outline {
    background: transparent;
    color: var(--snb-cream) !important;
    border-color: rgba(245, 236, 215, 0.6);
}
.snb-btn--outline:hover {
    background: rgba(245, 236, 215, 0.1);
    border-color: var(--snb-cream);
    transform: translateY(-2px);
}

/* Scroll-down indicator */
.snb-hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: snb-fadeup 1s 1s ease both;
    opacity: 0;
}
.snb-hero__scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(212, 132, 26, 0.5);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}
.snb-hero__scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--snb-saffron);
    border-radius: 2px;
    animation: snb-scroll 1.6s ease-in-out infinite;
}
@keyframes snb-scroll {
    0%   { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}

/* ─────────────────────────────────────────
   TRUST / FEATURES STRIP
───────────────────────────────────────── */
.snb-trust {
    background: var(--snb-dark);
    padding: 38px 0;
    border-top: 1px solid rgba(212, 132, 26, 0.2);
    border-bottom: 1px solid rgba(212, 132, 26, 0.2);
}
.snb-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.snb-trust__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    border-right: 1px solid rgba(212, 132, 26, 0.2);
}
.snb-trust__item:last-child { border-right: none; }
.snb-trust__icon {
    font-size: 30px;
    color: var(--snb-saffron);
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}
.snb-trust__label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--snb-cream);
    margin: 0 0 2px;
}
.snb-trust__sub {
    font-size: 12px;
    color: rgba(245, 236, 215, 0.55);
    margin: 0;
    letter-spacing: 0.03em;
}

/* ─────────────────────────────────────────
   SECTION COMMON STYLES
───────────────────────────────────────── */
.snb-section {
    padding: 90px 0;
}
.snb-section--dark {
    background: var(--snb-dark);
}
.snb-section--cream {
    background: #faf7f2;
}
.snb-section--mid {
    background: var(--snb-surface);
}

.snb-section__header {
    text-align: center;
    margin-bottom: 60px;
}
.snb-section__kicker {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--snb-saffron);
    display: block;
    margin-bottom: 10px;
}
.snb-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: var(--snb-dark);
    margin: 0 0 16px;
    line-height: 1.15;
}
.snb-section--dark .snb-section__title,
.snb-section--mid  .snb-section__title {
    color: var(--snb-cream);
}
.snb-section__divider {
    width: 60px;
    height: 2px;
    background: var(--snb-saffron);
    margin: 0 auto 20px;
    display: block;
}
.snb-section__subtitle {
    font-size: 17px;
    color: #6b5a4e;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.snb-section--dark .snb-section__subtitle,
.snb-section--mid  .snb-section__subtitle {
    color: rgba(245, 236, 215, 0.65);
}

/* ─────────────────────────────────────────
   MENU PREVIEW SECTION
───────────────────────────────────────── */
.snb-menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.snb-menu-tab {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid rgba(212, 132, 26, 0.45);
    border-radius: 3px;
    color: var(--snb-cream);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.snb-menu-tab:hover,
.snb-menu-tab.active {
    background: var(--snb-saffron);
    border-color: var(--snb-saffron);
    color: var(--snb-dark) !important;
}

/* WooCommerce product grid inside landing page */
.snb-products-wrap .woocommerce ul.products,
.snb-products-wrap ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    padding: 0 !important;
    list-style: none !important;
}
.snb-products-wrap .woocommerce ul.products li.product,
.snb-products-wrap ul.products li.product {
    width: 100% !important;
    float: none !important;
    background: var(--snb-surface);
    border: 1px solid rgba(212, 132, 26, 0.18);
    border-top: 3px solid var(--snb-saffron);
    border-radius: 6px;
    overflow: hidden;
    padding: 0;
    transition: transform 0.25s, box-shadow 0.25s;
}
.snb-products-wrap ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.snb-products-wrap ul.products li.product img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    display: block;
    border-radius: 0;
}
.snb-products-wrap ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', Georgia, serif !important;
    color: var(--snb-cream) !important;
    font-size: 20px !important;
    padding: 14px 16px 4px !important;
    margin: 0;
}
.snb-products-wrap ul.products li.product .price {
    color: var(--snb-saffron) !important;
    font-size: 20px !important;
    font-weight: 700;
    padding: 0 16px 10px;
    display: block;
}
.snb-products-wrap ul.products li.product .button {
    margin: 0 16px 16px !important;
    background: var(--snb-saffron) !important;
    color: var(--snb-dark) !important;
    font-size: 12px !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 3px !important;
    padding: 10px 20px !important;
    display: inline-block;
}
.snb-products-wrap ul.products li.product .button:hover {
    background: var(--snb-spice-red) !important;
    color: #fff !important;
}
/* "View all menu" row */
.snb-view-all {
    text-align: center;
    margin-top: 48px;
}

/* ─────────────────────────────────────────
   ABOUT / STORY SECTION
───────────────────────────────────────── */
.snb-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.snb-story__img-wrap {
    position: relative;
}
.snb-story__img-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--snb-surface);
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.snb-story__img-frame img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
/* Decorative gold corner borders */
.snb-story__img-frame::before {
    content: '';
    position: absolute;
    top: 18px; left: 18px;
    right: 18px; bottom: 18px;
    border: 1px solid rgba(212, 132, 26, 0.4);
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
}
/* Offset accent block */
.snb-story__img-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 160px;
    height: 160px;
    background: var(--snb-saffron);
    border-radius: 4px;
    z-index: 0;
    opacity: 0.18;
}
.snb-story__badge {
    position: absolute;
    bottom: 28px;
    left: -28px;
    background: var(--snb-saffron);
    color: var(--snb-dark);
    border-radius: 4px;
    padding: 18px 22px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.snb-story__badge-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    display: block;
}
.snb-story__badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}
.snb-story__kicker {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--snb-saffron);
    display: block;
    margin-bottom: 12px;
}
.snb-story__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--snb-dark);
    line-height: 1.2;
    margin: 0 0 20px;
}
.snb-story__body {
    font-size: 16px;
    line-height: 1.8;
    color: #6b5a4e;
    margin-bottom: 28px;
}
.snb-story__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
.snb-story__list li {
    font-size: 14px;
    color: #5a4a40;
    display: flex;
    align-items: center;
    gap: 10px;
}
.snb-story__list li::before {
    content: '✦';
    color: var(--snb-saffron);
    font-size: 10px;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   SPECIALTIES / ICONS ROW
───────────────────────────────────────── */
.snb-specials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.snb-special-card {
    background: var(--snb-surface);
    border: 1px solid rgba(212, 132, 26, 0.15);
    border-radius: 6px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.snb-special-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--snb-spice-red), var(--snb-saffron));
    opacity: 0;
    transition: opacity 0.25s;
}
.snb-special-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.snb-special-card:hover::before { opacity: 1; }
.snb-special-card__icon {
    font-size: 44px;
    color: var(--snb-saffron);
    margin-bottom: 20px;
    display: block;
}
.snb-special-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    color: var(--snb-cream);
    margin: 0 0 12px;
}
.snb-special-card__text {
    font-size: 14px;
    color: rgba(245, 236, 215, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* ─────────────────────────────────────────
   OPENING HOURS
───────────────────────────────────────── */
.snb-hours {
    background:
        linear-gradient(135deg, rgba(15,4,0,0.97) 0%, rgba(44,20,8,0.97) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4841a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
}
.snb-hours__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.snb-hours__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    color: var(--snb-cream);
    margin: 0 0 8px;
}
.snb-hours__sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 18px;
    color: var(--snb-saffron);
    margin: 0 0 32px;
    letter-spacing: 0.08em;
}
.snb-hours__table {
    width: 100%;
    border-collapse: collapse;
}
.snb-hours__table tr {
    border-bottom: 1px solid rgba(212, 132, 26, 0.12);
}
.snb-hours__table td {
    padding: 12px 0;
    font-size: 15px;
    color: rgba(245, 236, 215, 0.8);
}
.snb-hours__table td:last-child {
    text-align: right;
    color: var(--snb-gold-light);
    font-weight: 700;
}
.snb-hours__table .snb-today td {
    color: var(--snb-cream);
}
.snb-hours__table .snb-today td:last-child {
    color: var(--snb-saffron);
}
.snb-hours__map {
    border-radius: 8px;
    overflow: hidden;
    height: 340px;
    background: var(--snb-mid);
    display: flex;
    align-items: center;
    justify-content: center;
}
.snb-hours__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.snb-hours__map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(245, 236, 215, 0.4);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
}
.snb-hours__map-placeholder i {
    font-size: 48px;
    color: var(--snb-saffron);
    opacity: 0.5;
}

/* ─────────────────────────────────────────
   ORDER CTA BANNER
───────────────────────────────────────── */
.snb-cta-band {
    position: relative;
    background: var(--snb-saffron);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}
.snb-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 120% at 0% 50%, rgba(192,57,43,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(15,4,0,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.snb-cta-band__content {
    position: relative;
    z-index: 1;
}
.snb-cta-band__kicker {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    color: rgba(28,8,0,0.7);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 10px;
}
.snb-cta-band__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    color: var(--snb-dark);
    line-height: 1.1;
    margin: 0 0 32px;
}
.snb-cta-band .snb-btn--dark {
    background: var(--snb-dark);
    color: var(--snb-cream) !important;
    border-color: var(--snb-dark);
    font-size: 16px;
    padding: 18px 48px;
}
.snb-cta-band .snb-btn--dark:hover {
    background: #330e02;
    border-color: #330e02;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15,4,0,0.4);
}

/* ─────────────────────────────────────────
   RESPONSIVE — landing page
───────────────────────────────────────── */
@media screen and (max-width: 1024px) {
    .snb-trust__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: rgba(212,132,26,0.2);
    }
    .snb-trust__item {
        background: var(--snb-dark);
        border-right: none;
        padding: 20px 24px;
    }
    .snb-story { grid-template-columns: 1fr; gap: 48px; }
    .snb-story__img-wrap { order: -1; }
    .snb-story__badge { left: 16px; bottom: 16px; }
    .snb-hours__inner { grid-template-columns: 1fr; gap: 40px; }
    .snb-specials__grid { grid-template-columns: 1fr 1fr; }
    .snb-products-wrap ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 768px) {
    .snb-hero { min-height: 85vh; }
    .snb-trust__grid { grid-template-columns: 1fr 1fr; }
    .snb-specials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .snb-products-wrap ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .snb-story__list { grid-template-columns: 1fr; }
    .snb-cta-band { padding: 56px 0; }
}

@media screen and (max-width: 576px) {
    .snb-hero { min-height: 100svh; }
    .snb-trust__grid { grid-template-columns: 1fr; }
    .snb-products-wrap ul.products {
        grid-template-columns: 1fr !important;
    }
    .snb-hero__cta { flex-direction: column; align-items: center; }
    .snb-section { padding: 60px 0; }
}
