/* ============================================
   RESTO Layouts — Master Stylesheet v1.2
   Variables are set dynamically via Design Settings.
   Fallback defaults below are used if settings not saved.
   ============================================ */

:root {
    --resto-red: #cc0000;
    --resto-red-hover: #a30000;
    --resto-dark: #1a1a1a;
    --resto-dark-mid: #2a2a2a;
    --resto-dark-light: #333;
    --resto-text: #ffffff;
    --resto-text-dark: #1a1a1a;
    --resto-text-muted: #999;
    --resto-border: #e0e0e0;
    --resto-bg-light: #f5f5f5;
    --resto-radius: 4px;
    --resto-shadow: 0 2px 12px rgba(0,0,0,0.08);
    --resto-shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --resto-transition: all 0.3s ease;
    --resto-grid-gap: 24px;
    --resto-card-padding: 18px;
    --resto-section-spacing: 40px;
}

.resto-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--resto-text-muted);
    font-size: 16px;
}

/* ============================================
   GRID SYSTEM
   ============================================ */

.resto-grid-cols-2,
.resto-grid-cols-3,
.resto-grid-cols-4,
.resto-grid-cols-5,
.resto-grid-cols-6 {
    display: grid;
    gap: 24px;
}

.resto-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.resto-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.resto-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.resto-grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.resto-grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
    .resto-grid-cols-4,
    .resto-grid-cols-5,
    .resto-grid-cols-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .resto-grid-cols-2,
    .resto-grid-cols-3,
    .resto-grid-cols-4,
    .resto-grid-cols-5,
    .resto-grid-cols-6 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
    .resto-grid-cols-2,
    .resto-grid-cols-3,
    .resto-grid-cols-4,
    .resto-grid-cols-5,
    .resto-grid-cols-6 { grid-template-columns: 1fr; }
}


/* ============================================
   PRODUCT CARDS
   ============================================ */

.resto-product-card {
    background: #fff;
    border-radius: var(--resto-radius);
    overflow: hidden;
    box-shadow: var(--resto-shadow);
    transition: var(--resto-transition);
}

.resto-product-card:hover {
    box-shadow: var(--resto-shadow-hover);
    transform: translateY(-4px);
}

.resto-product-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.resto-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--resto-bg-light);
}

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

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

.resto-product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
    background: var(--resto-bg-light);
}

.resto-badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--resto-red);
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.resto-product-info {
    padding: 16px 18px;
}

.resto-product-cats {
    font-size: 11px;
    color: var(--resto-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
}

.resto-product-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--resto-text-dark);
    margin: 0 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.resto-product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--resto-red);
}

.resto-product-price del {
    color: #aaa;
    font-size: 13px;
    font-weight: 400;
}

/* Dark style variant */
.resto-style-dark .resto-product-card {
    background: var(--resto-dark-mid);
}

.resto-style-dark .resto-product-title {
    color: #fff;
}

.resto-style-dark .resto-product-image {
    background: var(--resto-dark);
}

/* Minimal style variant */
.resto-style-minimal .resto-product-card {
    box-shadow: none;
    border: 1px solid var(--resto-border);
}

.resto-style-minimal .resto-product-card:hover {
    box-shadow: var(--resto-shadow);
    border-color: var(--resto-red);
}


/* ============================================
   PRODUCT FILTER TABS
   ============================================ */

.resto-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--resto-border);
}

.resto-filter-tab {
    background: none;
    border: 2px solid var(--resto-border);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--resto-transition);
    border-radius: 3px;
    color: var(--resto-text-muted);
}

.resto-filter-tab:hover {
    border-color: var(--resto-red);
    color: var(--resto-red);
}

.resto-filter-tab.resto-filter-active {
    background: var(--resto-red);
    border-color: var(--resto-red);
    color: #fff;
}

.resto-style-dark .resto-filter-tabs {
    border-bottom-color: #444;
}

.resto-style-dark .resto-filter-tab {
    border-color: #444;
    color: #888;
}

.resto-style-dark .resto-filter-tab:hover {
    border-color: var(--resto-red);
    color: var(--resto-red);
}

/* Filter animation */
.resto-filterable-item {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.resto-filterable-item.resto-filter-hidden {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.resto-filterable-item.resto-filter-visible {
    opacity: 1;
    transform: scale(1);
}


/* ============================================
   ARTICLE CARDS
   ============================================ */

.resto-article-card {
    background: #fff;
    border-radius: var(--resto-radius);
    overflow: hidden;
    box-shadow: var(--resto-shadow);
    transition: var(--resto-transition);
}

.resto-article-card:hover {
    box-shadow: var(--resto-shadow-hover);
    transform: translateY(-4px);
}

.resto-article-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.resto-article-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--resto-bg-light);
}

.resto-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.resto-article-card:hover .resto-article-image img {
    transform: scale(1.06);
}

.resto-article-no-image {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: var(--resto-bg-light);
}

.resto-article-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--resto-red);
    color: #fff;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.resto-article-info {
    padding: 18px 20px;
}

.resto-article-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--resto-text-dark);
    margin: 0 0 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.resto-article-excerpt {
    font-size: 13px;
    color: var(--resto-text-muted);
    margin: 0 0 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.resto-article-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.resto-article-date,
.resto-article-author {
    font-size: 12px;
    color: var(--resto-text-muted);
}

.resto-article-author {
    font-style: italic;
}

/* Dark style */
.resto-style-dark .resto-article-card {
    background: var(--resto-dark-mid);
}

.resto-style-dark .resto-article-title {
    color: #fff;
}


/* ============================================
   FEATURED HERO LAYOUT
   ============================================ */

.resto-featured-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
    min-height: 450px;
}

.resto-featured-hero {
    position: relative;
    border-radius: var(--resto-radius);
    overflow: hidden;
    display: block;
    text-decoration: none !important;
}

.resto-featured-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.resto-featured-hero:hover .resto-featured-hero-image img {
    transform: scale(1.04);
}

.resto-featured-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #fff;
}

.resto-featured-hero-title {
    font-size: 26px;
    font-weight: 800;
    margin: 10px 0 8px;
    line-height: 1.2;
    color: #fff;
}

.resto-featured-hero-excerpt {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 8px;
    line-height: 1.5;
}

.resto-featured-hero-date {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Side cards */
.resto-featured-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resto-featured-side-card {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: var(--resto-radius);
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
    transition: var(--resto-transition);
    flex: 1;
    min-height: 0;
}

.resto-featured-side-card:hover {
    box-shadow: var(--resto-shadow-hover);
    transform: translateX(4px);
}

.resto-featured-side-image {
    width: 120px;
    min-width: 120px;
    overflow: hidden;
}

.resto-featured-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resto-featured-side-info {
    padding: 12px 14px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resto-article-cat-small {
    font-size: 10px;
    color: var(--resto-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
}

.resto-featured-side-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--resto-text-dark);
    margin: 0 0 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Dark featured */
.resto-style-dark .resto-featured-side-card {
    background: var(--resto-dark-mid);
}

.resto-style-dark .resto-featured-side-info h3 {
    color: #fff;
}

@media (max-width: 768px) {
    .resto-featured-layout {
        grid-template-columns: 1fr;
    }

    .resto-featured-hero {
        min-height: 280px;
    }

    .resto-featured-side-image {
        width: 90px;
        min-width: 90px;
    }
}


/* ============================================
   CATEGORY CARDS (Image Overlay)
   ============================================ */

.resto-cat-card {
    display: block;
    text-decoration: none !important;
    border-radius: var(--resto-radius);
    overflow: hidden;
    position: relative;
}

.resto-cat-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--resto-dark);
}

.resto-cat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.resto-cat-card:hover .resto-cat-card-image img {
    transform: scale(1.08);
    opacity: 0.7;
}

.resto-cat-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--resto-dark) 0%, var(--resto-dark-mid) 100%);
}

.resto-cat-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    text-align: center;
    transition: var(--resto-transition);
}

.resto-cat-card:hover .resto-cat-card-overlay {
    padding-bottom: 28px;
}

.resto-cat-card-name {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.resto-cat-card-count {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    margin-top: 4px;
}

/* Dark style variant */
.resto-style-dark .resto-cat-card {
    border: 1px solid #333;
}

/* Default style (no overlay) */
.resto-style-default .resto-cat-card-overlay {
    position: relative;
    background: #fff;
    padding: 15px;
}

.resto-style-default .resto-cat-card-name {
    color: var(--resto-text-dark);
    font-size: 14px;
}

.resto-style-default .resto-cat-card-count {
    color: var(--resto-text-muted);
}


/* ============================================
   CATEGORY SCROLLING BAR
   ============================================ */

.resto-category-bar {
    position: relative;
    margin: 20px 0;
}

.resto-catbar-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--resto-red) transparent;
}

.resto-catbar-scroll::-webkit-scrollbar {
    height: 4px;
}

.resto-catbar-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.resto-catbar-scroll::-webkit-scrollbar-thumb {
    background: var(--resto-red);
    border-radius: 4px;
}

.resto-catbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid var(--resto-border);
    border-radius: 50px;
    padding: 8px 20px 8px 8px;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--resto-transition);
}

.resto-catbar-item:hover {
    border-color: var(--resto-red);
    box-shadow: 0 2px 10px rgba(204,0,0,0.1);
    transform: translateY(-2px);
}

.resto-catbar-thumb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.resto-catbar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resto-catbar-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--resto-text-dark);
}

.resto-catbar-count {
    font-size: 12px;
    color: var(--resto-text-muted);
}

/* Pills style */
.resto-catbar-pills .resto-catbar-item {
    border-radius: 4px;
    padding: 10px 18px;
}

.resto-catbar-pills .resto-catbar-thumb {
    border-radius: 3px;
}

/* Dark style */
.resto-catbar-dark .resto-catbar-item {
    background: var(--resto-dark-mid);
    border-color: #444;
}

.resto-catbar-dark .resto-catbar-item:hover {
    border-color: var(--resto-red);
}

.resto-catbar-dark .resto-catbar-name {
    color: #fff;
}


/* ============================================
   HERO BANNER
   ============================================ */

.resto-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--resto-dark);
    overflow: hidden;
    border-radius: var(--resto-radius);
}

.resto-hero-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
}

.resto-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    max-width: 700px;
}

.resto-hero-align-center { text-align: center; }
.resto-hero-align-center .resto-hero-content { margin: 0 auto; }

.resto-hero-align-left { justify-content: flex-start; }
.resto-hero-align-left .resto-hero-content { text-align: left; margin-left: 5%; }

.resto-hero-align-right { justify-content: flex-end; }
.resto-hero-align-right .resto-hero-content { text-align: right; margin-right: 5%; }

.resto-hero-title {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.resto-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 28px;
}

.resto-hero-btn {
    display: inline-block;
    background: var(--resto-red);
    color: #fff !important;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none !important;
    border-radius: 3px;
    transition: var(--resto-transition);
}

.resto-hero-btn:hover {
    background: var(--resto-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(204,0,0,0.3);
    color: #fff !important;
}

@media (max-width: 768px) {
    .resto-hero-title { font-size: 28px; }
    .resto-hero-subtitle { font-size: 15px; }
    .resto-hero-content { padding: 40px 20px; }
}


/* ============================================
   CAROUSEL / SWIPER OVERRIDES
   ============================================ */

.resto-carousel-wrap {
    position: relative;
    padding: 0 0 50px;
}

.resto-carousel-wrap .swiper {
    padding: 0 4px;
}

.resto-carousel-wrap .swiper-slide {
    height: auto;
}

.resto-carousel-wrap .resto-product-card,
.resto-carousel-wrap .resto-article-card {
    height: 100%;
}

.resto-swiper-prev,
.resto-swiper-next {
    color: var(--resto-red) !important;
    background: rgba(255,255,255,0.95) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
}

.resto-swiper-prev::after,
.resto-swiper-next::after {
    font-size: 16px !important;
    font-weight: 900 !important;
}

.resto-swiper-prev:hover,
.resto-swiper-next:hover {
    background: var(--resto-red) !important;
    color: #fff !important;
}

.resto-swiper-dots {
    bottom: 8px !important;
}

.resto-swiper-dots .swiper-pagination-bullet {
    background: var(--resto-red) !important;
    opacity: 0.3;
}

.resto-swiper-dots .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Dark carousel style */
.resto-style-dark .resto-swiper-prev,
.resto-style-dark .resto-swiper-next {
    background: var(--resto-dark-mid) !important;
    color: #fff !important;
}

.resto-style-dark .resto-swiper-prev:hover,
.resto-style-dark .resto-swiper-next:hover {
    background: var(--resto-red) !important;
}


/* ============================================
   CTA SECTION
   ============================================ */

.resto-cta-section {
    padding: 60px 40px;
    border-radius: var(--resto-radius);
    background: var(--resto-bg-light);
}

.resto-cta-default {
    background: var(--resto-bg-light);
}

.resto-cta-dark {
    background: var(--resto-dark);
    color: #fff;
}

.resto-cta-accent {
    background: var(--resto-red);
    color: #fff;
}

.resto-cta-bordered {
    background: transparent;
    border: 2px solid var(--resto-border);
}

.resto-cta-align-center { text-align: center; }
.resto-cta-align-center .resto-cta-content { margin: 0 auto; }
.resto-cta-align-left { text-align: left; }
.resto-cta-align-right { text-align: right; }

.resto-cta-content {
    max-width: 700px;
}

.resto-cta-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
}

.resto-cta-subtitle {
    font-size: 16px;
    opacity: 0.85;
    margin: 0 0 24px;
    line-height: 1.6;
}

.resto-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.resto-cta-align-center .resto-cta-buttons { justify-content: center; }
.resto-cta-align-right .resto-cta-buttons { justify-content: flex-end; }

.resto-cta-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    border-radius: 3px;
    transition: var(--resto-transition);
}

.resto-cta-btn-primary {
    background: var(--resto-red);
    color: #fff !important;
}

.resto-cta-btn-primary:hover {
    background: var(--resto-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204,0,0,0.3);
}

.resto-cta-btn-secondary {
    background: transparent;
    color: inherit !important;
    border: 2px solid currentColor;
}

.resto-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.resto-cta-dark .resto-cta-btn-secondary {
    border-color: rgba(255,255,255,0.4);
    color: #fff !important;
}

.resto-cta-accent .resto-cta-btn-primary {
    background: #fff;
    color: var(--resto-red) !important;
}

@media (max-width: 768px) {
    .resto-cta-section { padding: 40px 24px; }
    .resto-cta-title { font-size: 24px; }
    .resto-cta-buttons { flex-direction: column; align-items: stretch; }
    .resto-cta-btn { text-align: center; }
}


/* ============================================
   BRAND LOGO CAROUSEL
   ============================================ */

.resto-logos-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--resto-text-muted);
    margin: 0 0 20px;
}

.resto-logos-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.resto-logo-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.resto-logo-item img {
    max-height: 60px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--resto-transition);
}

.resto-logos-grayscale .resto-logo-item img {
    filter: grayscale(100%) opacity(0.5);
}

.resto-logos-grayscale .resto-logo-item img:hover {
    filter: grayscale(0%) opacity(1);
}

.resto-logos-carousel .resto-swiper-prev,
.resto-logos-carousel .resto-swiper-next {
    display: none !important;
}

.resto-logos-carousel .resto-swiper-dots {
    display: none !important;
}

.resto-style-dark .resto-logo-item {
    background: var(--resto-dark-mid);
    border-radius: var(--resto-radius);
}


/* ============================================
   FAQ ACCORDION
   ============================================ */

.resto-faq {
    max-width: 800px;
}

.resto-faq-item {
    border: 1px solid var(--resto-border);
    border-radius: var(--resto-radius);
    margin-bottom: 8px;
    overflow: hidden;
    transition: var(--resto-transition);
}

.resto-faq-item:hover {
    border-color: var(--resto-red);
}

.resto-faq-item[open] {
    border-color: var(--resto-red);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.resto-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--resto-text-dark);
    list-style: none;
    transition: var(--resto-transition);
}

.resto-faq-question::-webkit-details-marker {
    display: none;
}

.resto-faq-question::marker {
    display: none;
    content: '';
}

.resto-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    margin-left: 16px;
}

.resto-faq-icon::before,
.resto-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--resto-red);
    transition: transform 0.3s ease;
}

.resto-faq-icon::before {
    width: 2px;
    height: 16px;
    top: 2px;
    left: 9px;
}

.resto-faq-icon::after {
    width: 16px;
    height: 2px;
    top: 9px;
    left: 2px;
}

.resto-faq-item[open] .resto-faq-icon::before {
    transform: rotate(90deg);
}

.resto-faq-answer {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--resto-text-muted);
}

.resto-faq-answer p {
    margin: 0 0 10px;
}

.resto-faq-answer p:last-child {
    margin-bottom: 0;
}

/* Dark FAQ */
.resto-faq-dark .resto-faq-item {
    background: var(--resto-dark-mid);
    border-color: #444;
}

.resto-faq-dark .resto-faq-question {
    color: #fff;
}

.resto-faq-dark .resto-faq-answer {
    color: #aaa;
}


/* ============================================
   VIDEO EMBED SECTION
   ============================================ */

.resto-video-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--resto-dark);
    overflow: hidden;
    border-radius: var(--resto-radius);
    cursor: pointer;
}

.resto-video-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
}

.resto-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.resto-video-title {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.resto-video-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin: 0 0 24px;
}

.resto-video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
    display: inline-block;
}

.resto-video-play-btn:hover {
    transform: scale(1.15);
}

.resto-video-play-btn svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.resto-video-iframe-wrap {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: #000;
}

.resto-video-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* ============================================
   STATS / COUNTER BAR
   ============================================ */

.resto-stats-bar {
    gap: 24px;
    padding: 40px 20px;
}

.resto-stats-align-center .resto-stat-item { text-align: center; }
.resto-stats-align-left .resto-stat-item { text-align: left; }

.resto-stat-item {
    padding: 20px;
}

.resto-stat-icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--resto-red);
}

.resto-stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--resto-text-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.resto-stat-prefix,
.resto-stat-suffix {
    font-size: 28px;
    font-weight: 700;
}

.resto-stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--resto-text-muted);
    font-weight: 600;
}

/* Dark stats */
.resto-stats-dark {
    background: var(--resto-dark);
    border-radius: var(--resto-radius);
}

.resto-stats-dark .resto-stat-number {
    color: #fff;
}

.resto-stats-dark .resto-stat-label {
    color: #aaa;
}

/* Accent stats */
.resto-stats-accent {
    background: var(--resto-red);
    border-radius: var(--resto-radius);
}

.resto-stats-accent .resto-stat-number {
    color: #fff;
}

.resto-stats-accent .resto-stat-label {
    color: rgba(255,255,255,0.7);
}

.resto-stats-accent .resto-stat-icon {
    color: #fff;
}

@media (max-width: 768px) {
    .resto-stat-number { font-size: 32px; }
    .resto-stat-prefix, .resto-stat-suffix { font-size: 22px; }
}


/* ============================================
   CONTENT CARDS (Icon + Title + Text)
   ============================================ */

.resto-content-card {
    background: #fff;
    border-radius: var(--resto-radius);
    box-shadow: var(--resto-shadow);
    overflow: hidden;
    transition: var(--resto-transition);
}

.resto-content-card:hover {
    box-shadow: var(--resto-shadow-hover);
    transform: translateY(-4px);
}

.resto-card-link {
    display: block;
    padding: var(--resto-card-padding, 24px);
    text-decoration: none !important;
    color: inherit !important;
}

.resto-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.resto-card-icon-img {
    margin-bottom: 16px;
}

.resto-card-icon-img img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.resto-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--resto-text-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}

.resto-card-text {
    font-size: 14px;
    color: var(--resto-text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.resto-card-text p { margin: 0; }

.resto-card-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--resto-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resto-cards-align-center .resto-card-link { text-align: center; }
.resto-cards-align-left .resto-card-link { text-align: left; }

.resto-cards-bordered .resto-content-card {
    box-shadow: none;
    border: 1px solid var(--resto-border);
}
.resto-cards-bordered .resto-content-card:hover { border-color: var(--resto-red); }

.resto-cards-dark .resto-content-card { background: var(--resto-dark-mid); }
.resto-cards-dark .resto-card-title { color: #fff; }
.resto-cards-dark .resto-card-text { color: #aaa; }


/* ============================================
   SPLIT SECTION (Image + Text)
   ============================================ */

.resto-split-section {
    display: grid;
    gap: var(--resto-grid-gap, 24px);
    align-items: center;
    min-height: 300px;
}

.resto-split-valign-top { align-items: start; }
.resto-split-valign-bottom { align-items: end; }

.resto-split-image {
    overflow: hidden;
    border-radius: var(--resto-radius);
}

.resto-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.resto-split-content {
    padding: 20px;
}

.resto-split-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--resto-red);
    margin-bottom: 8px;
}

.resto-split-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--resto-text-dark);
    margin: 0 0 16px;
    line-height: 1.2;
}

.resto-split-text {
    font-size: 15px;
    color: var(--resto-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.resto-split-text p { margin: 0 0 12px; }

.resto-split-dark .resto-split-content { color: #fff; }
.resto-split-dark .resto-split-title { color: #fff; }
.resto-split-dark .resto-split-text { color: #bbb; }

@media (max-width: 768px) {
    .resto-split-section {
        grid-template-columns: 1fr !important;
    }
    .resto-split-title { font-size: 24px; }
    .resto-split-img-right .resto-split-image { order: -1; }
}


/* ============================================
   PRICING TABLE
   ============================================ */

.resto-price-card {
    background: #fff;
    border-radius: var(--resto-radius);
    box-shadow: var(--resto-shadow);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--resto-transition);
    display: flex;
    flex-direction: column;
}

.resto-price-card:hover {
    box-shadow: var(--resto-shadow-hover);
    transform: translateY(-4px);
}

.resto-price-featured {
    border: 2px solid var(--resto-red);
    transform: scale(1.03);
    z-index: 1;
}

.resto-price-featured:hover { transform: scale(1.05); }

.resto-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--resto-red);
    color: #fff;
    padding: 4px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    white-space: nowrap;
}

.resto-price-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--resto-text-dark);
    margin: 0 0 16px;
}

.resto-price-amount {
    margin-bottom: 24px;
}

.resto-price-value {
    font-size: 42px;
    font-weight: 900;
    color: var(--resto-text-dark);
    line-height: 1;
}

.resto-price-period {
    font-size: 14px;
    color: var(--resto-text-muted);
    display: block;
    margin-top: 4px;
}

.resto-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    flex-grow: 1;
}

.resto-price-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--resto-border);
    font-size: 14px;
    color: var(--resto-text-dark);
    position: relative;
    padding-left: 24px;
}

.resto-price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--resto-red);
    font-weight: 700;
}

.resto-price-features li.resto-price-disabled {
    color: var(--resto-text-muted);
    text-decoration: line-through;
}

.resto-price-features li.resto-price-disabled::before {
    content: '✗';
    color: #ccc;
}

.resto-price-btn {
    display: block;
    background: var(--resto-red);
    color: #fff !important;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    border-radius: 3px;
    transition: var(--resto-transition);
    text-align: center;
}

.resto-price-btn:hover {
    background: var(--resto-red-hover);
}

.resto-pricing-dark .resto-price-card { background: var(--resto-dark-mid); }
.resto-pricing-dark .resto-price-title, .resto-pricing-dark .resto-price-value { color: #fff; }
.resto-pricing-dark .resto-price-features li { color: #ccc; border-color: #444; }


/* ============================================
   TIMELINE / PROCESS STEPS
   ============================================ */

.resto-timeline {
    position: relative;
    padding-left: 40px;
}

.resto-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--resto-border);
}

.resto-step {
    position: relative;
    padding-bottom: 32px;
    display: flex;
    gap: 20px;
}

.resto-step:last-child { padding-bottom: 0; }

.resto-step-marker {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    background: var(--resto-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-shrink: 0;
}

.resto-step-number {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.resto-step-icon {
    font-size: 16px;
}

.resto-step-content {
    flex: 1;
    padding-top: 4px;
}

.resto-step-date {
    font-size: 12px;
    color: var(--resto-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resto-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--resto-text-dark);
    margin: 4px 0 8px;
}

.resto-step-text {
    font-size: 14px;
    color: var(--resto-text-muted);
    line-height: 1.6;
}

.resto-step-text p { margin: 0; }

/* Horizontal timeline */
.resto-timeline-horizontal {
    display: flex;
    padding-left: 0;
    gap: 0;
    overflow-x: auto;
}

.resto-timeline-horizontal::before { display: none; }

.resto-timeline-horizontal .resto-step {
    flex-direction: column;
    text-align: center;
    padding: 0 24px 0;
    min-width: 180px;
    border-top: 2px solid var(--resto-border);
    padding-top: 32px;
}

.resto-timeline-horizontal .resto-step-marker {
    position: absolute;
    left: 50%;
    top: -16px;
    transform: translateX(-50%);
}

/* Dark timeline */
.resto-timeline-dark .resto-step-title { color: #fff; }
.resto-timeline-dark .resto-step-text { color: #aaa; }
.resto-timeline-dark::before { background: #444; }
.resto-timeline-dark.resto-timeline-horizontal .resto-step { border-color: #444; }


/* ============================================
   TABBED CONTENT
   ============================================ */

.resto-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--resto-border);
    margin-bottom: 24px;
    overflow-x: auto;
}

.resto-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--resto-text-muted);
    cursor: pointer;
    transition: var(--resto-transition);
    white-space: nowrap;
}

.resto-tab-btn:hover {
    color: var(--resto-red);
}

.resto-tab-btn.resto-tab-active {
    color: var(--resto-red);
    border-bottom-color: var(--resto-red);
}

.resto-tab-panel {
    display: none;
    animation: restoFadeIn 0.3s ease;
}

.resto-tab-panel-active {
    display: block;
}

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

/* Dark tabs */
.resto-tabs-dark .resto-tabs-nav { border-color: #444; }
.resto-tabs-dark .resto-tab-btn { color: #888; }

/* Pills style */
.resto-tabs-pills .resto-tabs-nav {
    border-bottom: none;
    gap: 8px;
    margin-bottom: 20px;
}

.resto-tabs-pills .resto-tab-btn {
    border: 2px solid var(--resto-border);
    border-radius: 4px;
    margin-bottom: 0;
    padding: 8px 20px;
}

.resto-tabs-pills .resto-tab-btn.resto-tab-active {
    background: var(--resto-red);
    border-color: var(--resto-red);
    color: #fff;
}


/* ============================================
   ALERT / NOTICE BANNERS
   ============================================ */

.resto-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--resto-radius);
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

.resto-alert-icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.resto-alert-body { flex: 1; }

.resto-alert-title {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.resto-alert-text p { margin: 0; }

.resto-alert-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    padding: 0 4px;
    line-height: 1;
    color: inherit;
}

.resto-alert-close:hover { opacity: 1; }

.resto-alert-info {
    background: #e8f4fd;
    border-left: 4px solid #2196f3;
    color: #1565c0;
}

.resto-alert-success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.resto-alert-warning {
    background: #fff8e1;
    border-left: 4px solid #ff9800;
    color: #e65100;
}

.resto-alert-danger {
    background: #fce4ec;
    border-left: 4px solid #f44336;
    color: #c62828;
}

.resto-alert-tip {
    background: #f3e5f5;
    border-left: 4px solid #9c27b0;
    color: #6a1b9a;
}


/* ============================================
   COUNTDOWN TIMER
   ============================================ */

.resto-countdown {
    text-align: center;
    padding: 30px 20px;
}

.resto-countdown-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--resto-text-dark);
    margin-bottom: 20px;
}

.resto-countdown-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.resto-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.resto-cd-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--resto-text-dark);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.resto-cd-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--resto-text-muted);
    margin-top: 6px;
    font-weight: 600;
}

.resto-cd-sep {
    font-size: 36px;
    font-weight: 300;
    color: var(--resto-text-muted);
    margin-top: -20px;
}

.resto-countdown-expired {
    font-size: 16px;
    color: var(--resto-text-muted);
    font-style: italic;
}

/* Dark countdown */
.resto-countdown-dark {
    background: var(--resto-dark);
    border-radius: var(--resto-radius);
}
.resto-countdown-dark .resto-countdown-title,
.resto-countdown-dark .resto-cd-number { color: #fff; }

/* Accent countdown */
.resto-countdown-accent {
    background: var(--resto-red);
    border-radius: var(--resto-radius);
}
.resto-countdown-accent .resto-countdown-title,
.resto-countdown-accent .resto-cd-number { color: #fff; }
.resto-countdown-accent .resto-cd-label,
.resto-countdown-accent .resto-cd-sep { color: rgba(255,255,255,0.6); }

@media (max-width: 480px) {
    .resto-cd-number { font-size: 32px; }
    .resto-cd-unit { min-width: 50px; }
    .resto-cd-sep { font-size: 24px; }
}


/* ============================================
   TRUST BADGES
   ============================================ */

.resto-badge-item {
    text-align: center;
    padding: 20px 12px;
}

.resto-badge-icon {
    font-size: 40px;
    margin-bottom: 12px;
    line-height: 1;
}

.resto-badge-image {
    margin-bottom: 12px;
}

.resto-badge-image img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.resto-badges-large .resto-badge-icon { font-size: 52px; }
.resto-badges-large .resto-badge-image img { max-height: 64px; }
.resto-badges-small .resto-badge-icon { font-size: 28px; }
.resto-badges-small .resto-badge-image img { max-height: 32px; }

.resto-badge-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--resto-text-dark);
    margin-bottom: 4px;
}

.resto-badge-subtitle {
    font-size: 12px;
    color: var(--resto-text-muted);
}

.resto-badges-bordered .resto-badge-item {
    border: 1px solid var(--resto-border);
    border-radius: var(--resto-radius);
}

.resto-badges-dark .resto-badge-title { color: #fff; }
.resto-badges-dark .resto-badge-subtitle { color: #aaa; }


/* ============================================
   FILTER LOADING SPINNER
   ============================================ */

.resto-filter-loading {
    font-size: 14px;
    color: var(--resto-text-muted);
}

.resto-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--resto-border);
    border-top-color: var(--resto-red);
    border-radius: 50%;
    animation: restoSpin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes restoSpin {
    to { transform: rotate(360deg); }
}

.resto-filter-grid {
    transition: opacity 0.2s ease;
}
