/* ============================================
   Danh Pham Cuisine Vietnamienne — Restar Theme
   Faithful reproduction of danhphamcuisine.com
   Theme color: #FA8507 (orange)
   Title font: ZCOOL XiaoWei
   Body font: Open Sans
   ============================================ */

:root {
    --theme-color: #FA8507;
    --theme-color2: #e07600;
    --title-color: #1F1F1F;
    --body-color: #5C6574;
    --white: #ffffff;
    --black: #000000;
    --black2: #101018;
    --smoke: #F8F8F8;
    --smoke2: #F4EFE3;
    --gray: #bdbdbd;
    --light: #8E97A6;
    --border-color: #D8DDE1;
    --success: #28a745;
    --error: #dc3545;
    --title-font: 'ZCOOL XiaoWei', serif;
    --body-font: 'Open Sans', sans-serif;
    --style-font: 'Great Vibes', cursive;
    --container-max: 1320px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --transition: all 0.4s ease;
}

/* ── Reset & Base ─────────────────────────── */

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

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--body-color);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font);
    font-weight: 400;
    line-height: 1.4;
    color: var(--title-color);
    margin-bottom: 15px;
}

h1 { font-size: 74px; }
h2 { font-size: 48px; }
h3 { font-size: 36px; }
h4 { font-size: 30px; }
h5 { font-size: 24px; }
h6 { font-size: 20px; }

a {
    text-decoration: none;
    color: var(--title-color);
    transition: var(--transition);
}

a:hover {
    color: var(--theme-color);
}

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

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 15px;
}

/* ── Preloader ────────────────────────────── */

#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--theme-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ── Buttons (Restar th-btn style) ────────── */

.th-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    background: var(--theme-color);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    padding: 18px 35px;
    min-width: 170px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    line-height: 1;
    border-radius: 50px;
}

.th-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--title-color);
    z-index: -1;
    width: 0;
    transition: width 0.4s ease-out;
}

.th-btn:hover::before {
    width: 100%;
}

.th-btn:hover {
    color: var(--white);
}

.th-btn i {
    margin-right: 8px;
}

.th-btn.style2 {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 17px 40px;
}

.th-btn.style2:hover {
    background: var(--white);
    color: var(--title-color);
}

.th-btn.style2::before {
    display: none;
}

.th-btn.style-border {
    background: transparent;
    border: 2px solid var(--title-color);
    color: var(--title-color);
}

.th-btn.style-border:hover {
    border-color: var(--theme-color);
    background: var(--theme-color);
    color: var(--white);
}

.th-btn.style-border::before {
    display: none;
}

/* ── Header ───────────────────────────────── */

.th-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-top {
    background: var(--black2);
    color: rgba(255,255,255,0.75);
    padding: 8px 0;
    font-size: 14px;
}

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

.header-top-info {
    display: flex;
    gap: 25px;
}

.header-top-info span {
    color: rgba(255,255,255,0.75);
}

.header-top-info i {
    color: var(--theme-color);
    margin-right: 6px;
}

.header-top-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.header-top-links a:hover {
    color: var(--theme-color);
}

.btn-lang {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 3px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--body-font);
}

.btn-lang:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.lang-switch form { display: inline; }

/* ── Main Navigation ──────────────────────── */

.sticky-wrapper {
    background: var(--white);
    transition: all 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    animation: stickyAni 0.4s ease-in-out;
}

@keyframes stickyAni {
    from { transform: translateY(-40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

.logo-img {
    max-height: 70px;
    width: auto;
}

/* Main Menu */
.main-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-menu > li {
    position: relative;
    margin: 0 17px;
}

.main-menu > li > a {
    display: block;
    padding: 36px 0;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--body-font);
    color: var(--title-color);
    text-transform: uppercase;
    position: relative;
}

.main-menu > li > a:hover {
    color: var(--theme-color);
}

/* Submenu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    padding: 18px 20px;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(1, 15, 28, 0.06);
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.4s ease;
    z-index: 100;
}

.has-submenu:hover > .sub-menu {
    transform: scaleY(1);
}

.sub-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    color: var(--body-color);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sub-menu li:last-child a {
    border-bottom: none;
}

.sub-menu li a:hover {
    color: var(--theme-color);
    padding-left: 5px;
}

.submenu-indicator {
    font-size: 10px;
    margin-left: 5px;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 99px;
    background: var(--smoke);
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--theme-color);
    color: var(--white);
}

.icon-btn .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Toggle */
.th-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
}

.th-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--title-color);
    transition: var(--transition);
}

/* ── Hero Section ─────────────────────────── */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 80px;
}

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

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    opacity: 0.5;
}

.hero-shape.shape-1 {
    top: 8%;
    left: -3%;
    max-width: 280px;
    animation: floatY 8s ease-in-out infinite;
}

.hero-shape.shape-2 {
    bottom: 5%;
    right: -3%;
    max-width: 220px;
    animation: floatY 10s ease-in-out infinite reverse;
}

.hero-shape.shape-3 {
    top: 45%;
    right: 8%;
    max-width: 140px;
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 84px;
    font-family: var(--title-font);
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.15;
}

.hero-tagline {
    font-family: var(--style-font);
    font-size: 36px;
    color: var(--theme-color);
    margin-bottom: 40px;
    font-weight: 400;
}

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

.hero-social {
    margin-top: 50px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-social a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.hero-social a:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}

/* ── Info Bar ─────────────────────────────── */

.info-bar {
    background: var(--smoke);
    padding: 50px 0 30px;
    position: relative;
    z-index: 5;
}

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

.info-item i {
    font-size: 36px;
    color: var(--theme-color);
    flex-shrink: 0;
}

.info-item h5 {
    font-size: 20px;
    margin-bottom: 3px;
}

.info-item p {
    margin: 0;
    color: var(--body-color);
    font-size: 14px;
}

.info-item a {
    color: var(--body-color);
}

.info-item a:hover {
    color: var(--theme-color);
}

.info-notice {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 15px;
    font-style: italic;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

/* ── Section Styles ───────────────────────── */

.section-space {
    padding: var(--section-space) 0;
}

.section-title {
    margin-bottom: 60px;
}

.sub-title {
    display: inline-block;
    font-family: var(--style-font);
    font-size: 20px;
    color: var(--theme-color);
    margin-bottom: 10px;
    position: relative;
}

.section-title h2 {
    margin-bottom: 0;
}

.title-line {
    width: 61px;
    height: 3px;
    background: var(--theme-color);
    margin: 15px auto 0;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    right: -13px;
    top: 0;
    width: 8px;
    height: 3px;
    background: var(--theme-color);
}

.title-line::before {
    content: '';
    position: absolute;
    right: -23px;
    top: 0;
    width: 3px;
    height: 3px;
    background: var(--theme-color);
}

.bg-dark-section {
    background: var(--black2);
}

.bg-smoke {
    background: var(--smoke);
}

.bg-smoke2 {
    background: var(--smoke2);
}

.section-title.light h2 {
    color: var(--white);
}

.section-title.light .sub-title {
    color: var(--theme-color);
}

.section-desc {
    color: var(--body-color);
    max-width: 650px;
    margin: 15px auto 0;
}

/* ── Page Header (Breadcrumb) ─────────────── */

.page-header {
    background-size: cover;
    background-position: center;
    padding: 190px 0 70px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 10px;
}

.breadcrumb-nav {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
}

.breadcrumb-nav a {
    color: var(--theme-color);
}

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

/* ── Menu Cards (Food Items) — Modern ─────── */

.menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s cubic-bezier(.25,.8,.25,1);
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.menu-card-img {
    height: 240px;
    overflow: hidden;
    background: var(--smoke2);
    position: relative;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.1);
}

/* Gradient overlay on hover */
.menu-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-card:hover .menu-card-img::after {
    opacity: 1;
}

/* Floating price badge */
/* .menu-price — see modern.css */

.menu-card-body {
    padding: 22px 20px;
    text-align: left;
}

.menu-card-body h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: var(--title-font);
    line-height: 1.3;
}

.menu-card-body p {
    font-size: 13px;
    color: var(--body-color);
    margin-bottom: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Menu Filter ──────────────────────────── */

.menu-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    color: var(--body-color);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-family: var(--body-font);
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(250, 133, 7, 0.3);
}

/* ── Menu Bottom CTA ──────────────────────── */

.menu-bottom-cta {
    margin-top: 60px;
    padding: 50px;
    background: var(--smoke);
}

.menu-bottom-cta img {
    width: 100%;
}

.menu-bottom-cta h3 {
    font-size: 36px;
}

/* ── Event Section ────────────────────────── */

.event-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s cubic-bezier(.25,.8,.25,1);
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.bg-dark-section .event-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.event-card-img {
    height: 220px;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-body {
    padding: 25px;
}

.bg-dark-section .event-card-body h4 {
    color: var(--white);
}

.bg-dark-section .event-card-body p {
    color: rgba(255,255,255,0.65);
}

.event-date {
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 600;
}

.event-date i { margin-right: 5px; }

/* ── Blog Cards ───────────────────────────── */

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s cubic-bezier(.25,.8,.25,1);
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card-body {
    padding: 25px;
}

.blog-date {
    font-size: 14px;
    color: var(--body-color);
    margin-right: 10px;
}

.blog-category {
    display: inline-block;
    background: var(--theme-color);
    color: var(--white);
    font-size: 12px;
    padding: 2px 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.blog-card-body h4 {
    font-size: 24px;
    margin: 12px 0 0;
}

.blog-card-body h4 a {
    color: var(--title-color);
}

.blog-card-body h4 a:hover {
    color: var(--theme-color);
}

.read-more {
    font-weight: 600;
    font-size: 14px;
    color: var(--theme-color);
    text-transform: uppercase;
}

/* Blog Detail */
.blog-detail {
    padding: 40px;
}

.blog-meta {
    margin-bottom: 20px;
    color: var(--body-color);
}

.blog-meta i {
    color: var(--theme-color);
    margin-right: 5px;
}

.blog-detail-img {
    margin-bottom: 30px;
}

.blog-content {
    line-height: 1.9;
}

/* ── Product Cards — Modern ───────────────── */

.th-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.th-product {
    text-align: center;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s cubic-bezier(.25,.8,.25,1);
}

.th-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.th-product .product-img {
    background: linear-gradient(145deg, var(--smoke) 0%, var(--smoke2) 100%);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.th-product .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
}

.th-product:hover .product-img img {
    transform: scale(1.08);
}

/* Subtle overlay on hover */
.th-product .product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.th-product:hover .product-img::after {
    opacity: 1;
}

/* Product tag */
.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--theme-color);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product actions — modern floating buttons */
.th-product .product-actions {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 8px;
    z-index: 3;
    opacity: 0;
    transition: all 0.35s cubic-bezier(.25,.8,.25,1);
}

.th-product:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-action-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.product-action-btn:hover {
    background: var(--theme-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Product text info */
.th-product .product-title {
    font-family: var(--title-font);
    font-size: 20px;
    margin: 0;
    padding: 16px 16px 6px;
    line-height: 1.3;
}

.th-product .product-title a {
    color: var(--title-color);
}

.th-product .product-title a:hover {
    color: var(--theme-color);
}

.th-product .product-category {
    font-size: 12px;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 0 16px;
}

.th-product .price {
    display: block;
    color: var(--theme-color);
    font-weight: 700;
    font-size: 20px;
    padding: 4px 16px 20px;
    font-family: var(--body-font);
}

.th-product .price del {
    color: var(--gray);
    margin-left: 8px;
    font-size: 14px;
    font-weight: 400;
}

/* ── Shop Page ────────────────────────────── */

.shop-sidebar {
    padding-right: 20px;
}

.sidebar-widget {
    margin-bottom: 35px;
}

.sidebar-widget h4 {
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--theme-color);
}

.sidebar-widget h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 46px;
    width: 8px;
    height: 3px;
    background: var(--theme-color);
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-right: none;
    font-size: 14px;
    outline: none;
    font-family: var(--body-font);
}

.search-form input:focus {
    border-color: var(--theme-color);
}

.search-form button {
    padding: 12px 18px;
    background: var(--theme-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--title-color);
}

.category-list li {
    margin-bottom: 0;
}

.category-list li a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: var(--body-color);
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.category-list li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-right: 12px;
    color: var(--theme-color);
}

.category-list li a:hover,
.category-list li a.active {
    color: var(--theme-color);
    padding-left: 5px;
}

.category-list li a .count {
    margin-left: auto;
    color: var(--light);
    font-size: 13px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.results-count {
    color: var(--body-color);
    margin: 0;
    font-size: 14px;
}

.shop-pagination .pagination {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 40px;
}

.shop-pagination .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--smoke);
    color: var(--title-color);
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.shop-pagination .page-item.active .page-link,
.shop-pagination .page-link:hover {
    background: var(--theme-color);
    color: var(--white);
}

/* Empty state */
.empty-state {
    padding: 60px 0;
}

.empty-state i {
    display: block;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ── Product Detail Page ──────────────────── */

.product-gallery .main-image {
    background: var(--smoke2);
    padding: 20px;
    margin-bottom: 15px;
}

.product-gallery .main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumb {
    width: 80px;
    height: 80px;
    background: var(--smoke2);
    padding: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumb.active,
.thumb:hover {
    border-color: var(--theme-color);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-about {
    padding-left: 20px;
}

.product-about h2 {
    font-size: 36px;
}

.product-detail-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.tax-note {
    font-size: 14px;
    color: var(--body-color);
    font-weight: 400;
}

.product-description {
    color: var(--body-color);
    margin-bottom: 25px;
    line-height: 1.8;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.product-detail-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
}

.quantity-input.small {
    display: inline-flex;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--smoke);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--theme-color);
    color: var(--white);
}

.quantity-input input {
    width: 55px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 600;
    height: 45px;
    outline: none;
    font-family: var(--body-font);
}

.quantity-input.small .qty-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
}

.quantity-input.small input {
    width: 40px;
    height: 35px;
    font-size: 14px;
}

.product-labels {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.label-item {
    margin-bottom: 15px;
}

.label-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: var(--title-color);
}

.label-item p {
    color: var(--body-color);
    font-size: 14px;
    margin: 0;
}

.allergen-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
}

.allergen-warning i {
    color: #ffc107;
}

/* ── WooCommerce Cart ─────────────────────── */

.cart-table-wrapper {
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background: var(--smoke);
    padding: 16px 20px;
    text-align: left;
    font-family: var(--title-font);
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--title-color);
}

.cart-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-product-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--title-color);
}

.cart-product-price,
.cart-subtotal {
    font-weight: 700;
    font-size: 16px;
}

.cart-subtotal {
    color: var(--theme-color);
}

.btn-remove {
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.btn-remove:hover {
    color: var(--error);
}

.cart-totals {
    background: var(--smoke);
    padding: 30px;
    margin-top: 30px;
}

.cart-totals table {
    width: 100%;
}

.cart-totals td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-totals .order-total td {
    font-size: 22px;
    font-weight: 700;
    color: var(--title-color);
    border-bottom: none;
    padding-top: 20px;
}

.cart-totals .order-total .amount {
    color: var(--theme-color);
}

.cart-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.empty-cart {
    padding: 60px 0;
    text-align: center;
}

.empty-cart i {
    display: block;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ── Contact ──────────────────────────────── */

.contact-info-box {
    background: var(--title-color);
    color: var(--white);
    padding: 40px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon {
    width: 55px;
    height: 55px;
    background: rgba(250, 133, 7, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: rgba(255,255,255,0.65);
    margin: 0;
    font-size: 14px;
}

.contact-info-item a {
    color: rgba(255,255,255,0.65);
}

.contact-info-item a:hover {
    color: var(--theme-color);
}

.contact-form-box {
    padding: 40px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form-box h3 {
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: var(--body-font);
    transition: var(--transition);
    border-radius: 0;
}

.contact-form .form-control:focus {
    border-color: var(--theme-color);
    box-shadow: none;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px 20px;
    margin-bottom: 25px;
}

.alert-success i { margin-right: 8px; }

/* ── Footer ───────────────────────────────── */

.site-footer {
    background-color: var(--black2);
    background-size: cover;
    background-position: center;
    color: rgba(255,255,255,0.65);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16, 16, 24, 0.92);
}

.footer-main {
    padding: 80px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-logo-img {
    max-height: 80px;
    width: auto;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.footer-widget h4 {
    color: var(--white);
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 30px;
    padding-bottom: 18px;
    position: relative;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--theme-color);
}

.footer-widget h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 46px;
    width: 8px;
    height: 3px;
    background: var(--theme-color);
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    padding-left: 16px;
    position: relative;
}

.footer-widget ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-color);
}

.footer-widget ul li a:hover {
    color: var(--theme-color);
    padding-left: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.65);
}

.contact-list li a {
    padding-left: 0;
}

.contact-list li a::before {
    display: none;
}

.contact-list li i {
    color: var(--theme-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-list li a {
    color: rgba(255,255,255,0.65);
}

.contact-list li a:hover {
    color: var(--theme-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    background: var(--title-color);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--white);
}

.footer-bottom a {
    color: var(--theme-color);
    font-size: 13px;
    margin-left: 18px;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ── Back to Top ──────────────────────────── */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--title-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--title-color);
}

/* ── Toast Notification ───────────────────── */

.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--title-color);
    color: var(--white);
    padding: 16px 35px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    transition: transform 0.4s ease;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
}

.toast-notification i {
    color: var(--theme-color);
    margin-right: 8px;
}

/* ── Responsive ───────────────────────────── */

@media (max-width: 1199px) {
    h1, .hero-title { font-size: 60px; }
    h2 { font-size: 36px; }
    h3 { font-size: 30px; }
    .section-space { padding: 100px 0; }
}

@media (max-width: 991px) {
    .th-menu-toggle {
        display: flex;
    }

    .main-menu-wrap {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: var(--white);
        padding: 80px 25px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.08);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
    }

    .main-menu-wrap.open {
        right: 0;
    }

    .main-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .main-menu > li {
        margin: 0;
        width: 100%;
    }

    .main-menu > li > a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .sub-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 15px;
    }

    h1, .hero-title { font-size: 44px; }
    h2, .page-header h1 { font-size: 34px; }
    .hero-tagline { font-size: 26px; }
    .section-space { padding: var(--section-space-mobile) 0; }

    .menu-bottom-cta { padding: 30px; }
    .product-about { padding-left: 0; margin-top: 30px; }
    .shop-sidebar { padding-right: 0; margin-bottom: 30px; }
}

@media (max-width: 767px) {
    h1, .hero-title { font-size: 34px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    .hero-tagline { font-size: 22px; }

    .header-top-inner {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .header-top-links {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .th-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-actions {
        flex-direction: column;
    }

    /* Show cart button on mobile (no hover on touch) */
    .th-product .product-actions {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .product-detail-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ── Bootstrap Overrides ──────────────────── */

.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-8, .col-lg-9, .col-lg-12,
.col-md-3, .col-md-4, .col-md-6, .col-xl-3 {
    padding: 0 15px;
}

.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 24px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 24px; }
.py-4 { padding-top: 24px; padding-bottom: 24px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }
.text-center { text-align: center; }
.text-end { text-align: right; }
.text-muted { color: var(--light) !important; }
.text-light { color: rgba(255,255,255,0.65) !important; }
.d-flex { display: flex; }
.gap-3 { gap: 15px; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: 4px; }
