/* Centralized public storefront UI */
:root {
    --public-bg: #ffffff;
    --public-surface: #ffffff;
    --public-soft: #f7f4ef;
    --public-border: #eadfce;
    --public-text: #24211d;
    --public-muted: #756f66;
    --public-accent: #9a641f;
    --public-accent-dark: #744812;
    --public-gold: #c79a3f;
    --public-danger: #b42318;
    --public-success: #198754;
    --public-shadow: 0 10px 30px rgba(42, 34, 24, 0.08);
    --public-radius: 8px;
    --public-nav-height: 56px;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--public-text);
    background: var(--public-bg);
    font-family: "Circular Std Book", Arial, sans-serif;
    line-height: 1.6;
}

body.public-page {
    padding-top: var(--public-nav-height);
}

body.auth-page,
body.maintenance-page {
    padding-top: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
}

a {
    color: var(--public-accent);
}

a:hover {
    color: var(--public-accent-dark);
}

img {
    max-width: 100%;
}

.dashboard-main-wrapper {
    min-height: calc(100vh - var(--public-nav-height));
    background: var(--public-bg);
}

.dashboard-content {
    padding: 22px 0 42px;
    background: var(--public-bg);
}

.container-fluid.dashboard-content > .row,
.responsive-margin,
.categories-static-section .row,
.row.mx-5 {
    margin-left: clamp(12px, 4vw, 64px) !important;
    margin-right: clamp(12px, 4vw, 64px) !important;
}

/* Header */
.dashboard-header .navbar,
.site-navbar {
    height: var(--public-nav-height) !important;
    min-height: var(--public-nav-height) !important;
    padding: 0 clamp(12px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 0 !important;
    box-shadow: 0 8px 22px rgba(36, 33, 29, 0.06);
}

.navbar-brand.site-brand,
.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-right: clamp(10px, 2vw, 20px);
    max-width: 108px;
    flex: 0 0 auto;
}

.navbar-brand img,
.site-brand img {
    display: block;
    width: auto !important;
    max-width: 100px !important;
    height: 40px !important;
    max-height: 40px !important;
    object-fit: contain;
}

.navbar-right-top {
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

.navbar-right-top .nav-item {
    border-right: 0;
}

.navbar-right-top .nav-item .nav-link,
.site-navbar .nav-link {
    color: var(--public-text);
    font-size: 14px;
    line-height: 1.2;
    padding: 9px 8px;
    border-radius: var(--public-radius);
    transition: color 0.2s ease, background 0.2s ease;
}

.navbar-right-top .nav-item .nav-link:hover,
.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
    color: var(--public-accent);
    background: var(--public-soft);
}

.site-navbar .dropdown-menu {
    border: 0;
    border-radius: var(--public-radius);
    box-shadow: var(--public-shadow);
    padding: 8px;
    margin-top: 10px;
    min-width: 210px;
}

.site-navbar .dropdown-menu.show {
    display: block;
}

.site-navbar .dropdown:hover .dropdown-menu:not(.show) {
    display: none !important;
}

.site-navbar .dropdown-item {
    color: var(--public-text);
    border-radius: 6px;
    font-size: 14px;
    padding: 10px 12px;
    white-space: normal;
}

.site-navbar .dropdown-item:hover {
    color: var(--public-accent);
    background: var(--public-soft);
}

.site-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.site-cart-link .badge {
    background: var(--public-accent);
    color: #fff;
    min-width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.nav-user-info {
    background: var(--public-accent);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 6px;
}

.site-navbar .nav-user .dropdown-menu {
    min-width: 190px;
}

.navbar-toggler {
    border-color: var(--public-border);
    padding: 6px 9px;
    line-height: 1;
}

.navbar-toggler i {
    color: var(--public-text);
    font-size: 18px;
}

/* Footer */
.footer,
.site-footer {
    width: 100%;
    margin-top: 0;
    padding: 34px clamp(18px, 5vw, 72px) 20px;
    color: var(--public-muted);
    background: #fff;
    border-top: 1px solid var(--public-border);
}

.site-footer h5,
.footer h5 {
    color: var(--public-text);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.site-footer p,
.footer p,
.site-footer li,
.footer li {
    color: var(--public-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.site-footer hr,
.footer hr {
    border-top: 1px solid var(--public-border);
    margin: 12px auto 16px;
    max-width: 90px;
}

.site-footer a,
.footer a {
    color: var(--public-muted);
}

.site-footer a:hover,
.footer a:hover {
    color: var(--public-accent);
}

.site-footer .social {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer .icon,
.footer .social .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0 12px;
    color: var(--public-muted);
    border: 1px solid var(--public-border);
    border-radius: 999px;
    background: #fff;
    box-shadow: none;
    font-family: inherit;
    font-size: 0.92rem;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer .icon i,
.footer .social .icon i {
    min-width: 18px;
    font-size: 1rem;
    line-height: 1;
}

.site-footer .icon > span,
.footer .social .icon > span {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 0.9rem;
    font-weight: 800;
    transition: max-width 0.2s ease, opacity 0.2s ease, margin-left 0.2s ease;
}

.site-footer .icon:hover,
.footer .social .icon:hover {
    width: 136px;
    gap: 8px;
    background: #fff !important;
    border-color: var(--public-text);
}

.site-footer .icon:hover > span,
.footer .social .icon:hover > span {
    max-width: 86px;
    opacity: 1;
    margin-left: 8px;
}

.site-footer .icon:hover i,
.footer .social .icon:hover i,
.site-footer .icon:hover span,
.footer .social .icon:hover span {
    color: #000 !important;
}

.site-footer-copy {
    border-top: 1px solid var(--public-border);
    margin-top: 24px;
    padding-top: 16px;
    text-align: center;
    font-size: 0.9rem;
}

/* Shared page structure */
.page-header {
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    box-shadow: none;
    margin-bottom: 22px;
}

.pageheader-title {
    color: var(--public-text);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    font-size: 0.92rem;
}

.breadcrumb-link {
    color: var(--public-accent);
}

.breadcrumb-item.active {
    color: var(--public-muted);
}

.decorative-line {
    width: 64px;
    height: 3px;
    background: var(--public-accent);
    border-radius: 999px;
    margin: 10px auto 0;
}

.home-dashboard-content {
    padding: 0 0 42px !important;
    overflow-x: hidden;
    background: #fff;
}

.home-dashboard-content.container-fluid {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.home-dashboard-content > .home-hero-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
}

.home-hero-col {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.home-hero-wrapper {
    position: relative;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    min-height: clamp(500px, calc(92vh - var(--public-nav-height)), 740px);
    overflow: hidden;
    background: #111;
}

.container-fluid.dashboard-content.home-dashboard-content > .row.home-hero-row {
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
}

.container-fluid.dashboard-content.home-dashboard-content > .row.home-hero-row > .home-hero-col {
    padding: 0 !important;
}

.container-fluid.dashboard-content.home-dashboard-content .home-hero-wrapper {
    width: 100% !important;
    margin-left: 0 !important;
}

.about-dashboard-content {
    padding: 0 0 42px !important;
    overflow-x: hidden;
}

.about-dashboard-content.container-fluid {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.about-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: clamp(420px, 58vh, 640px);
    overflow: hidden;
    background: #111;
}

.about-hero-wrapper img {
    width: 100%;
    height: clamp(420px, 58vh, 640px);
    display: block;
    object-fit: cover;
}

.about-hero-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(21, 18, 14, 0.75), rgba(21, 18, 14, 0.3));
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: clamp(28px, 6vw, 84px);
}

.about-hero-content {
    width: min(660px, 100%);
    color: #fff;
}

.about-hero-content span,
.section-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.about-hero-content span {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.about-hero-content h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.06;
    font-weight: 900;
    margin-bottom: 14px;
}

.about-hero-content p {
    width: min(560px, 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 22px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-page-section,
.about-values-section {
    width: min(1180px, calc(100% - 32px));
    margin: 54px auto 0;
}

.section-kicker {
    color: var(--public-accent);
    background: var(--public-soft);
}

.about-page-section h2,
.about-values-section h2 {
    color: var(--public-text);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
}

.about-page-section p {
    color: var(--public-muted);
    font-size: 1rem;
    line-height: 1.9;
}

.about-value-card {
    height: 100%;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
}

.about-value-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--public-accent);
    border-radius: var(--public-radius);
    margin-bottom: 16px;
}

.about-value-card h3 {
    color: var(--public-text);
    font-size: 1.1rem;
    font-weight: 900;
}

.about-value-card p {
    color: var(--public-muted);
    margin-bottom: 0;
}

.collections-dashboard-content {
    padding: 0 0 42px !important;
    overflow-x: hidden;
}

.collections-dashboard-content.container-fluid {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.shop-dashboard-content {
    padding: 0 0 42px !important;
    overflow-x: hidden;
    background: #fff;
}

.shop-dashboard-content.container-fluid {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.shop-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: clamp(300px, 40vh, 460px);
    display: flex;
    align-items: center;
    padding: clamp(28px, 6vw, 76px);
    background:
        linear-gradient(90deg, rgba(21, 18, 14, 0.72), rgba(21, 18, 14, 0.18)),
        url("../uploads/categories/251104105203.jpg") center/cover;
    overflow: hidden;
}

.shop-hero-content {
    width: min(620px, 100%);
    color: #fff;
    position: relative;
    z-index: 1;
}

.shop-hero-content span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.shop-hero-content h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.06;
    font-weight: 900;
    margin-bottom: 12px;
}

.shop-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 20px;
}

.shop-products-section {
    width: min(1180px, calc(100% - 32px));
    margin: 54px auto 0;
}

.shop-products-head {
    text-align: center;
    margin-bottom: 28px;
}

.shop-products-head h2 {
    color: var(--public-text);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
}

.shop-products-grid {
    margin-left: -12px !important;
    margin-right: -12px !important;
}

.shop-products-grid > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

.collections-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: clamp(360px, 48vh, 560px);
    overflow: hidden;
    background: #111;
}

.collections-hero-wrapper img {
    width: 100%;
    height: clamp(360px, 48vh, 560px);
    display: block;
    object-fit: cover;
}

.collections-hero-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(21, 18, 14, 0.72), rgba(21, 18, 14, 0.24));
}

.collections-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: clamp(28px, 6vw, 84px);
}

.collections-hero-content {
    color: #fff;
    width: min(620px, 100%);
}

.collections-hero-content span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.collections-hero-content h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.06;
    font-weight: 900;
    margin-bottom: 12px;
}

.collections-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 0;
}

.collections-page-section {
    width: min(1180px, calc(100% - 32px));
    margin: 54px auto 0;
}

.collections-section-head {
    text-align: center;
    margin-bottom: 28px;
}

.collections-section-head h2 {
    color: var(--public-text);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.collection-card {
    display: block;
    color: var(--public-text);
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.collection-card:hover {
    color: var(--public-text);
    border-color: rgba(154, 100, 31, 0.45);
    box-shadow: var(--public-shadow);
    transform: translateY(-3px);
}

.collection-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
}

.collection-card-body {
    padding: 16px;
}

.collection-card-body h3 {
    color: var(--public-text);
    font-size: 1.08rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.collection-card-body span {
    color: var(--public-accent);
    font-size: 0.9rem;
    font-weight: 800;
}

.home-hero-carousel,
.home-hero-carousel .carousel-inner,
.home-hero-carousel .carousel-item {
    height: 100%;
    min-height: inherit;
}

.home-hero-carousel img {
    width: 100%;
    height: clamp(500px, calc(92vh - var(--public-nav-height)), 740px);
    object-fit: cover;
}

.home-hero-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(760px, 68vw);
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(21, 18, 14, 0.78) 0%, rgba(21, 18, 14, 0.56) 54%, rgba(21, 18, 14, 0) 100%);
    pointer-events: none;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(28px, 6vw, 86px);
}

.home-hero-content {
    width: min(640px, 100%);
    color: #fff;
}

.home-hero-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
}

.home-hero-content h1,
.home-hero-content h2 {
    color: #fff;
    font-size: clamp(2.25rem, 5.2vw, 4.6rem);
    line-height: 1.04;
    font-weight: 900;
    margin-bottom: 14px;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.home-hero-content h2 {
    max-width: 780px;
}

.home-hero-content p {
    width: min(590px, 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
    line-height: 1.55;
    margin-bottom: 20px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--public-radius);
    font-weight: 800;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light:hover {
    color: var(--public-text) !important;
    background: #fff;
}

.home-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-hero-facts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 0.9rem;
}

.home-hero-facts strong {
    color: #fff;
}

.home-hero-wrapper .carousel-control-prev,
.home-hero-wrapper .carousel-control-next {
    z-index: 3;
    width: 56px;
    opacity: 0.9;
}

.home-feature-section,
.home-special-section,
.home-story-section {
    width: min(1180px, calc(100% - 32px));
    margin: 58px auto 0;
}

.home-section-head {
    text-align: center;
    margin-bottom: 34px;
}

.home-section-head h2,
.home-special-copy h2,
.home-story-copy h2 {
    color: var(--public-text);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
}

.home-feature-grid,
.home-special-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-feature-card,
.home-special-card {
    display: block;
    background: #fff;
    border: 0;
    border-radius: var(--public-radius);
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(36, 33, 29, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-feature-card:hover,
.home-special-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(36, 33, 29, 0.12);
}

.home-feature-card img,
.home-special-card img {
    width: 100%;
    aspect-ratio: 4 / 3.4;
    display: block;
    object-fit: cover;
}

.home-feature-card div {
    padding: 18px;
    background: #fff;
}

.home-feature-card h3,
.home-special-card span {
    color: var(--public-text);
    font-size: 1.05rem;
    font-weight: 900;
}

.home-feature-card p,
.home-special-copy p,
.home-story-copy p {
    color: var(--public-muted);
}

.home-special-section,
.home-story-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
    gap: 32px;
    align-items: center;
}

.home-special-copy,
.home-story-copy {
    background: #fff;
    padding: clamp(22px, 4vw, 44px);
    border-radius: var(--public-radius);
    box-shadow: 0 14px 34px rgba(36, 33, 29, 0.06);
}

.home-special-card {
    position: relative;
}

.home-special-card span {
    display: block;
    padding: 15px 16px;
}

.home-story-section {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    background: #fff;
    padding: clamp(16px, 3vw, 28px);
    border-radius: var(--public-radius);
    box-shadow: 0 14px 34px rgba(36, 33, 29, 0.06);
}

.home-story-image img {
    width: 100%;
    aspect-ratio: 5 / 4;
    display: block;
    object-fit: cover;
    border-radius: var(--public-radius);
}

.home-special-copy,
.home-special-grid {
    position: relative;
    z-index: 1;
}

.btn-brand,
.auth-btn,
#contact-submit-btn,
#cart-checkout-btn,
.product-simple-cart-btn,
#single-product-add-cart,
.about-cta-btn.primary,
.categories-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 11px 18px;
    color: #fff !important;
    background: var(--public-accent);
    border: 1px solid var(--public-accent);
    border-radius: var(--public-radius);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-brand:hover,
.auth-btn:hover,
#contact-submit-btn:hover,
#cart-checkout-btn:hover,
.product-simple-cart-btn:hover,
#single-product-add-cart:hover,
.about-cta-btn.primary:hover,
.categories-btn:hover {
    background: var(--public-accent-dark);
    border-color: var(--public-accent-dark);
    color: #fff !important;
    transform: translateY(-1px);
}

.btn-outline-brand,
.product-simple-details-btn,
#cart-shop-btn,
.about-cta-btn.secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 16px;
    color: var(--public-accent) !important;
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    font-weight: 700;
    text-decoration: none;
}

.btn-outline-brand:hover,
.product-simple-details-btn:hover,
#cart-shop-btn:hover,
.about-cta-btn.secondary:hover {
    color: #fff !important;
    background: var(--public-accent);
    border-color: var(--public-accent);
}

/* Auth */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 16px;
}

.auth-container {
    width: 100%;
    max-width: 470px;
}

.auth-card {
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    box-shadow: var(--public-shadow);
    padding: clamp(24px, 4vw, 38px);
}

.auth-logo {
    text-align: center;
    margin-bottom: 16px;
}

.auth-logo img {
    width: 136px;
    height: auto;
}

.auth-title {
    text-align: center;
    margin-bottom: 24px;
}

.auth-title h2 {
    color: var(--public-text);
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-title p,
.auth-footer p {
    color: var(--public-muted);
}

.auth-input-group {
    margin-bottom: 16px;
}

.auth-label,
.account-label {
    color: var(--public-text);
    font-size: 0.92rem;
    font-weight: 700;
}

.auth-input,
.account-input,
#contact-input,
#contact-textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    color: var(--public-text);
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input:focus,
.account-input:focus,
#contact-input:focus,
#contact-textarea:focus {
    border-color: var(--public-accent);
    box-shadow: 0 0 0 3px rgba(154, 100, 31, 0.12);
}

.auth-password-wrapper {
    position: relative;
}

.auth-password-wrapper .auth-input {
    padding-right: 54px;
}

.auth-eye-icon {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--public-muted);
    border: 0;
    border-radius: 999px;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.auth-eye-icon:hover,
.auth-eye-icon:focus {
    color: var(--public-accent);
    background: var(--public-soft);
    outline: none;
}

.auth-eye-icon i {
    font-size: 0.95rem;
    line-height: 1;
}

.auth-btn {
    width: 100%;
    margin-top: 6px;
}

.auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--public-muted);
    margin: 22px 0;
    text-align: center;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--public-border);
}

.auth-divider span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    text-align: center;
}

.auth-inline-links {
    display: flex;
    justify-content: flex-end;
    margin: -4px 0 14px;
    font-size: 0.92rem;
}

.auth-google {
    text-align: center;
    margin-top: 0;
}

.google-signin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 46px;
    padding: 11px 18px;
    color: var(--public-text);
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.google-signin-btn:hover {
    background: var(--public-soft);
    color: var(--public-text);
}

.google-icon {
    width: 18px;
    height: 18px;
}

.auth-footer {
    text-align: center;
    margin-top: 22px;
}

.auth-link {
    font-weight: 700;
}

/* Toasts */
.toast-container {
    position: fixed;
    top: calc(var(--public-nav-height) + 18px);
    right: clamp(12px, 2vw, 24px);
    z-index: 3000;
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.auth-page .toast-container {
    top: 18px;
}

.toast {
    width: min(380px, calc(100vw - 24px));
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: start;
    padding: 14px 14px 12px;
    background: #fff;
    border: 1px solid var(--public-border);
    border-left: 3px solid var(--public-accent);
    border-radius: var(--public-radius);
    box-shadow: 0 18px 44px rgba(36, 33, 29, 0.12);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow: hidden;
    pointer-events: auto;
}

.toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast.success {
    border-left-color: var(--public-success);
}

.toast.error {
    border-left-color: var(--public-danger);
}

.toast.warning {
    border-left-color: #d79a28;
}

.toast.info {
    border-left-color: var(--public-accent);
}

.toast-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--public-accent);
    background: var(--public-soft);
    border-radius: 999px;
}

.toast.success .toast-icon {
    color: var(--public-success);
    background: rgba(43, 138, 62, 0.1);
}

.toast.error .toast-icon {
    color: var(--public-danger);
    background: rgba(199, 57, 57, 0.1);
}

.toast.warning .toast-icon {
    color: #b7791f;
    background: rgba(215, 154, 40, 0.12);
}

.toast-title {
    color: var(--public-text);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.toast-message {
    color: var(--public-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.toast-close {
    border: 0;
    background: transparent;
    color: var(--public-muted);
    cursor: pointer;
    padding: 2px;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: rgba(154, 100, 31, 0.12);
}

.toast-progress::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: var(--public-accent);
    transform-origin: left;
    animation: public-toast-progress 5s linear forwards;
}

.toast.success .toast-progress::before {
    background: var(--public-success);
}

.toast.error .toast-progress::before {
    background: var(--public-danger);
}

.toast.warning .toast-progress::before {
    background: #d79a28;
}

@keyframes public-toast-progress {
    to {
        transform: scaleX(0);
    }
}

/* Product and category cards */
.product-thumbnail,
.public-category-card,
#cardprod,
.category-static-card,
.account-card,
#cart-container,
#contact-form-container,
#contact-map-container,
.contact-info-card,
#contact-info-card,
.modern-card,
.service-bubble,
#single-product-container {
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    box-shadow: none;
    overflow: hidden;
}

.product-thumbnail,
#single-product-container,
#single-product-gallery,
#single-product-info {
    background: #fff !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.product-thumbnail:hover {
    border-color: transparent !important;
    box-shadow: none !important;
    transform: none;
}

.product-thumbnail,
.public-category-card,
#cardprod,
.category-static-card {
    margin-bottom: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-thumbnail:hover,
.public-category-card:hover,
#cardprod:hover,
.category-static-card:hover {
    border-color: rgba(154, 100, 31, 0.45);
    box-shadow: var(--public-shadow);
    transform: translateY(-2px);
}

.product-thumbnail:hover {
    border-color: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.product-img,
.product-img-head,
.public-category-card .category-image,
#cardprod img {
    background: #fff;
}

.product-img img,
.product-thumbnail img,
.public-category-card img,
#cardprod img,
.category-image-box img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.product-thumbnail .product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: clamp(14px, 2vw, 24px);
    background: #fff !important;
}

.product-thumbnail .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background: #fff;
}

.product-content,
.public-category-card .category-card-body {
    padding: 16px;
}

.product-content-head,
.product_btn {
    display: flex;
    gap: 10px;
}

.product-content-head {
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.product_btn {
    align-items: stretch;
}

.product-simple-title,
.image__title {
    color: var(--public-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.product-simple-price {
    color: var(--public-accent);
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
}

.product-simple-cart-btn,
.product-simple-details-btn {
    flex: 1;
    font-size: 0.9rem;
}

#cardprod .image__overlay {
    background: linear-gradient(180deg, rgba(36, 33, 29, 0.08), rgba(36, 33, 29, 0.58));
}

#cardprod .image__title {
    color: #fff;
}

.categories-static-section,
.about-section-modern {
    padding: 34px 0;
}

.categories-text-block,
.about-content-modern {
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    padding: 24px;
}

.categories-badge,
.about-badge {
    display: inline-flex;
    color: var(--public-accent);
    background: var(--public-soft);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.categories-title,
.about-main-title,
.category-header-title {
    color: var(--public-text);
    font-weight: 800;
}

.categories-desc,
.about-intro,
.about-paragraph {
    color: var(--public-muted);
}

/* About */
.traditions-hero,
.modern-card,
.service-bubble {
    box-shadow: none !important;
}

.traditions-hero img,
.about-hero-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.golden-text,
.modern-card h2,
.service-bubble h4 {
    color: var(--public-accent) !important;
}

.gradient-bg {
    background: var(--public-accent) !important;
}

.value-hexagon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    background: var(--public-accent);
    border-radius: var(--public-radius);
}

.value-hexagon i {
    color: #fff !important;
}

/* Contact */
.contact-info-card,
#contact-info-card {
    height: 100%;
    padding: 24px 18px;
    text-align: center;
}

.contact-icon-wrapper,
#contact-icon-wrapper {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--public-accent);
    border-radius: var(--public-radius);
    margin-bottom: 14px;
}

.contact-info-card h4,
#contact-info-card h4 {
    color: var(--public-text);
    font-weight: 800;
}

.contact-info-card p,
#contact-info-card p {
    color: var(--public-muted);
    margin-bottom: 0;
}

#contact-map-container {
    padding: 8px;
}

.contact-map-frame {
    width: 100%;
    min-height: 400px;
    border: 0;
    border-radius: var(--public-radius);
}

#contact-form-container {
    padding: clamp(20px, 4vw, 34px);
}

#contact-form-header {
    margin-bottom: 22px;
}

#contact-form-header h2 {
    color: var(--public-text);
    font-weight: 800;
}

#contact-form-header p {
    color: var(--public-muted);
}

#contact-textarea {
    resize: vertical;
}

/* Cart */
.cart-page .dashboard-content {
    padding: 24px 15px 46px;
    background: #fff;
}

.cart-page .page-header {
    margin-bottom: 6px;
}

.cart-page .row.mx-5 {
    width: auto;
    max-width: none;
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

#cart-container {
    padding: 0;
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    box-shadow: none;
    overflow: hidden;
}

#cart-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--public-border);
    background: #fff;
}

#cart-header h2 {
    color: var(--public-text);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
}

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

#cart-table,
.orders-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

#cart-table th,
.orders-table thead th {
    color: var(--public-text);
    background: var(--public-soft);
    border-bottom: 1px solid var(--public-border);
    font-size: 0.88rem;
    font-weight: 800;
    padding: 13px 14px;
    white-space: nowrap;
}

#cart-table td,
.orders-table tbody td {
    color: var(--public-text);
    background: #fff;
    border-bottom: 1px solid var(--public-border);
    padding: 14px;
    vertical-align: middle;
}

#cart-table tfoot td {
    background: #fff;
}

#cart-table tbody tr td:first-child {
    border-left: 0;
    border-radius: 0;
}

#cart-table tbody tr td:last-child {
    border-right: 0;
    border-radius: 0;
}

#cart-empty {
    padding: 40px 20px;
    text-align: center;
}

#cart-empty i {
    color: var(--public-accent);
    font-size: 2rem;
    margin-bottom: 10px;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    overflow: hidden;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 0;
    color: var(--public-text);
    background: var(--public-soft);
}

#cart-quantity-input {
    width: 48px;
    height: 36px;
    border: 0;
    text-align: center;
}

#cart-delete-btn {
    color: var(--public-danger);
}

#cart-total-row td {
    font-weight: 800;
    background: #fff;
    border-bottom: 1px solid var(--public-border);
}

#cart-delivery-box,
#cart-delivery-method-box,
#cart-payment-box {
    display: grid;
    gap: 8px;
    min-height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

#cart-date-input {
    min-height: 42px;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    padding: 8px 10px;
}

#cart-delivery-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.delivery-radio-option {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 0;
}

#cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 0;
}

#cart-clear-btn {
    min-height: 44px;
    padding: 10px 16px;
    color: var(--public-text);
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    font-weight: 700;
}

/* Account */
.account-card {
    margin-bottom: 24px;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    color: var(--public-text);
    background: var(--public-soft);
    border-bottom: 1px solid var(--public-border);
}

.account-header h3 {
    margin: 0;
    color: var(--public-text);
    font-size: 1.15rem;
    font-weight: 800;
}

.account-header i {
    color: var(--public-accent);
}

.account-body {
    padding: 22px 20px;
}

.account-actions {
    display: flex;
    justify-content: flex-end;
}

.account-save-btn {
    min-height: 44px;
    padding: 10px 16px;
    color: #fff;
    background: var(--public-accent);
    border: 1px solid var(--public-accent);
    border-radius: var(--public-radius);
    font-weight: 700;
}

.order-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.82rem;
    font-weight: 800;
}

.order-status.delivered {
    color: #0f5132;
    background: #d1e7dd;
}

.order-status.pending {
    color: #664d03;
    background: #fff3cd;
}

.orders-empty {
    text-align: center;
    color: var(--public-muted);
}

/* Single product */
#single-product-container {
    padding: clamp(18px, 3vw, 30px);
}

#single-product-gallery {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: var(--public-radius);
}

#single-product-gallery .carousel-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

#carousel-arrow-prev,
#carousel-arrow-next {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--public-text);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
}

#single-product-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 8px 0 8px 22px;
}

#single-product-name {
    color: var(--public-text);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
}

#single-product-price {
    color: var(--public-accent);
    font-size: 1.35rem;
    font-weight: 900;
}

#single-product-description-title {
    color: var(--public-text);
    font-size: 1rem;
    font-weight: 800;
}

#single-product-description {
    color: var(--public-muted);
}

#single-product-add-cart {
    width: fit-content;
}

/* Maintenance */
.maintenance-card {
    width: min(560px, calc(100vw - 32px));
    margin: 12vh auto 0;
    padding: 34px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius);
    box-shadow: var(--public-shadow);
}

.maintenance-card h1 {
    color: var(--public-accent);
    font-size: 1.8rem;
    font-weight: 800;
}

.maintenance-card p {
    color: var(--public-muted);
}

/* Back to top */
.up {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    background: var(--public-accent);
    color: #fff;
    border-radius: 999px;
    box-shadow: var(--public-shadow);
    cursor: pointer;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.up i {
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.up.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    :root {
        --public-nav-height: 56px;
    }

    body.public-page {
        padding-top: 56px;
    }

    .dashboard-header .navbar,
    .site-navbar {
        padding: 0 14px;
    }

    .navbar-brand.site-brand,
    .navbar-brand {
        max-width: 96px;
    }

    .navbar-brand img,
    .site-brand img {
        max-width: 88px !important;
        height: 36px !important;
        max-height: 36px !important;
    }

    .site-navbar .navbar-collapse {
        max-height: calc(100vh - var(--public-nav-height) - 12px);
        overflow-y: auto;
        padding: 12px 0 4px;
        background: #fff;
    }

    .navbar-right-top {
        align-items: stretch;
    }

    .navbar-right-top .nav-item .nav-link,
    .site-navbar .nav-link {
        padding: 10px 8px;
        font-size: 14px;
    }

    .product-content-head,
    .product_btn {
        flex-direction: column;
    }

    #single-product-info {
        padding: 22px 0 0;
    }
}

@media (max-width: 767.98px) {
    .dashboard-content {
        padding-top: 16px;
    }

    .container-fluid.dashboard-content > .row,
    .responsive-margin,
    .categories-static-section .row,
    .row.mx-5 {
        margin-left: 12px !important;
        margin-right: 12px !important;
    }

    .container-fluid.dashboard-content {
        padding-left: 0;
        padding-right: 0;
    }

    .cart-page .row.mx-5 {
        margin-left: 12px !important;
        margin-right: 12px !important;
    }

    .home-hero-wrapper,
    .home-hero-carousel img {
        min-height: 500px;
        height: 500px;
    }

    .home-hero-overlay {
        align-items: flex-end;
        padding: 24px 16px 34px;
    }

    .home-hero-wrapper::after {
        width: 100%;
        background: linear-gradient(0deg, rgba(21, 18, 14, 0.74) 0%, rgba(21, 18, 14, 0.28) 46%, rgba(21, 18, 14, 0) 78%);
    }

    .home-hero-content h1,
    .home-hero-content h2 {
        font-size: 2rem;
    }

    .home-hero-actions {
        flex-direction: column;
    }

    .home-hero-actions a {
        width: 100%;
    }

    .home-feature-section,
    .home-special-section,
    .home-story-section {
        width: calc(100% - 24px);
        margin-top: 36px;
    }

    .home-feature-grid,
    .home-special-grid,
    .home-special-section,
    .home-story-section {
        grid-template-columns: 1fr;
    }

    .about-hero-wrapper,
    .about-hero-wrapper img {
        min-height: 500px;
        height: 500px;
    }

    .about-hero-overlay {
        align-items: flex-end;
        padding: 24px 16px 34px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-actions {
        flex-direction: column;
    }

    .about-hero-actions a {
        width: 100%;
    }

    .about-page-section,
    .about-values-section {
        width: calc(100% - 24px);
        margin-top: 34px;
    }

    .collections-hero-wrapper,
    .collections-hero-wrapper img {
        min-height: 420px;
        height: 420px;
    }

    .collections-hero-overlay {
        align-items: flex-end;
        padding: 24px 16px 34px;
    }

    .collections-page-section {
        width: calc(100% - 24px);
        margin-top: 34px;
    }

    .shop-hero-wrapper {
        min-height: 380px;
        align-items: flex-end;
        padding: 24px 16px 34px;
    }

    .shop-products-section {
        width: calc(100% - 24px);
        margin-top: 34px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .page-header {
        padding: 16px !important;
    }

    .auth-card {
        padding: 22px 18px;
    }

    #cart-actions,
    .account-actions {
        justify-content: stretch;
    }

    #cart-actions button,
    .account-save-btn,
    #single-product-add-cart {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    :root {
        --public-nav-height: 56px;
    }

    body.public-page {
        padding-top: 56px;
    }

    .dashboard-header .navbar,
    .site-navbar {
        height: 56px !important;
        min-height: 56px;
        padding: 0 12px;
    }

    .navbar-brand.site-brand,
    .navbar-brand {
        max-width: 84px;
        margin-right: 8px;
    }

    .navbar-brand img,
    .site-brand img {
        max-width: 78px !important;
        height: 32px !important;
        max-height: 32px !important;
    }

    .pageheader-title {
        font-size: 1.35rem;
    }

    .home-hero-wrapper,
    .home-hero-carousel img {
        min-height: 460px;
        height: 460px;
    }

    .home-hero-content h1,
    .home-hero-content h2 {
        font-size: 1.75rem;
    }

    .home-hero-content p {
        font-size: 1rem;
    }

    .home-hero-facts {
        display: none;
    }

    .about-hero-wrapper,
    .about-hero-wrapper img {
        min-height: 480px;
        height: 480px;
    }

    .collections-hero-wrapper,
    .collections-hero-wrapper img {
        min-height: 380px;
        height: 380px;
    }

    .shop-hero-wrapper {
        min-height: 340px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .product-content,
    .public-category-card .category-card-body,
    .categories-text-block,
    .about-content-modern,
    #contact-form-container,
    .account-body,
    #single-product-container {
        padding: 16px;
    }

    .product-img img,
    .product-thumbnail img,
    .public-category-card img,
    #cardprod img,
    .category-image-box img {
        aspect-ratio: 4 / 3;
    }

    #cart-table th,
    #cart-table td,
    .orders-table thead th,
    .orders-table tbody td {
        padding: 10px;
        font-size: 0.88rem;
    }
}
