:root {
    --primary: #b11217;
    --primary-dark: #861015;
    --gold: #d4a017;
    --light: #ffffff;
    --dark: #141414;
    --text: #555;
    --bg: #f8f5ef;
    --admin-bg: #f8f5ef;
    --admin-sidebar: #141414;
    --admin-sidebar-hover: rgba(255, 255, 255, 0.08);
    --admin-card: #ffffff;
    --admin-text: #141414;
    --admin-muted: #666666;
    --admin-border: #e8e4dc;
    --admin-sidebar-width: 268px;
    --admin-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* background: var(--bg); */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-dark);
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

.button {
    padding: 16px 35px;
    background: linear-gradient(135deg,
            var(--primary),
            #861015);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.buttonOutline {
    padding: 16px 35px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary);
}



ul {
    list-style-type: none;
    margin-bottom: 0px;
}

img {
    width: 100%;
}

input,
select,
textarea {
    outline: none;
}

.container {
    width: 90%;
    /* padding: 0px 15px; */
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 95%;
    /* padding: 0px 15px; */
    margin-right: auto;
    margin-left: auto;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.content-center {
    display: grid;
    place-content: center;
}

.d-flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-around {
    display: flex;
    justify-content: space-around;
}

.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-around-center {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.d-block {
    display: block;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}



/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100px;
    padding: 10px 0px;
    background: var(--light);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: grid;
    align-content: center;
}

header .logo a {
    position: relative;
}

header .logo a img {
    position: absolute;
    width: 160px;
    background: var(--light);
    padding: 10px;
    border-radius: 90px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    top: -55px;
}

header nav ul {
    gap: 30px;
}

header nav ul li a {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--primary);
}

header nav ul li a.active {
    position: relative;
}

header nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.desktopHeader {
    overflow: visible;
}

.desktopHeader .container.flex-between-center {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.desktopHeader .logo {
    justify-self: start;
    min-width: 160px;
    overflow: visible;
}

.desktopHeader .navbar {
    justify-self: center;
}

.desktopHeader .navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.desktopHeader .header-icons {
    justify-self: end;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 20px;
    color: #222;
    cursor: pointer;
}

.cart {
    position: relative;
    cursor: pointer;
}

.fa-magnifying-glass {
    cursor: pointer;
}

.header-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #222;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-search-toggle:hover,
.header-search-toggle.is-active {
    background: rgba(177, 18, 23, 0.08);
    color: var(--primary);
}

.header-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    pointer-events: none;
    visibility: hidden;
}

.header-search-overlay.is-open {
    pointer-events: auto;
    visibility: visible;
}

.header-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-search-overlay.is-open .header-search-backdrop {
    opacity: 1;
}

.header-search-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 72px 0 22px;
}

.header-search-overlay.is-open .header-search-panel {
    transform: translateY(0);
}

.header-search-inner {
    width: 85%;
    max-width: 780px;
}

.header-search-form {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 6px 8px 6px 22px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search-form:focus-within {
    border-color: var(--light);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.header-search-form > .fa-magnifying-glass {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.header-search-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    padding: 12px 0;
}

.header-search-form input::placeholder {
    color: #999;
    font-weight: 400;
}

.header-search-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search-close:hover {
    background: var(--bg);
    color: var(--primary-dark);
    transform: scale(1.04);
}

.header-search-results {
    margin-top: 16px;
    max-height: min(420px, calc(100vh - 180px));
    overflow-y: auto;
    background: transparent;
    border-radius: 18px;
    border: none;
    box-shadow: none;
    display: none;
}

.header-search-results.has-content {
    display: block;
}

.header-search-results.has-content:has(.header-search-list) {
    background: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.header-search-hint,
.header-search-empty {
    padding: 24px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.header-search-hint i,
.header-search-empty i {
    display: block;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
}

.header-search-list {
    list-style: none;
    padding: 8px;
}

.header-search-item a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--dark);
    transition: background 0.2s ease;
}

.header-search-item a:hover {
    background: rgba(177, 18, 23, 0.06);
    color: var(--dark);
}

.header-search-item-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
}

.header-search-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-search-item-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(177, 18, 23, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.header-search-item-body {
    flex: 1;
    min-width: 0;
}

.header-search-item-body strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-search-item-body span {
    display: block;
    font-size: 13px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-search-item-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
    background: rgba(177, 18, 23, 0.08);
    padding: 5px 10px;
    border-radius: 999px;
    flex-shrink: 0;
}

.cart span {
    position: absolute;
    top: -10px;
    right: -12px;

    width: 18px;
    height: 18px;

    background: #b11217;
    color: #fff;

    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    cursor: pointer;
}

.menu-btn {
    display: none;
    cursor: pointer;
}

/* Header */

.mobileHeader {
    display: none;
}

/* Hero */
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 65%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

.hero-dots span.active {
    background: var(--primary);
}

.hero-content h1 {
    font-size: 80px;
    line-height: 85px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 30px;
    margin-bottom: 30px;
}

/* Hero */

/* Explore Categories */
.explore-categories {
    padding: 80px 0px;
    background: var(--bg);
}

.explore-categories .container {
    width: 85%;
    max-width: none;
}

.section-title h2 {
    font-size: 32px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 45px;
}

.category-slider {
    --category-gap: 48px;
    --visible-categories: 6;
    display: flex;
    gap: var(--category-gap);
    overflow-x: auto;
    padding: 5px 0px 10px;
    cursor: grab;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-slider.active {
    cursor: grabbing;
    user-select: none;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 calc((100% - (var(--category-gap) * (var(--visible-categories) - 1))) / var(--visible-categories));
    min-width: 0;
    color: var(--dark);
    text-align: center;
    scroll-snap-align: start;
}

.category-image {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    margin: 0px auto 15px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--light);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.08);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.category-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-card:hover h3 {
    color: var(--primary);
}

.category-card--sauce .category-image {
    background: #1c1c1c;
}

.category-card--sauce .category-image img {
    object-fit: cover;
    object-position: center;
}

/* Explore Categories */

/* Popular Recipes */
.popular-recipes {
    padding: 70px 0px;
    background: var(--light);
}

.popular-recipes .container {
    width: 85%;
    max-width: none;
}

.section-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-head-row h2 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--dark);
}

.view-all-btn {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.view-all-btn i {
    margin-left: 6px;
}

.popular-recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.popular-recipe-card {
    overflow: hidden;
    border-radius: 12px;
    background: var(--light);
    color: var(--dark);
    box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
}

.popular-recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 15px 35px rgba(177, 18, 23, 0.16);
}

.popular-recipe-image {
    height: 180px;
    overflow: hidden;
}

.popular-recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.popular-recipe-card:hover .popular-recipe-image img {
    transform: scale(1.06);
}

.popular-recipe-content {
    padding: 12px 16px 16px;
}

.popular-recipe-content h3 {
    font-size: 17px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 8px;
}

.recipe-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-size: 14px;
}

.recipe-rating i {
    color: var(--primary);
}

/* Popular Recipes */

/* About */
.about {
    padding: 80px 0px;
    background: var(--bg);
}

.about .container {
    width: 85%;
    max-width: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    display: block;
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0px 20px 45px rgba(0, 0, 0, 0.12);
}

.experience-box {
    position: absolute;
    right: -28px;
    bottom: 28px;
    width: 145px;
    height: 145px;
    display: grid;
    place-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-radius: 24px;
    box-shadow: 0px 18px 40px rgba(177, 18, 23, 0.25);
}

.experience-box h3 {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 8px;
}

.experience-box span {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.18;
    color: var(--dark);
    margin-bottom: 22px;
}

.about-content p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
    margin: 30px 0px;
}

.about-features div {
    padding: 14px 16px;
    background: var(--light);
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.06);
}

.about-features div i {
    color: var(--primary);
    margin-right: 8px;
}

/* About */

/* Best Sellers */
.best-sellers {
    padding: 80px 0px;
    background: var(--bg);
}

.best-sellers .container {
    width: 85%;
    max-width: none;
}

.best-sellers-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.best-sellers-head h2 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--dark);
}

.best-seller-arrows {
    display: flex;
    gap: 8px;
}

.best-seller-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(20, 20, 20, 0.12);
    background: var(--light);
    color: var(--dark);
    cursor: pointer;
    display: grid;
    place-content: center;
    transition: 0.3s ease;
}

.best-seller-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.best-seller-slider {
    --best-seller-gap: 24px;
    --visible-products: 5;
    display: flex;
    gap: var(--best-seller-gap);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.best-seller-slider::-webkit-scrollbar {
    display: none;
}

.best-seller-card {
    flex: 0 0 calc((100% - (var(--best-seller-gap) * (var(--visible-products) - 1))) / var(--visible-products));
    min-width: 0;
    padding: 18px 18px 22px;
    background: var(--light);
    border: 1px solid rgba(20, 20, 20, 0.08);
    text-align: center;
    scroll-snap-align: start;
    transition: 0.3s ease;
}

.best-seller-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 18px 36px rgba(177, 18, 23, 0.12);
}

.best-seller-image {
    height: 210px;
    overflow: hidden;
    background: var(--bg);
    margin-bottom: 18px;
}

.best-seller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.best-seller-card:hover .best-seller-image img {
    transform: scale(1.06);
}

.best-seller-content h3 {
    font-size: 15px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 12px;
}

.best-seller-content p {
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.best-seller-content del {
    color: var(--text);
    font-weight: 400;
}

.best-seller-content .buttonOutline {
    padding: 11px 24px;
    color: var(--dark);
    border-color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.best-seller-content .buttonOutline:hover {
    color: var(--light);
    border-color: var(--primary);
    background: var(--primary);
}

/* Best Sellers */

/* About Banner */
.about-banner {
    padding: 80px 0px;
    background: var(--light);
}

.about-banner .container {
    width: 85%;
    max-width: none;
}

.about-banner img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.1);
}

/* About Banner */

/* Products */
.products-section {
    padding: 80px 0px;
    background: var(--bg);
}

.products-section .container {
    width: 85%;
    max-width: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    padding: 18px 18px 22px;
    background: var(--light);
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 8px;
    text-align: center;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 18px 36px rgba(177, 18, 23, 0.12);
}

.product-image {
    height: 210px;
    overflow: hidden;
    background: var(--bg);
    margin-bottom: 18px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-content h3 {
    font-size: 15px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 12px;
}

.product-content p {
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-content del {
    color: var(--text);
    font-weight: 400;
}

.product-content .buttonOutline {
    padding: 11px 24px;
    color: var(--dark);
    border-color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-content .buttonOutline:hover {
    color: var(--light);
    border-color: var(--primary);
    background: var(--primary);
}

/* Products */

/* Why Choose */
.why-choose {
    padding: 75px 0px;
    background: linear-gradient(135deg, var(--light), var(--bg));
}

.why-choose .container {
    width: 85%;
    max-width: none;
}

.why-choose-head span,
.reviews-head span {
    display: inline-block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.why-choose-head h2,
.reviews-head h2 {
    color: var(--dark);
    font-size: 42px;
    line-height: 1.2;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 42px;
}

.why-choose-card {
    position: relative;
    overflow: hidden;
    padding: 42px 25px;
    background: var(--light);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0px 18px 42px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.why-choose-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(177, 18, 23, 0.08), transparent 55%);
    opacity: 0;
    transition: 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 24px 55px rgba(177, 18, 23, 0.14);
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-card h3 {
    position: relative;
    color: var(--primary);
    font-size: 44px;
    line-height: 1;
    margin-bottom: 18px;
}

.why-choose-card p {
    position: relative;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

/* Why Choose */

/* Reviews */
.reviews-section {
    padding: 70px 0px;
    background: var(--light);
}

.reviews-section .container {
    width: 85%;
    max-width: none;
}

.reviews-head h2 {
    letter-spacing: 2px;
}

.reviews-slider {
    --review-gap: 28px;
    --visible-reviews: 3;
    display: flex;
    gap: var(--review-gap);
    overflow-x: auto;
    padding: 34px 4px 14px;
    cursor: grab;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-slider.active {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.reviews-slider::after {
    content: "";
    flex: 0 0 calc((((100% - (var(--review-gap) * (var(--visible-reviews) - 1))) / var(--visible-reviews)) * (var(--visible-reviews) - 1)) + (var(--review-gap) * (var(--visible-reviews) - 1)));
}

.review-card {
    flex: 0 0 calc((100% - (var(--review-gap) * (var(--visible-reviews) - 1))) / var(--visible-reviews));
    min-width: 0;
    padding: 30px;
    background: #f3f5f9;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 18px;
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.07);
    scroll-snap-align: start;
}

.review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.review-avatar {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--light);
    font-size: 18px;
    font-weight: 800;
}

.review-top h3 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 8px;
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 5px;
}

.review-top span {
    color: var(--text);
    font-size: 13px;
}

.review-card p {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.review-card a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
}

.reviews-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d6d6d6;
    cursor: pointer;
    transition: 0.3s ease;
}

.reviews-dots button.active {
    background: var(--primary-dark);
    transform: scale(1.15);
}

/* Reviews */

/* Footer */

/* Product Details Page */
.product-page {
    padding: 170px 0px 80px;
    background: #fafafa;
}

.product-page .container,
.tabs-section .container,
.related-products .container {
    width: 85%;
    max-width: none;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: start;
}

.video-side {
    align-self: start;
    margin-top: 42px;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 25px;
    box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 11;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-player {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.custom-player button {
    border: none;
    background: none;
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
}

.progress-container {
    flex: 1;
    height: 6px;
    background: #444;
    border-radius: 50px;
    cursor: pointer;
}

.progress {
    width: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 50px;
}

.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.82);
    color: var(--light);
    text-align: center;
}

.video-wrapper.is-unlocked .locked-overlay {
    display: none;
}

.recipe-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin: 16px 0 20px;
    font-size: 14px;
    color: #555;
}

.recipe-detail-meta i {
    color: var(--primary);
    margin-right: 6px;
}

.recipe-unlocked-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 50px;
    background: rgba(34, 139, 34, 0.12);
    color: #15803d;
    font-weight: 600;
    font-size: 14px;
}

.recipe-lock-note {
    margin: 10px 0 0;
    font-size: 14px;
    color: #666;
}

.recipe-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.recipe-pdf-link {
    text-decoration: none;
}

.recipe-catalog-locked,
.recipe-catalog-unlocked {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.recipe-catalog-locked {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
}

.recipe-catalog-unlocked {
    background: rgba(34, 139, 34, 0.9);
    color: #fff;
}

.checkout-recipe-unlock {
    margin-top: 24px;
    padding: 20px;
    border-radius: 14px;
    background: #faf7f4;
    border: 1px solid rgba(177, 18, 23, 0.12);
    text-align: left;
}

.checkout-recipe-unlock h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--primary-dark);
}

.checkout-recipe-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkout-recipe-list li {
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-recipe-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.checkout-recipe-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.checkout-recipe-links .buttonOutline {
    padding: 8px 14px;
    font-size: 13px;
}

.unlock-btn {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.locked-overlay i {
    color: var(--gold);
    font-size: 55px;
}

.unlock-btn {
    margin-top: 20px;
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    background: var(--gold);
    cursor: pointer;
    font-weight: 700;
}

.locked-overlay h3 {
    margin: 18px 0 8px;
    font-size: 28px;
    font-weight: 700;
}

.locked-overlay p {
    margin: 0;
    font-size: 15px;
    opacity: 0.92;
}

.info-side .category {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 20px;
    background: #ffe7d0;
    border-radius: 30px;
}

.info-side {
    padding-top: 0;
}

.info-side h1 {
    margin-bottom: 14px;
    color: var(--dark);
    font-size: 42px;
    line-height: 1.2;
}

.product-sauce-thumb {
    width: clamp(88px, 12vw, 128px);
    margin-bottom: 18px;
}

.product-sauce-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(177, 18, 23, 0.12);
    box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08);
    background: var(--light);
}

.rating {
    margin-bottom: 20px;
    color: var(--gold);
}

.meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 22px;
    text-decoration: line-through;
}

.new-price {
    color: var(--primary);
    font-size: 45px;
    font-weight: 800;
}

.short-desc {
    margin-bottom: 25px;
    color: var(--text);
    line-height: 1.8;
}

.purchase-box {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.purchase-box .buy-btn,
.purchase-box .wishlist-btn {
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
}

.buy-btn {
    background: var(--primary);
    color: var(--light);
}

.buy-btn:hover {
    background: var(--primary-dark);
}

.wishlist-btn {
    background: #eee;
    color: var(--dark);
}

.wishlist-btn:hover {
    background: #e2e2e2;
}

.wishlist-btn.is-added {
    background: var(--primary);
    color: var(--light);
}

.wishlist-btn.is-added:hover {
    background: var(--primary-dark);
}

.wishlist-alert-stack {
    position: fixed;
    top: 110px;
    right: 24px;
    z-index: 10070;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    width: calc(100% - 48px);
    pointer-events: none;
}

.wishlist-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    pointer-events: auto;
    animation: wishlistAlertIn 0.35s ease;
}

.wishlist-alert.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border: 1px solid #badbcc;
}

.wishlist-alert.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
}

.wishlist-alert .alert-close {
    border: none;
    background: transparent;
    color: inherit;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    padding: 0;
}

.wishlist-alert .alert-close:hover {
    opacity: 1;
}

@keyframes wishlistAlertIn {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tabs-section {
    padding: 60px 0px 80px;
    background: #f4f4f4;
}

.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    background: var(--light);
}

.tab {
    flex: 1;
    padding: 17px 25px;
    border: none;
    border-right: 1px solid #e5e5e5;
    background: var(--light);
    color: var(--dark);
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
}

.tab.active {
    background: var(--primary);
    color: var(--light);
}

.tab:last-child {
    border-right: none;
}

.tabs-section .text-muted {
    color: #777;
}

.tab-content {
    display: none;
    width: 100%;
    padding: 34px;
    border: 1px solid #e5e5e5;
    background: var(--light);
    box-shadow: none;
}

.tab-content.active {
    display: block;
}

#overview,
#information,
#ingredients,
#reviews {
    width: 100%;
}

.tab-content h2 {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 18px;
}

.tab-content h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 16px;
}

.overview-lead {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 28px;
    width: 100%;
    max-width: none;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.overview-highlight-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid rgba(20, 20, 20, 0.06);
    transition: 0.3s ease;
}

.overview-highlight-item:hover {
    box-shadow: 0px 12px 30px rgba(177, 18, 23, 0.08);
    transform: translateY(-4px);
}

.overview-highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    font-size: 20px;
    border-radius: 14px;
}

.overview-highlight-item h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 6px;
}

.overview-highlight-item p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text);
}

.info-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.info-stat-box {
    padding: 22px 18px;
    background: var(--bg);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(20, 20, 20, 0.06);
}

.info-stat-box i {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-stat-box strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-stat-box span {
    font-size: 12px;
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ingredients-heading {
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ingredient-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid rgba(20, 20, 20, 0.05);
}

.ingredient-item i {
    color: var(--primary);
    font-size: 13px;
}

.tab-content ul {
    margin-top: 20px;
    margin-bottom: 20px;
    list-style: disc inside;
}

.product-review-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    margin-bottom: 28px;
    border: 1px solid #e6e6e6;
    background: #f7f7f7;
}

.product-review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.product-review-card h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

.product-review-date {
    display: block;
    margin-bottom: 8px;
    color: #777;
    font-size: 13px;
}

.product-review-card .stars,
.review-rating-stars {
    margin-bottom: 8px;
    color: var(--gold);
    letter-spacing: 2px;
}

.review-rating-stars {
    display: flex;
    gap: 8px;
    letter-spacing: 0;
}

.review-star {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: #c8c8c8;
    transition: transform 0.15s ease, color 0.15s ease;
    width: auto;
    min-width: 0;
    font-weight: 400;
    text-transform: none;
}

.review-star:hover,
.review-star.is-active,
.review-star.is-preview {
    color: var(--gold);
    transform: scale(1.08);
}

.review-star:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.product-review-form {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tabs-section input,
.tabs-section select,
.tabs-section textarea {
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    background: var(--light);
}

.tabs-section textarea {
    height: 140px;
    resize: none;
}

.product-review-form label {
    display: grid;
    gap: 8px;
}

.product-review-form label strong {
    font-size: 15px;
    color: var(--dark);
}

.product-review-form button[type="submit"] {
    width: max-content;
    padding: 13px 28px;
    border: none;
    border-radius: 0;
    background: var(--primary);
    color: var(--light);
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
}

.related-products {
    padding: 70px 0px;
    background: var(--bg);
}

.related-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.related-arrows {
    display: flex;
    gap: 8px;
}

.related-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid #d8d8d8;
    background: var(--light);
    cursor: pointer;
}

.related-arrow:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--light);
}

.related-carousel {
    --related-gap: 24px;
    --visible-related: 5;
    display: flex;
    gap: var(--related-gap);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.related-carousel::-webkit-scrollbar {
    display: none;
}

.related-card {
    flex: 0 0 calc((100% - (var(--related-gap) * (var(--visible-related) - 1))) / var(--visible-related));
    min-width: 0;
    padding: 16px 16px 20px;
    border: 1px solid #e8e8e8;
    background: var(--light);
    text-align: center;
    scroll-snap-align: start;
}

.related-image {
    height: 165px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #f7f7f7;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card h3 {
    margin-bottom: 10px;
    font-size: 14px;
}

.related-card p {
    margin-bottom: 14px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.related-card del {
    color: #777;
    font-weight: 400;
}

.related-card .buttonOutline {
    padding: 9px 18px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

/* About & Contact Pages */
.page-hero {
    padding: 170px 0px 70px;
    background: linear-gradient(135deg, var(--bg) 0%, #fafafa 50%, var(--light) 100%);
    text-align: center;
}

.page-hero .container,
.contact-info-section .container,
.contact-main-section .container,
.contact-map-section .container,
.contact-faq-section .container,
.mission-section .container,
.journey-section .container,
.services-section .container,
.page-cta .container,
.about-page-main .container {
    width: 85%;
    max-width: none;
}

.page-hero-tag {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 18px;
    background: #ffe7d0;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
}

.page-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 18px;
}

.page-hero p {
    max-width: 620px;
    margin: 0 auto 28px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
}

.page-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: var(--light);
    border-radius: 50px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
    font-size: 14px;
    font-weight: 600;
}

.page-hero-breadcrumb a {
    color: var(--primary);
}

.page-hero-breadcrumb i {
    font-size: 10px;
    color: #bbb;
}

.page-hero-breadcrumb span {
    color: var(--dark);
}

.about-page-main {
    padding-top: 0;
}

.mission-section {
    padding: 80px 0px;
    background: var(--light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    padding: 40px 32px;
    background: var(--bg);
    border-radius: 24px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.06);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 22px 50px rgba(177, 18, 23, 0.12);
}

.mission-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: grid;
    place-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    font-size: 28px;
    border-radius: 50%;
}

.mission-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 14px;
}

.mission-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

.about-stats {
    background: linear-gradient(135deg, var(--light), var(--bg));
}

.journey-section {
    padding: 80px 0px;
    background: #f4f4f4;
}

.journey-head h2 {
    font-size: 36px;
    color: var(--dark);
    margin-top: 8px;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.journey-item {
    position: relative;
    padding: 28px 24px;
    background: var(--light);
    border-radius: 20px;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.journey-item:hover {
    transform: translateY(-6px);
    box-shadow: 0px 20px 45px rgba(177, 18, 23, 0.1);
}

.journey-year {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 16px;
    background: var(--primary);
    color: var(--light);
    font-size: 14px;
    font-weight: 800;
    border-radius: 30px;
}

.journey-content h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

.journey-content p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
}

.services-section {
    padding: 80px 0px;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 42px;
}

.service-card {
    padding: 36px 28px;
    background: var(--light);
    border-radius: 22px;
    text-align: center;
    border: 1px solid rgba(20, 20, 20, 0.06);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(177, 18, 23, 0.15);
    box-shadow: 0px 22px 50px rgba(177, 18, 23, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: grid;
    place-content: center;
    background: #ffe7d0;
    color: var(--primary);
    font-size: 26px;
    border-radius: 18px;
}

.service-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
}

.page-cta {
    padding: 70px 0px;
    background: var(--light);
}

.page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 30px;
    box-shadow: 0px 25px 60px rgba(177, 18, 23, 0.25);
}

.page-cta-content .section-tag {
    color: #ffe7d0;
}

.page-cta-content h2 {
    font-size: 36px;
    color: var(--light);
    margin-bottom: 14px;
}

.page-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
}

.page-cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.page-cta-actions .button {
    background: var(--light);
    color: var(--primary);
}

.page-cta-actions .button:hover {
    background: var(--gold);
    color: var(--dark);
}

.page-cta-actions .buttonOutline {
    border-color: var(--light);
    color: var(--light);
}

.page-cta-actions .buttonOutline:hover {
    background: var(--light);
    color: var(--primary);
}

/* Contact Page */
.contact-info-section {
    padding: 185px 0 60px;
    background: #f4f4f4;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.contact-info-card {
    padding: 38px 30px;
    background: var(--light);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border: 1px solid rgba(20, 20, 20, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 25px 55px rgba(177, 18, 23, 0.12);
}

.contact-info-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: grid;
    place-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    font-size: 26px;
    border-radius: 50%;
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
}

.contact-info-card span {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 15px;
}

.contact-main-section {
    padding: 60px 0px 80px;
    background: #f4f4f4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-side {
    padding: 40px;
    background: var(--light);
    border: 1px solid #e5e5e5;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-side h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-form-desc {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-form {
    display: grid;
    gap: 15px;
}

.contact-main-section input,
.contact-main-section select,
.contact-main-section textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    background: var(--light);
    transition: 0.3s ease;
}

.contact-main-section input:focus,
.contact-main-section select:focus,
.contact-main-section textarea:focus {
    border-color: var(--primary);
}

.contact-main-section textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    width: max-content;
    padding: 14px 32px;
    border: none;
    background: var(--primary);
    color: var(--light);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: inherit;
    font-size: 14px;
}

.contact-form button:hover {
    background: var(--primary-dark);
}

.contact-form button i {
    margin-right: 8px;
}

.contact-sidebar {
    display: grid;
    gap: 24px;
}

.contact-sidebar-card {
    padding: 30px;
    background: var(--light);
    border-radius: 20px;
    border: 1px solid rgba(20, 20, 20, 0.06);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-sidebar-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 18px;
}

.contact-sidebar-card h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.contact-sidebar-card>p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.hours-list {
    display: grid;
    gap: 12px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span {
    color: var(--text);
}

.hours-list strong {
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    background: var(--bg);
    color: var(--primary);
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--light);
}

.contact-sidebar-highlight {
    text-align: center;
    background: linear-gradient(135deg, var(--bg), var(--light));
    border: 2px solid rgba(177, 18, 23, 0.1);
}

.contact-sidebar-highlight>i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 14px;
}

.contact-sidebar-highlight .buttonOutline {
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
}

.contact-map-section {
    padding: 0 0 80px;
    background: #f4f4f4;
}

.contact-map-wrapper {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
    line-height: 0;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.contact-faq-section {
    padding: 70px 0px 80px;
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.faq-item {
    padding: 28px 30px;
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 18px 40px rgba(177, 18, 23, 0.08);
}

.faq-item h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item h4 i {
    color: var(--primary);
    margin-right: 10px;
}

.faq-item p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
    padding-left: 28px;
}

/* About Page — Unique Layout */
.about-hero {
    padding: 150px 0px 50px;
    background: #181818;
    overflow: hidden;
}

.about-hero-layout {
    width: 85%;
    max-width: none;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.72fr;
    gap: 55px;
    align-items: stretch;
}

.about-hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 0 15px;
    color: var(--light);
}

.about-hero-content::before {
    content: "";
    position: absolute;
    top: 45px;
    left: -18px;
    width: 3px;
    height: 72px;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.about-hero-inner {
    max-width: 520px;
}

.about-hero-visual {
    position: relative;
    overflow: hidden;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    background: #0a0a0a;
    border-radius: 22px;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.35);
}

.about-hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.08);
}

.about-hero-label {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-hero-content h1 {
    font-size: 44px;
    line-height: 1.18;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 700;
}

.about-hero-text {
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 32px;
}

.about-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 38px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-meta div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.about-hero-meta i {
    color: var(--gold);
    font-size: 17px;
}

.about-hero-content .button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0px 12px 32px rgba(177, 18, 23, 0.35);
    transition: 0.3s ease;
}

.about-hero-content .button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 16px 40px rgba(177, 18, 23, 0.45);
}

.about-craft {
    padding: 90px 0px;
    background: #f9f7f2;
}

.about-craft .container,
.about-philosophy .container,
.about-impact .container,
.about-timeline-section .container,
.about-gallery .container,
.about-expertise .container {
    width: 85%;
    max-width: none;
}

.about-craft-head {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-craft-head h2 {
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 14px;
}

.about-craft-head p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}

.about-craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: none;
    border-radius: 36px 36px 24px 24px;
    overflow: hidden;
    background: var(--light);
    box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.05);
}

.about-craft-card {
    padding: 44px 36px;
    border-right: 1px solid #f0eeea;
    transition: 0.3s ease;
}

.about-craft-card:last-child {
    border-right: none;
}

.about-craft-card:hover {
    background: #fffcfa;
}

.about-craft-num {
    display: block;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: #f0958c;
    margin-bottom: 20px;
}

.about-craft-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 14px;
}

.about-craft-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

.about-philosophy {
    padding: 90px 0px;
    background: var(--light);
}

.about-philosophy-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-philosophy-inner>i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 28px;
}

.about-philosophy blockquote {
    font-size: 28px;
    line-height: 1.55;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 36px;
}

.about-philosophy-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 22px 14px 14px;
    background: var(--bg);
    border-radius: 50px;
}

.about-philosophy-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.about-philosophy-author strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
}

.about-philosophy-author span {
    color: var(--text);
    font-size: 13px;
}

.about-impact {
    padding: 0 0 90px;
    background: var(--light);
}

.about-impact-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 42px 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    box-shadow: 0px 22px 55px rgba(177, 18, 23, 0.25);
}

.about-impact-item {
    text-align: center;
    flex: 1;
}

.about-impact-item h3 {
    font-size: 42px;
    color: var(--light);
    line-height: 1;
    margin-bottom: 8px;
}

.about-impact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
}

.about-impact-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.about-timeline-section {
    padding: 90px 0px;
    background: #f4f4f4;
}

.about-timeline-head {
    margin-bottom: 50px;
}

.about-timeline-head h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 10px;
}

.about-timeline-head p {
    color: var(--text);
    font-size: 16px;
}

.about-timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 40px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(var(--primary), var(--gold));
}

.about-timeline-item {
    position: relative;
    padding-bottom: 36px;
}

.about-timeline-item:last-child {
    padding-bottom: 0;
}

.about-timeline-dot {
    position: absolute;
    left: -40px;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--light);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.about-timeline-card {
    padding: 26px 30px;
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.about-timeline-card:hover {
    transform: translateX(8px);
    box-shadow: 0px 16px 40px rgba(177, 18, 23, 0.1);
}

.about-timeline-card span {
    display: inline-block;
    padding: 4px 14px;
    margin-bottom: 12px;
    background: #ffe7d0;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
    border-radius: 30px;
}

.about-timeline-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.about-timeline-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
}

.about-gallery {
    padding: 90px 0px;
    background: var(--bg);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 18px;
}

.about-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.1);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.about-gallery-item:hover img {
    transform: scale(1.06);
}

.about-gallery-large {
    grid-row: span 2;
    grid-column: span 2;
}

.about-gallery-wide {
    grid-column: span 2;
}

.about-gallery-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 22px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--light);
}

.about-gallery-caption h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.about-gallery-caption p {
    font-size: 13px;
    opacity: 0.85;
}

.about-expertise {
    padding: 90px 0px;
    background: var(--light);
}

.about-expertise-intro {
    max-width: 620px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-expertise-intro h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 16px;
}

.about-expertise-intro p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-expertise-list {
    display: grid;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #ebe8e3;
    border-radius: 22px;
    overflow: hidden;
    background: var(--light);
    box-shadow: 0px 8px 36px rgba(0, 0, 0, 0.06);
}

.about-expertise-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 30px;
    background: var(--light);
    border-bottom: 1px solid #f0eeea;
    transition: 0.3s ease;
}

.about-expertise-row:last-child {
    border-bottom: none;
}

.about-expertise-row:hover {
    background: #fffcfa;
}

.about-expertise-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    background: #faf6f0;
    color: var(--primary);
    font-size: 20px;
    border-radius: 14px;
}

.about-expertise-intro .buttonOutline {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 32px;
    transition: 0.3s ease;
}

.about-expertise-intro .buttonOutline:hover {
    background: var(--primary);
    color: var(--light);
}

.about-expertise-row h4 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 6px;
}

.about-expertise-row p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

/* About & Contact Pages */

/* Product Details Page */
.footer {
    padding: 70px 0px 0px;
    background: #111111;
    color: var(--light);
}

.footer .container {
    width: 85%;
    max-width: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.25fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand img {
    width: 140px;
    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 390px;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.8;
}

.footer-col h3 {
    color: var(--light);
    font-size: 18px;
    margin-bottom: 22px;
}

.footer-col a {
    display: block;
    color: #cfcfcf;
    font-size: 15px;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.footer-col span {
    display: block;
    color: #cfcfcf;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--light);
}

.footer-bottom {
    position: relative;
    margin-top: 55px;
    padding: 24px 60px 24px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.footer-bottom p {
    color: #cfcfcf;
    font-size: 14px;
}

.footer-bottom strong,
.footer-bottom a {
    color: var(--light);
    font-weight: 700;
}

.footer-back-top {
    position: absolute;
    right: 0;
    top: 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
}

.footer-back-top:hover {
    background: var(--primary-dark);
}

/* Products & Recipes Pages */
.cooking-page-banner {
    position: relative;
    padding: 195px 0 80px;
    overflow: hidden;
    background: var(--dark);
}

.cooking-page-banner .container {
    width: 85%;
    max-width: none;
}

.cooking-page-banner-bg {
    position: absolute;
    inset: 0;
}

.cooking-page-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cooking-page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.92) 0%, rgba(20, 20, 20, 0.75) 45%, rgba(20, 20, 20, 0.4) 100%);
}

.cooking-page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding-top: 20px;
    color: var(--light);
}

.cooking-page-label {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 18px;
    background: rgba(212, 160, 23, 0.2);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.cooking-page-banner-content h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.cooking-page-banner-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 30px;
}

.cooking-page-stats {
    display: flex;
    gap: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cooking-page-stats strong {
    display: block;
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.cooking-page-stats span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catalog-section {
    padding: 70px 0 80px;
    background: var(--bg);
}

.catalog-section-head {
    margin-bottom: 36px;
}

.catalog-section-head h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 10px;
}

.catalog-section-head p {
    color: var(--text);
    font-size: 16px;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 22px 26px;
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-filter-btn {
    padding: 11px 22px;
    border: 1px solid #e8e8e8;
    border-radius: 50px;
    background: var(--light);
    color: var(--dark);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.catalog-filter-btn:hover,
.catalog-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.catalog-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.catalog-sort label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.catalog-sort select {
    padding: 10px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--dark);
    background: var(--light);
    cursor: pointer;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.catalog-card {
    display: block;
    background: var(--light);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, 0.06);
    color: var(--dark);
    transition: 0.35s ease;
    box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.05);
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 22px 50px rgba(177, 18, 23, 0.14);
    color: var(--dark);
}

.catalog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg);
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.catalog-card:hover .catalog-card-image img {
    transform: scale(1.08);
}

.catalog-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--light);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 30px;
    z-index: 2;
}

.catalog-card-badge--new {
    background: var(--gold);
    color: var(--dark);
}

.catalog-card-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    background: rgba(177, 18, 23, 0.82);
    color: var(--light);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transition: 0.35s ease;
    z-index: 1;
}

.catalog-card-overlay i {
    margin-right: 8px;
}

.catalog-card:hover .catalog-card-overlay {
    opacity: 1;
}

.catalog-card-body {
    padding: 20px 22px 24px;
}

.catalog-card-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    background: #ffe7d0;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
}

.catalog-card-body h3 {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--dark);
}

.catalog-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text);
}

.catalog-card-rating i {
    color: var(--gold);
}

.catalog-card-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
}

.catalog-card-price del {
    color: var(--text);
    font-weight: 400;
    font-size: 14px;
    margin-right: 6px;
}

.catalog-section .container,
.recipe-spotlight .container {
    width: 85%;
    max-width: none;
}

.recipe-spotlight {
    padding: 60px 0;
    background: var(--light);
}

.recipe-spotlight-card {
    display: grid;
    grid-template-columns: minmax(240px, 340px) 1fr;
    gap: 0;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    background: var(--dark);
    color: var(--light);
    box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.15);
    transition: 0.35s ease;
}

.recipe-spotlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 30px 70px rgba(177, 18, 23, 0.2);
    color: var(--light);
}

.recipe-spotlight-image {
    position: relative;
    height: 240px;
    max-height: 260px;
    padding: 20px 20px 20px 24px;
    overflow: hidden;
}

.recipe-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.4s ease;
}

.recipe-spotlight-card:hover .recipe-spotlight-image img {
    transform: scale(1.05);
}

.recipe-spotlight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--light);
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
}

.recipe-spotlight-badge i {
    margin-right: 6px;
}

.recipe-spotlight-content {
    padding: 32px 36px 32px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-spotlight-content h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.recipe-spotlight-content>p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 22px;
}

.recipe-spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 26px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.recipe-spotlight-meta i {
    color: var(--gold);
    margin-right: 6px;
}

.recipe-spotlight-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}

.recipe-spotlight-link i {
    margin-left: 8px;
    transition: 0.3s ease;
}

.recipe-spotlight-card:hover .recipe-spotlight-link i {
    transform: translateX(6px);
}

.catalog-section--recipes {
    padding-top: 50px;
}

.recipe-category-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 42px;
}

.recipe-category-btn {
    padding: 11px 24px;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    background: var(--light);
    color: var(--dark);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.recipe-category-btn:hover,
.recipe-category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.recipe-catalog-card {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: var(--light);
    color: var(--dark);
    box-shadow: 0px 10px 32px rgba(0, 0, 0, 0.07);
    transition: 0.35s ease;
}

.recipe-catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 22px 50px rgba(177, 18, 23, 0.12);
    color: var(--dark);
}

.recipe-catalog-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.recipe-catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.recipe-catalog-card:hover .recipe-catalog-image img {
    transform: scale(1.07);
}

.recipe-catalog-difficulty {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    background: rgba(20, 20, 20, 0.75);
    color: var(--light);
    font-size: 11px;
    font-weight: 700;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

.recipe-catalog-body {
    padding: 20px 22px 24px;
}

.recipe-catalog-body h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark);
}

.recipe-catalog-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text);
}

.recipe-catalog-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.recipe-catalog-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text);
}

.recipe-catalog-rating i {
    color: var(--gold);
}

/* Products & Recipes Pages */

/* Index Mobile Layout */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: var(--primary);
    padding: 10px 6px 8px;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
}

.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

.mobile-bottom-nav a i {
    font-size: 18px;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: #fff;
}

/* Services Pages */
.cooking-page-banner--services {
    padding: 170px 0 58px;
}

.services-section {
    padding: 70px 0;
    background: var(--bg);
}

.services-section .container {
    width: 85%;
    max-width: none;
}

.services-head {
    margin-bottom: 48px;
}

.services-head h2 {
    font-size: 36px;
    color: var(--dark);
    margin: 12px 0 14px;
}

.services-head p {
    color: var(--text);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    padding: 36px 32px;
    background: var(--light);
    border-radius: 20px;
    border: 1px solid rgba(20, 20, 20, 0.06);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    color: var(--dark);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(177, 18, 23, 0.12);
    color: var(--dark);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    font-size: 22px;
    border-radius: 14px;
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.service-card-link i {
    margin-left: 6px;
    transition: 0.3s ease;
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

.services-why {
    padding: 70px 0;
    background: var(--light);
}

.services-why .container {
    width: 85%;
    max-width: none;
}

.services-why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.services-why-content h2 {
    font-size: 32px;
    color: var(--dark);
    margin: 12px 0 16px;
}

.services-why-content>p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.services-why-list {
    display: grid;
    gap: 12px;
}

.services-why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
}

.services-why-list i {
    color: var(--primary);
    font-size: 14px;
}

.services-why-stats {
    display: grid;
    gap: 20px;
}

.services-why-stats>div {
    padding: 28px 30px;
    background: var(--bg);
    border-radius: 18px;
    border-left: 4px solid var(--primary);
}

.services-why-stats strong {
    display: block;
    font-size: 32px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.services-why-stats span {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

.service-detail-hero {
    padding: 175px 0 60px;
    background: #181818;
}

.service-detail-hero .container {
    width: 85%;
    max-width: none;
}

.service-detail-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-visual {
    border-radius: 20px;
    overflow: hidden;
    height: 360px;
    max-height: 360px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-detail-intro {
    color: var(--light);
}

.service-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-back:hover {
    color: var(--gold);
}

.service-detail-intro h1 {
    font-size: 40px;
    line-height: 1.15;
    margin: 14px 0 18px;
}

.service-detail-intro>p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
}

.service-detail-body {
    padding: 70px 0;
    background: var(--bg);
}

.service-detail-body .container {
    width: 85%;
    max-width: none;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-detail-main h2 {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-detail-main h2:not(:first-child) {
    margin-top: 40px;
}

.service-detail-main>p,
.service-detail-main p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

.service-process {
    display: grid;
    gap: 18px;
}

.service-step {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light);
    border-radius: 16px;
    border: 1px solid rgba(20, 20, 20, 0.06);
}

.service-step>span {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    background: var(--primary);
    color: var(--light);
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
}

.service-step h4 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 6px;
}

.service-step p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
}

.service-aside-card {
    padding: 28px;
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.service-aside-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 18px;
}

.service-deliverables {
    display: grid;
    gap: 12px;
}

.service-deliverables li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.service-deliverables i {
    color: var(--primary);
    font-size: 12px;
}

.service-aside-cta p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 18px;
}

.service-aside-cta .button {
    width: 100%;
    text-align: center;
}

.service-related {
    padding: 60px 0 80px;
    background: var(--light);
}

.service-related .container {
    width: 85%;
    max-width: none;
}

.service-related h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 28px;
}

.service-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-related-card {
    padding: 28px;
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid rgba(20, 20, 20, 0.06);
    color: var(--dark);
    transition: 0.3s ease;
}

.service-related-card:hover {
    border-color: var(--primary);
    color: var(--dark);
}

.service-related-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-related-card span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

/* Product Category Page */
.pcat-page {
    padding: 130px 0 70px;
    background: var(--bg);
    min-height: 60vh;
}

.pcat-page .container {
    width: 85%;
    max-width: none;
}

.pcat-page-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 28px;
}

.pcat-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding-bottom: 18px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.pcat-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--light);
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
}

.pcat-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.pcat-sort select {
    padding: 10px 14px;
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: var(--light);
    cursor: pointer;
}

.pcat-search {
    display: flex;
    align-items: center;
    margin-left: auto;
    background: var(--light);
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.pcat-search input {
    border: none;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 14px;
    min-width: 200px;
    outline: none;
    background: transparent;
}

.pcat-search button {
    padding: 10px 14px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
}

.pcat-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

.pcat-sidebar {
    background: var(--light);
    border-radius: 14px;
    padding: 0;
    border: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.pcat-sidebar button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 22px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    border-bottom: 1px solid rgba(20, 20, 20, 0.07);
    transition: 0.2s ease;
}

.pcat-sidebar button:last-child {
    border-bottom: none;
}

.pcat-sidebar button:hover {
    background: rgba(177, 18, 23, 0.06);
    color: var(--primary);
}

.pcat-sidebar button.active {
    background: var(--primary);
    color: var(--light);
}

.pcat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pcat-product-card {
    display: block;
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, 0.06);
    color: var(--dark);
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.pcat-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(177, 18, 23, 0.12);
    color: var(--dark);
}

.pcat-product-image {
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    background: #f7f7f7;
    overflow: hidden;
}

.pcat-product-image img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.08);
    transition: 0.3s ease;
}

.pcat-product-body {
    padding: 18px 16px 22px;
    text-align: center;
}

.pcat-product-body h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.pcat-product-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}

.pcat-product-price del {
    color: var(--text);
    font-weight: 400;
    font-size: 14px;
    margin-right: 6px;
}

.pcat-product-body .buttonOutline {
    display: inline-block;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 700;
}

.pcat-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--text);
}

/* Legacy sauce page aliases — kept for reference */
.sauce-page {
    padding: 130px 0 70px;
    background: var(--bg);
    min-height: 60vh;
}

.sauce-page .container {
    width: 85%;
    max-width: none;
}

.sauce-page-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 28px;
}

.sauce-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding-bottom: 18px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.sauce-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--light);
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: 0.25s ease;
}

.sauce-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sauce-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.sauce-sort select {
    padding: 10px 14px;
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: var(--light);
    cursor: pointer;
}

.sauce-search {
    display: flex;
    align-items: center;
    margin-left: auto;
    background: var(--light);
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.sauce-search input {
    border: none;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 14px;
    min-width: 200px;
    outline: none;
    background: transparent;
}

.sauce-search button {
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: var(--dark);
    cursor: pointer;
    font-size: 16px;
}

.sauce-search button:hover {
    color: var(--primary);
}

.sauce-catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

.sauce-sidebar {
    background: var(--light);
    border-radius: 14px;
    padding: 0;
    border: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.sauce-sidebar button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 22px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    border-bottom: 1px solid rgba(20, 20, 20, 0.07);
    transition: 0.2s ease;
}

.sauce-sidebar button:last-child {
    border-bottom: none;
}

.sauce-sidebar-all {
    font-weight: 700 !important;
    color: var(--primary) !important;
}

.sauce-sidebar button:hover {
    color: var(--primary);
    background: rgba(177, 18, 23, 0.04);
}

.sauce-sidebar button.active {
    color: var(--primary);
    background: rgba(177, 18, 23, 0.08);
    font-weight: 600;
}

.sauce-sidebar-all.active {
    background: rgba(177, 18, 23, 0.1);
}

.sauce-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sauce-product-card {
    display: block;
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, 0.06);
    color: var(--dark);
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.sauce-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(177, 18, 23, 0.12);
    color: var(--dark);
}

.sauce-product-image {
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    background: #f7f7f7;
    overflow: hidden;
}

.sauce-product-image img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.08);
    transition: 0.3s ease;
}

.sauce-product-card:hover .sauce-product-image img {
    transform: scale(1.12);
}

.pcat-product-card:hover .pcat-product-image img {
    transform: scale(1.12);
}

.sauce-product-body {
    padding: 20px 18px 22px;
    text-align: center;
}

.sauce-product-body h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: auto;
}

.sauce-product-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.sauce-product-price del {
    color: var(--text);
    font-weight: 400;
    font-size: 14px;
    margin-right: 6px;
}

.sauce-product-body .buttonOutline {
    display: inline-block;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sauce-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--text);
    font-size: 15px;
}

/* Cart Drawer */
body.cart-open {
    overflow: hidden;
}

.cart span.cart-bump {
    transform: scale(1.25);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 10040;
}

.cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    min-width: 340px;
    max-width: 520px;
    height: 100vh;
    height: 100dvh;
    background: var(--light);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    z-index: 10050;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
    background: linear-gradient(135deg, #fff 0%, #faf8f4 100%);
}

.cart-drawer-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer-header h2 i {
    color: var(--primary);
    font-size: 18px;
}

.cart-drawer-header h2 span {
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    display: inline;
}

.cart-drawer-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(177, 18, 23, 0.08);
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer-close:hover {
    background: var(--primary);
    color: var(--light);
    transform: rotate(90deg);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text);
}

.cart-empty i {
    font-size: 48px;
    color: rgba(177, 18, 23, 0.2);
    margin-bottom: 16px;
}

.cart-empty h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.cart-empty p {
    font-size: 14px;
    margin-bottom: 20px;
}

.cart-empty a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 14px;
    padding: 16px;
    margin-bottom: 14px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid rgba(20, 20, 20, 0.06);
    transition: 0.25s ease;
    animation: cartItemIn 0.35s ease;
}

@keyframes cartItemIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item:hover {
    box-shadow: 0 8px 24px rgba(177, 18, 23, 0.08);
    border-color: rgba(177, 18, 23, 0.12);
}

.cart-item-image {
    width: 88px;
    height: 88px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    min-width: 0;
}

.cart-item-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--primary);
    margin-bottom: 4px;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-title a {
    color: inherit;
}

.cart-item-title a:hover {
    color: var(--primary);
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.cart-item-price del {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    margin-right: 6px;
}

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--light);
    border: 1px solid rgba(20, 20, 20, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.cart-qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: var(--dark);
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.cart-qty-btn:hover {
    background: rgba(177, 18, 23, 0.08);
    color: var(--primary);
}

.cart-item-qty span {
    position: static;
    min-width: 28px;
    width: auto;
    height: auto;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border-radius: 0;
    display: inline-block;
}

.cart-item-remove {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    background: rgba(177, 18, 23, 0.08);
    color: var(--primary);
    cursor: pointer;
    transition: 0.25s ease;
    align-self: start;
}

.cart-item-remove:hover {
    background: var(--primary);
    color: var(--light);
}

.cart-drawer-footer {
    padding: 22px 28px 28px;
    border-top: 1px solid rgba(20, 20, 20, 0.08);
    background: linear-gradient(180deg, #fff 0%, #faf8f4 100%);
}

.cart-subtotal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.cart-subtotal-row span {
    font-size: 15px;
    color: var(--text);
}

.cart-subtotal-row strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.cart-checkout-btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 24px rgba(177, 18, 23, 0.25);
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(177, 18, 23, 0.32);
}

.cart-continue-link {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.cart-continue-link:hover {
    color: var(--primary);
}

.cart-toast {
    position: fixed;
    top: 100px;
    right: 28px;
    padding: 14px 20px;
    background: var(--dark);
    color: var(--light);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    z-index: 10060;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.cart-toast.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.cart-toast i {
    color: #4ade80;
}

/* Checkout page */
.checkout-page {
    background: var(--bg);
    overflow-x: hidden;
}

.checkout-hero {
    padding: 190px 0 40px;
    background: linear-gradient(180deg, rgba(177, 18, 23, 0.06) 0%, transparent 100%);
}

.checkout-hero .container {
    width: 85%;
    max-width: 1140px;
}

.checkout-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.checkout-breadcrumb a {
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.checkout-breadcrumb .active {
    color: var(--dark);
    font-weight: 700;
}

.checkout-breadcrumb-sep {
    color: #ccc;
    font-size: 10px;
}

.checkout-hero h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 8px;
}

.checkout-hero p {
    color: var(--text);
    font-size: 15px;
}

.checkout-section {
    padding: 0 0 90px;
}

.checkout-section .container {
    width: 85%;
    max-width: 1140px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.checkout-aside {
    position: sticky;
    top: 130px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checkout-card {
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.checkout-card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-card-head > i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(177, 18, 23, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.checkout-card-head h2 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 4px;
}

.checkout-card-head p {
    font-size: 14px;
    color: var(--text);
}

.checkout-error {
    color: #c0392b;
    font-size: 14px;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: rgba(192, 57, 43, 0.08);
    border-radius: 12px;
}

.checkout-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-field {
    margin-bottom: 16px;
}

.checkout-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(177, 18, 23, 0.1);
}

.checkout-payment {
    margin-top: 8px;
    margin-bottom: 0;
    padding: 24px;
    background: var(--light);
    border: 1px solid #e5e5e5;
    border-top: 3px solid var(--primary);
    border-radius: 16px;
}

.checkout-payment h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 18px;
}

#paypal-button-container {
    min-height: 150px;
}

#paypal-button-container .paypal-buttons {
    width: 100%;
}

.checkout-paypal-note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.6;
    color: #777;
}

.checkout-paypal-note--error {
    color: #a31217;
}

.checkout-submit {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 24px rgba(177, 18, 23, 0.25);
}

.checkout-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(177, 18, 23, 0.32);
}

.checkout-summary-card {
    position: static;
    top: auto;
}

.checkout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    background: #fff;
}

.checkout-summary-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
}

.checkout-summary-item h4 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

.checkout-summary-item span {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkout-summary-item p {
    font-size: 13px;
    color: var(--text);
}

.checkout-summary-item strong {
    font-size: 15px;
    color: var(--dark);
    white-space: nowrap;
}

.checkout-summary-totals {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 16px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text);
}

.checkout-summary-row strong {
    color: var(--dark);
}

.checkout-summary-total {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px dashed #e5e5e5;
    font-size: 16px;
}

.checkout-summary-total strong {
    font-size: 22px;
    color: var(--dark);
}

.checkout-empty-summary {
    text-align: center;
    padding: 24px 12px;
    color: var(--text);
}

.checkout-empty-summary a {
    color: var(--primary);
    font-weight: 600;
}

.checkout-trust {
    margin-top: 0;
    padding: 20px;
    border-radius: 18px;
    background: rgba(177, 18, 23, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.checkout-trust div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--dark);
}

.checkout-trust i {
    color: var(--primary);
    width: 18px;
}

.checkout-hero--success {
    padding: 170px 0 36px;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.08) 0%, transparent 100%);
}

.checkout-section--success {
    padding-top: 10px;
}

.checkout-success-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.checkout-success-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--light);
    border-radius: 28px;
    padding: 52px 42px;
    border: 1px solid rgba(20, 20, 20, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.checkout-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.checkout-success-card h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.checkout-success-card > p {
    color: var(--text);
    margin-bottom: 24px;
}

.checkout-success-meta {
    display: grid;
    gap: 14px;
    text-align: left;
    margin-bottom: 28px;
    padding: 22px 24px;
    border-radius: 18px;
    background: #fafafa;
    border: 1px solid #ececec;
}

.checkout-success-meta div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    align-items: flex-start;
}

.checkout-success-meta span {
    color: var(--text);
    flex-shrink: 0;
}

.checkout-success-meta strong {
    color: var(--dark);
    text-align: right;
    max-width: 62%;
}

.checkout-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Header — Sign in */
.header-signin {
    padding: 10px 22px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: 0.3s ease;
    white-space: nowrap;
}

.header-signin:hover {
    background: var(--primary);
    color: var(--light);
}

.header-signin.active {
    background: var(--primary);
    color: var(--light);
}

.header-signin--mobile {
    padding: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    display: grid;
    place-content: center;
    font-size: 16px;
    color: #222;
    background: transparent;
}

.header-signin--mobile:hover {
    background: rgba(177, 18, 23, 0.08);
    color: var(--primary);
}

.header-signin--account {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-signin--account i {
    font-size: 13px;
}

/* Auth page */
.auth-error,
.contact-success,
.user-saved-msg {
    margin-bottom: 15px;
    font-size: 14px;
}

.auth-error {
    color: #c0392b;
}

.contact-success,
.user-saved-msg {
    color: #1e7e34;
}

.auth-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: var(--bg);
}

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1050px;
    margin: 0 auto;
    width: 90%;
    min-height: calc(100vh - 180px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    background: var(--light);
}

.auth-brand {
    position: relative;
    padding: 50px 42px;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 55%, #8a0f14 100%);
    color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.auth-brand-content h1 {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.auth-brand-content p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    max-width: 340px;
    margin: 0 auto;
}

.auth-panel {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-panel-head {
    margin-bottom: 28px;
}

.auth-panel-head h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
}

.auth-panel-head p {
    font-size: 14px;
    color: var(--text);
}

.auth-tabs {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: var(--bg);
    border-radius: 50px;
    margin-bottom: 28px;
}

.auth-tab {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 50px;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: 0.3s ease;
}

.auth-tab.active {
    background: var(--primary);
    color: var(--light);
    box-shadow: 0 8px 20px rgba(177, 18, 23, 0.25);
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.auth-form.active {
    display: flex;
}

.auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.auth-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    background: var(--light);
    transition: 0.3s ease;
}

.auth-field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(177, 18, 23, 0.08);
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
}

.auth-remember input {
    accent-color: var(--primary);
}

.auth-forgot {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.auth-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 6px;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(177, 18, 23, 0.28);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 8px 0;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

.auth-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.auth-social-btn {
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: var(--light);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-social-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.auth-switch-text {
    text-align: center;
    font-size: 14px;
    color: var(--text);
    margin-top: 8px;
}

.auth-switch-text button {
    border: none;
    background: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
}

.auth-terms {
    font-size: 12px;
    color: var(--text);
    line-height: 1.6;
}

.auth-terms a {
    color: var(--primary);
    font-weight: 600;
}

/* User dashboard */
.user-dashboard-section {
    padding: 190px 0 70px;
    background: var(--bg);
    min-height: 100vh;
}

.user-dashboard-section .container.user-dashboard-container {
    width: 85%;
    max-width: none;
}

.user-dashboard-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}

.user-sidebar {
    background: var(--light);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(20, 20, 20, 0.05);
    position: sticky;
    top: 160px;
}

.user-sidebar-profile {
    text-align: center;
    padding-bottom: 22px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.user-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    font-size: 24px;
    font-weight: 700;
    display: grid;
    place-content: center;
}

.user-sidebar-profile h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 4px;
}

.user-sidebar-profile p {
    font-size: 13px;
    color: var(--text);
}

.user-sidebar-nav {
    display: grid;
    gap: 6px;
}

.user-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: 0.3s ease;
}

.user-sidebar-nav a i {
    width: 18px;
    color: #888;
    transition: 0.3s ease;
}

.user-sidebar-nav a:hover,
.user-sidebar-nav a.active {
    background: rgba(177, 18, 23, 0.08);
    color: var(--primary);
}

.user-sidebar-nav a:hover i,
.user-sidebar-nav a.active i {
    color: var(--primary);
}

.user-sidebar-nav a.user-nav-signout {
    margin-top: 10px;
    color: #c0392b;
}

.user-sidebar-nav a.user-nav-signout:hover {
    background: rgba(192, 57, 43, 0.08);
    color: #c0392b;
}

.user-sidebar-toggle {
    display: none;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: var(--light);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

.user-main {
    min-width: 0;
}

.user-page-head {
    margin-bottom: 28px;
}

.user-page-head h1 {
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 8px;
}

.user-page-head p {
    font-size: 15px;
    color: var(--text);
}

.user-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.user-stat-card {
    padding: 22px 20px;
    background: var(--light);
    border-radius: 18px;
    border: 1px solid rgba(20, 20, 20, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.user-stat-card i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(177, 18, 23, 0.1);
    color: var(--primary);
    display: grid;
    place-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.user-stat-card strong {
    display: block;
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 4px;
}

.user-stat-card span {
    font-size: 13px;
    color: var(--text);
}

.user-panel {
    background: var(--light);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(20, 20, 20, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.user-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.user-panel-head h2 {
    font-size: 20px;
    color: var(--dark);
}

.user-panel-head a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.user-order-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

a.user-order-item {
    text-decoration: none;
    color: inherit;
}

a.user-order-item:hover h3 {
    color: var(--primary);
}

.user-order-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.user-order-item:first-child {
    padding-top: 0;
}

.user-order-thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg);
}

.user-order-thumb img {
    height: 100%;
    object-fit: cover;
}

.user-order-info h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 6px;
}

.user-order-info p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 4px;
}

.user-order-meta {
    text-align: right;
}

.user-order-meta strong {
    display: block;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.user-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.user-badge--delivered {
    background: rgba(74, 222, 128, 0.15);
    color: #15803d;
}

.user-badge--processing {
    background: rgba(212, 160, 23, 0.15);
    color: #92600a;
}

.user-badge--cancelled {
    background: rgba(192, 57, 43, 0.12);
    color: #c0392b;
}

.user-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.user-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-form-field.full,
.user-form-actions.full {
    grid-column: 1 / -1;
}

.user-form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.user-form-field input,
.user-form-field select,
.user-form-field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--dark);
    background: var(--light);
    transition: 0.3s ease;
}

.user-form-field input:focus,
.user-form-field select:focus,
.user-form-field textarea:focus {
    border-color: var(--primary);
}

.user-form-field textarea {
    min-height: 90px;
    resize: vertical;
}

.user-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.user-btn {
    padding: 12px 26px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
}

.user-btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
}

.user-btn--primary:hover {
    box-shadow: 0 10px 24px rgba(177, 18, 23, 0.25);
}

.user-btn--outline {
    background: transparent;
    border: 2px solid #ddd;
    color: var(--text);
}

.user-btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.user-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.user-wishlist-card {
    background: var(--bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, 0.05);
    transition: 0.3s ease;
}

.user-wishlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.user-wishlist-image {
    height: 150px;
    overflow: hidden;
}

.user-wishlist-image img {
    height: 100%;
    object-fit: cover;
}

.user-wishlist-body {
    padding: 16px;
}

.user-wishlist-body h3 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 8px;
}

.user-wishlist-body p {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.user-wishlist-card-top {
    display: block;
    color: inherit;
    text-decoration: none;
}

.user-wishlist-card-top:hover h3 {
    color: var(--primary);
}

.user-wishlist-type {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(177, 18, 23, 0.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.user-wishlist-actions {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
}

.user-wishlist-actions a,
.user-wishlist-actions button {
    flex: 1;
    padding: 9px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
}

.user-wishlist-actions a {
    background: var(--primary);
    color: var(--light);
}

.user-wishlist-actions button {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--text);
}

.user-settings-list {
    display: grid;
    gap: 16px;
}

.user-settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.user-settings-item:last-child {
    border-bottom: none;
}

.user-settings-item h3 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}

.user-settings-item p {
    font-size: 13px;
    color: var(--text);
}

.user-toggle {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.user-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.user-toggle span {
    position: absolute;
    inset: 0;
    background: #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.user-toggle span::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    background: var(--light);
    border-radius: 50%;
    transition: 0.3s ease;
}

.user-toggle input:checked + span {
    background: var(--primary);
}

.user-toggle input:checked + span::before {
    transform: translateX(22px);
}

.user-empty {
    text-align: center;
    padding: 48px 24px;
}

.user-empty i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
}

.user-empty h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.user-empty p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 20px;
}

/* Admin panel */
body.admin-body {
    background: var(--admin-bg);
    color: var(--admin-text);
    margin: 0;
    min-height: 100vh;
}

body.admin-body.admin-sidebar-open {
    overflow-x: hidden;
}

.admin-login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 45%, #6b0d11 100%);
}

.admin-login-card {
    width: 100%;
    max-width: 420px;
    background: var(--admin-card);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-login-logo {
    text-align: center;
    margin-bottom: 28px;
}

.admin-login-logo img {
    width: 110px;
    background: #fff;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(177, 18, 23, 0.15);
}

.admin-login-logo h1 {
    font-size: 22px;
    margin-top: 14px;
    margin-bottom: 6px;
    color: var(--dark);
}

.admin-login-logo p {
    font-size: 13px;
    color: var(--admin-muted);
    margin: 0;
}

.admin-login-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.admin-login-form .form-control {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--admin-border);
    font-family: inherit;
    transition: var(--admin-transition);
}

.admin-login-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(177, 18, 23, 0.12);
}

.admin-login-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--admin-transition);
    box-shadow: 0 10px 24px rgba(177, 18, 23, 0.28);
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(177, 18, 23, 0.35);
}

.admin-login-hint {
    margin-top: 18px;
    padding: 12px;
    background: var(--admin-bg);
    border-radius: 12px;
    font-size: 12px;
    color: var(--admin-muted);
    text-align: center;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: var(--admin-sidebar-width);
    background: linear-gradient(180deg, #1a1a1a 0%, var(--admin-sidebar) 100%);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1040;
    transform: translateX(0);
    transition: transform var(--admin-transition);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.12);
}

html.admin-sidebar-init .admin-sidebar,
html.admin-sidebar-init .admin-main {
    transition: none !important;
}

.admin-main {
    flex: 1;
    margin-left: var(--admin-sidebar-width);
    min-width: 0;
    width: 100%;
    transition: margin-left var(--admin-transition);
}

.admin-sidebar-brand {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-sidebar-brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    flex-shrink: 0;
}

.admin-sidebar-brand span {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.admin-sidebar-nav {
    padding: 18px 14px 24px;
}

.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    margin-bottom: 6px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    transition: var(--admin-transition);
}

.admin-sidebar-nav a i {
    width: 18px;
    text-align: center;
    font-size: 15px;
    transition: var(--admin-transition);
}

.admin-sidebar-nav a:hover {
    background: var(--admin-sidebar-hover);
    color: #fff;
    transform: translateX(4px);
}

.admin-sidebar-nav a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 8px 22px rgba(177, 18, 23, 0.35);
}

.admin-sidebar-nav a.active:hover {
    transform: none;
}

.admin-topbar {
    background: var(--admin-card);
    border-bottom: 1px solid var(--admin-border);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 16px rgba(20, 20, 20, 0.04);
}

.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-sidebar-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--admin-border);
    border-radius: 12px;
    background: var(--admin-bg);
    cursor: pointer;
    display: grid;
    place-content: center;
    font-size: 17px;
    color: var(--dark);
    transition: var(--admin-transition);
}

.admin-sidebar-toggle:hover {
    background: rgba(177, 18, 23, 0.08);
    border-color: rgba(177, 18, 23, 0.25);
    color: var(--primary);
}

.admin-sidebar-toggle.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    border: 1px solid var(--admin-border);
    border-radius: 50px;
    cursor: pointer;
    background: #fff;
    transition: var(--admin-transition);
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.admin-user-dropdown {
    position: relative;
}

.admin-user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 190px;
    background: #fff;
    border: 1px solid var(--admin-border);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(20, 20, 20, 0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1040;
}

.admin-user-dropdown.is-open .admin-user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.admin-user-dropdown.is-open .admin-user-menu .fa-chevron-down {
    transform: rotate(180deg);
}

.admin-user-menu .fa-chevron-down {
    font-size: 11px;
    color: var(--admin-muted);
    transition: transform 0.2s ease;
}

.admin-user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 14px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
}

.admin-user-dropdown-item i {
    color: var(--primary);
    font-size: 14px;
}

.admin-user-dropdown-item:hover {
    background: rgba(177, 18, 23, 0.08);
    color: var(--primary);
}

.admin-user-menu:hover {
    border-color: rgba(177, 18, 23, 0.3);
    box-shadow: 0 4px 14px rgba(177, 18, 23, 0.08);
}

.admin-user-menu img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 2px;
}

.admin-user-menu span {
    font-size: 14px;
    font-weight: 600;
}

.admin-content {
    padding: 28px 24px 40px;
}

.admin-page-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.admin-page-subtitle {
    font-size: 14px;
    color: var(--admin-muted);
    margin-bottom: 26px;
}

.admin-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 26px;
}

.admin-stat-card {
    background: var(--admin-card);
    border-radius: 18px;
    padding: 22px 20px;
    border: 1px solid var(--admin-border);
    box-shadow: 0 8px 24px rgba(20, 20, 20, 0.04);
    transition: var(--admin-transition);
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(177, 18, 23, 0.08);
}

.admin-stat-card h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--admin-muted);
    margin-bottom: 12px;
}

.admin-stat-card .stat-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--dark);
}

.admin-stat-card .stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.admin-stat-card .stat-link {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    transition: var(--admin-transition);
}

.admin-stat-card .stat-link:hover {
    color: var(--primary-dark);
}

.stat-icon--red { background: rgba(177, 18, 23, 0.12); color: var(--primary); }
.stat-icon--gold { background: rgba(212, 160, 23, 0.15); color: var(--gold); }
.stat-icon--cream { background: rgba(248, 245, 239, 0.9); color: var(--primary-dark); border: 1px solid var(--admin-border); }
.stat-icon--dark { background: rgba(20, 20, 20, 0.08); color: var(--dark); }

.admin-panel {
    background: var(--admin-card);
    border-radius: 18px;
    border: 1px solid var(--admin-border);
    box-shadow: 0 8px 24px rgba(20, 20, 20, 0.04);
    overflow: hidden;
}

.admin-panel-head {
    padding: 20px 22px;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: linear-gradient(180deg, #fff 0%, var(--admin-bg) 100%);
}

.admin-panel-head h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-dark);
}

.admin-panel-body {
    padding: 0;
}

.admin-panel-body.padded {
    padding: 22px;
}

.admin-table-toolbar {
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--admin-border);
    background: #fff;
}

.admin-table-toolbar .form-select,
.admin-table-toolbar .form-control {
    max-width: 200px;
    font-size: 14px;
    border-radius: 10px;
    border-color: var(--admin-border);
}

.admin-table-toolbar .form-control:focus,
.admin-table-toolbar .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(177, 18, 23, 0.1);
}

.admin-table {
    margin-bottom: 0;
    font-size: 14px;
    width: 100%;
    table-layout: fixed;
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-table-wrap .admin-table {
    min-width: 860px;
}

.admin-table--products {
    min-width: 980px;
}

.admin-col-image { width: 72px; }
.admin-col-name { width: 22%; }
.admin-col-category { width: 14%; }
.admin-col-slug { width: 16%; }
.admin-col-price { width: 10%; }
.admin-col-rating { width: 9%; }
.admin-col-reviews { width: 9%; }
.admin-col-count { width: 10%; }
.admin-col-status { width: 11%; }
.admin-col-actions { width: 150px; }

.admin-table thead th {
    background: linear-gradient(180deg, rgba(177, 18, 23, 0.1) 0%, rgba(177, 18, 23, 0.06) 100%);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-bottom: 1px solid rgba(177, 18, 23, 0.12);
    padding: 14px 16px;
    white-space: nowrap;
    vertical-align: middle;
}

.admin-table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-color: var(--admin-border);
    word-break: break-word;
}

.admin-table tbody td:first-child,
.admin-table thead th:first-child {
    padding-left: 22px;
}

.admin-table tbody td:last-child,
.admin-table thead th:last-child {
    padding-right: 22px;
}

.admin-table-empty-row td {
    text-align: center;
}

.admin-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
}

.admin-rating-pill i {
    color: var(--gold);
    font-size: 12px;
}

.admin-action-btns.justify-content-end {
    justify-content: flex-end;
}

.admin-table tbody tr {
    transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
    background: rgba(248, 245, 239, 0.7);
}

.admin-product-thumb {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--admin-border);
}

.admin-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.admin-badge--active { background: rgba(177, 18, 23, 0.1); color: var(--primary); }
.admin-badge--draft { background: rgba(212, 160, 23, 0.15); color: #92600a; }
.admin-badge--pending { background: rgba(212, 160, 23, 0.2); color: #854d0e; }
.admin-badge--delivered { background: rgba(34, 139, 34, 0.12); color: #15803d; }
.admin-badge--cancelled { background: rgba(177, 18, 23, 0.12); color: var(--primary-dark); }

.admin-panel-meta {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.admin-order-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 12px;
    background: #faf7f4;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-order-detail-grid div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-order-detail-grid span {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.admin-order-detail-grid strong {
    font-size: 14px;
    color: #111827;
    font-weight: 600;
}

.admin-order-items-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.admin-table--compact th,
.admin-table--compact td {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
}

.admin-order-status-form {
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-table--orders tbody tr.admin-order-group-item td {
    border-top-style: dashed;
}

.admin-table--orders tbody tr.admin-order-group-item td:nth-child(-n+4),
.admin-table--orders tbody tr.admin-order-group-item td:nth-child(n+9) {
    border-top-color: transparent;
}

.admin-table--orders tbody tr.admin-order-group-start + tr.admin-order-group-item td:nth-child(1) {
    border-top-style: dashed;
}

.admin-action-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.admin-action-btns .btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 8px;
}

.admin-action-btns .btn-outline-primary {
    color: var(--primary);
    border-color: rgba(177, 18, 23, 0.35);
}

.admin-action-btns .btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.admin-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 13px;
    transition: var(--admin-transition);
    box-shadow: 0 6px 18px rgba(177, 18, 23, 0.22);
}

.admin-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(177, 18, 23, 0.3);
    color: #fff;
}

.admin-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.55);
    z-index: 1035;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--admin-transition), visibility var(--admin-transition);
    backdrop-filter: blur(2px);
}

.admin-sidebar-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.admin-body .form-control:focus,
.admin-body .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(177, 18, 23, 0.12);
}

.admin-body .text-warning {
    color: var(--gold) !important;
}

.admin-settings-list-wrap {
    width: 100%;
}

.admin-settings-item {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 22px;
    border: none;
    border-bottom: 1px solid var(--admin-border);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: var(--admin-transition);
    font-family: inherit;
}

.admin-settings-item:last-child {
    border-bottom: none;
}

.admin-settings-item:hover {
    background: rgba(177, 18, 23, 0.04);
}

.admin-settings-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.admin-settings-item-icon--site {
    background: rgba(177, 18, 23, 0.1);
    color: var(--primary);
}

.admin-settings-item-icon--admin {
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold);
}

.admin-settings-item-text {
    flex: 1;
    min-width: 0;
}

.admin-settings-item-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.admin-settings-item-text span {
    display: block;
    font-size: 13px;
    color: var(--admin-muted);
}

.admin-settings-item-arrow {
    color: #bbb;
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.admin-settings-item:hover .admin-settings-item-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

.admin-settings-detail {
    width: 100%;
    animation: adminSettingsFadeIn 0.28s ease;
}

.admin-settings-detail.is-hidden {
    display: none;
}

.admin-settings-list-wrap.is-hidden {
    display: none;
}

.admin-settings-panel.is-hidden {
    display: none;
}

.admin-settings-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin-bottom: 18px;
    border: none;
    background: transparent;
    color: var(--primary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.admin-settings-back:hover {
    color: var(--primary-dark);
}

@keyframes adminSettingsFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-flash-alert {
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

body.admin-body .modal {
    z-index: 1060;
}

body.admin-body .modal-backdrop {
    z-index: 1055;
}

.admin-modal .modal-dialog {
    max-width: 760px;
}

.admin-modal .modal-content {
    border: 1px solid var(--admin-border);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(20, 20, 20, 0.18);
}

.admin-modal-form {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.admin-modal.modal .modal-dialog.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 2rem);
}

.admin-modal.modal .modal-dialog.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
    max-height: calc(100vh - 220px);
}

.admin-modal .modal-header {
    flex-shrink: 0;
    border-bottom: 1px solid var(--admin-border);
    background: linear-gradient(180deg, #fff 0%, var(--admin-bg) 100%);
    padding: 18px 22px;
}

.admin-modal .modal-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 18px;
}

.admin-modal .modal-body {
    padding: 20px 22px;
}

.admin-modal .modal-footer {
    flex-shrink: 0;
    border-top: 1px solid var(--admin-border);
    background: #fff;
    padding: 16px 22px;
    gap: 10px;
}

.admin-modal .form-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--admin-text);
}

.admin-modal .form-control,
.admin-modal .form-select {
    border-radius: 10px;
    border-color: var(--admin-border);
    font-size: 14px;
    padding: 10px 12px;
    min-height: 44px;
}

.admin-modal textarea.form-control {
    min-height: auto;
}

.admin-modal .form-control:focus,
.admin-modal .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(177, 18, 23, 0.1);
}

.admin-modal .form-select option {
    color: var(--admin-text);
    background: #fff;
}

.admin-modal .btn-light {
    border-radius: 50px;
    padding: 9px 18px;
}

.admin-modal .admin-btn-primary {
    padding: 9px 22px;
}

.admin-modal-preview {
    max-width: 160px;
    max-height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--admin-border);
}

.admin-thumb-btn {
    border: none;
    background: none;
    padding: 0;
    cursor: zoom-in;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-thumb-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(20, 20, 20, 0.12);
}

.admin-image-lightbox .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
}

.admin-lightbox-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    background: #111;
}

.product-grid--sauce {
    align-items: start;
}

.product-gallery-side {
    width: 100%;
}

.product-gallery-main {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 12px 40px rgba(20, 20, 20, 0.08);
}

.product-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-gallery-zoom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(20, 20, 20, 0.15);
}

.catalog-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px dashed var(--admin-border);
}

.catalog-empty-state i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
}

.catalog-empty-state h3 {
    margin-bottom: 8px;
}

.catalog-empty-state p {
    color: var(--admin-muted);
    margin: 0;
}

.image-lightbox-img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    background: #111;
}

.site-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-image-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

body.lightbox-open {
    overflow: hidden;
}

.site-image-lightbox-dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: 90vh;
}

.site-image-lightbox-title {
    color: #fff;
    text-align: center;
    margin: 0 0 12px;
    font-weight: 600;
}

.site-image-lightbox-close {
    position: absolute;
    top: -42px;
    right: 0;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

/* Footer */