:root {
    --primary: #ff6b35;
    --primary-dk: #e55a25;
    --secondary: #ffc125;
    --accent: #2ec4b6;
    --accent2: #e84393;
    --dark: #1a1a2e;
    --light: #fff9f0;
    --muted: #6b7280;
    --border: #f0e8dc;
    --card-bg: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(255, 107, 53, 0.18);
}

body {
    font-family: "Ubuntu", sans-serif;
    background: var(--light);
    color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Ubuntu", sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    overflow: visible;
}

.site-header .nav-link {
    text-align: start;
}

.navbar-main {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.navbar-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.navbar-toolbar-start {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 0;
}

.navbar-toolbar-search {
    flex: 1 1 auto;
    max-width: 420px;
    min-width: 0;
    margin-inline: auto;
}

.navbar-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.navbar-main-links .nav-link.active {
    color: var(--primary) !important;
    background: rgba(255, 107, 53, 0.12);
}

.nav-link-tight {
    padding: 6px 12px !important;
}

.navbar-lang-btn {
    border-radius: 999px;
    font-weight: 600;
    padding-inline: 12px;
}

.navbar-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    line-height: 1.2;
}

.navbar-lang-switch:hover {
    text-decoration: none;
}

.mobile-nav-lang {
    margin-bottom: 10px;
}

.mobile-lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    padding-block: 10px;
}

.mobile-lang-switch:hover {
    text-decoration: none;
}

.navbar-icon-btn {
    border: 0;
    background: var(--light);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.navbar-icon-btn:hover {
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary);
}

.nav-categories-bar {
    background: linear-gradient(180deg, #fff9f0 0%, #fff 100%);
    border-bottom: 2px solid var(--border);
    overflow: visible;
    text-align: start;
}

.nav-categories-bar-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    text-align: start;
}

.nav-categories-scroll-strip {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 6px;
}

.nav-cat-scroll-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--dark);
    line-height: 1;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.nav-cat-scroll-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
}

.nav-cat-scroll-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.nav-categories-inner {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 0 12px;
    min-height: 52px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    text-align: start;
    cursor: grab;
}

.nav-categories-inner.is-dragging {
    cursor: grabbing;
    user-select: none;
    -webkit-user-select: none;
}

.nav-categories-inner a.nav-cat-pill,
.nav-categories-inner .nav-cat-pill.dropdown-toggle {
    cursor: grab;
}

.nav-categories-inner.is-dragging a.nav-cat-pill,
.nav-categories-inner.is-dragging .nav-cat-pill.dropdown-toggle {
    cursor: grabbing;
}

.nav-categories-label {
    flex-shrink: 0;
    font-family: "Ubuntu", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 6px 0;
    text-align: start;
}

.nav-categories-scroll {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    flex: 0 0 auto;
    min-width: max-content;
    overflow: visible;
    padding-bottom: 2px;
    position: relative;
    text-align: start;
}

.nav-categories-bar .nav-cat-item.dropdown {
    position: relative;
    flex-shrink: 0;
}

.nav-categories-bar .nav-cat-item.dropdown.show {
    z-index: 1080;
}

.nav-cat-dropdown.dropdown-menu {
    z-index: 4000;
}

.nav-categories-inner::-webkit-scrollbar {
    display: none;
}

.nav-cat-pill {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: "Ubuntu", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    border: 2px solid var(--border);
    text-decoration: none;
    line-height: 1.2;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    text-align: start;
}

.nav-cat-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-cat-pill.is-active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
}

button.nav-cat-pill.dropdown-toggle::after {
    margin-inline-start: 6px;
    vertical-align: 0.15em;
}

.nav-cat-dropdown {
    width: min(100vw - 32px, 340px);
    max-height: min(70vh, 420px);
    overflow-y: auto;
    padding: 16px 18px;
    border-radius: var(--radius) !important;
    margin-top: 6px !important;
    text-align: start;
}

.nav-cat-dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: start;
}

.nav-cat-dropdown-col {
    min-width: 0;
    text-align: start;
}

.nav-cat-dropdown-heading {
    display: block;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 8px;
    text-align: start;
}

.nav-cat-dropdown-heading.is-link {
    text-decoration: none;
    color: var(--primary);
}

.nav-cat-dropdown-heading.is-link:hover {
    text-decoration: underline;
}

.nav-cat-dropdown-list {
    text-align: start;
}

.nav-cat-dropdown-list a {
    display: block;
    padding: 4px 0;
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    text-align: start;
}

.nav-cat-dropdown-list a:hover {
    color: var(--primary);
}

.nav-cat-see-all {
    display: block;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
    text-align: start;
}

.nav-cat-see-all:hover {
    text-decoration: underline;
}

.mobile-nav-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 14px 0 6px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.mobile-nav-sub-heading {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #5c5348;
    margin: 8px 0 4px;
}

.nav-link-sm {
    font-size: 0.92rem !important;
    padding: 4px 12px !important;
}

[dir="rtl"] .search-wrap .bi-search {
    left: auto;
    right: 14px;
}

[dir="rtl"] .search-wrap input {
    padding: 8px 40px 8px 16px;
}

[dir="rtl"] .mobile-nav-sidebar {
    left: auto;
    right: 0;
    transform: translateX(102%);
}

[dir="rtl"] .mobile-nav-sidebar.open {
    transform: translateX(0);
}

@media (max-width: 767px) {
    .navbar-toolbar {
        gap: 8px;
    }

    .logo-text {
        font-size: 1.35rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .logo-sub {
        font-size: 0.58rem;
    }

    .btn-cart {
        padding: 8px 14px;
        font-size: 0.92rem;
    }
}

@media (min-width: 992px) {
    .nav-categories-inner {
        min-height: 0;
        padding: 12px 0 14px;
    }
}

@media (max-width: 575.98px) {
    .nav-cat-scroll-btn {
        width: 32px;
        height: 32px;
    }

    .nav-categories-scroll-strip {
        gap: 4px;
    }
}

.nav-categories-bar .container {
    overflow: visible;
}

.site-header > .navbar.navbar-main {
    --bs-navbar-padding-y: 0;
    --bs-navbar-padding-x: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.logo-text {
    font-family: "Ubuntu", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.logo-text span {
    color: var(--primary);
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-link {
    font-family: "Ubuntu", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark) !important;
    padding: 6px 14px !important;
    border-radius: 30px;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(255, 107, 53, 0.08);
}

.search-wrap {
    position: relative;
    flex: 1;
    max-width: 340px;
}

.search-wrap input {
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px 8px 40px;
    font-size: 0.9rem;
    background: var(--light);
    width: 100%;
}

.search-wrap input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.search-wrap .bi-search {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.btn-cart {
    position: relative;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-family: "Ubuntu", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-cart:hover {
    background: var(--primary-dk);
    color: #fff;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    inset-inline-end: -2px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 22px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    pointer-events: none;
    font-family: "Ubuntu", sans-serif;
}

.cart-count-badge.d-none {
    display: none !important;
}

.theme-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1090;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.theme-sidebar-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.theme-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    width: min(88vw, 380px);
    background: #fff;
    z-index: 1100;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease;
}

.mobile-nav-sidebar {
    left: 0;
    transform: translateX(-102%);
}

.cart-sidebar-theme {
    right: 0;
    transform: translateX(102%);
}

.mobile-nav-sidebar.open,
.cart-sidebar-theme.open {
    transform: translateX(0);
}

.theme-sidebar-head {
    padding: 16px 18px;
    border-bottom: 2px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-sidebar-body {
    padding: 16px 18px;
    overflow-y: auto;
}

.theme-sidebar-close {
    border: 0;
    background: var(--light);
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.cart-sidebar-theme .table {
    font-size: 0.85rem;
}

.cart-sidebar-theme .cart-td {
    vertical-align: middle;
}

.cart-sidebar-theme .modal-footer,
.cart-sidebar-theme .modal-header {
    display: none;
}

.cart-sidebar-theme .add-to-cart {
    gap: 6px;
}

.cart-sidebar-theme .add-to-cart .default-btn,
.cart-sidebar-theme .btn {
    border-radius: 40px;
}

.cart-sidebar-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.cart-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cart-sidebar-item {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px 2px;
    border-bottom: 1.5px solid var(--border);
}

.cart-sidebar-item:first-child {
    padding-top: 4px;
}

.cart-sidebar-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.cart-sidebar-thumb {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    background: #f2ede5;
    border: 1px solid #e8e1d6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.cart-sidebar-thumb img {
    width: 66px;
    height: 66px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-sidebar-name {
    display: block;
    font-family: "Ubuntu", sans-serif;
    color: var(--dark);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 2px;
}

.cart-sidebar-name:hover {
    color: var(--primary);
}

.cart-sidebar-price {
    color: var(--primary);
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 2px 0 8px;
}

.cart-sidebar-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.cart-sidebar-actions .input-counter {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cart-sidebar-actions .input-counter .qty-input {
    width: 26px;
    border: 0;
    background: transparent;
    text-align: center;
    font-family: "Ubuntu", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    padding: 0;
}

.cart-sidebar-actions .input-counter .qty-input:focus {
    outline: none;
}

.cart-sidebar-actions .minus-btn,
.cart-sidebar-actions .plus-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #ded5c7;
    background: #f4eee4;
    color: #7f7360;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-sidebar-actions .minus-btn:hover,
.cart-sidebar-actions .plus-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cart-sidebar-remove {
    border: 0;
    background: transparent;
    color: #a19686;
    font-size: 1.05rem;
    line-height: 1;
    padding: 8px 2px;
}

.cart-sidebar-remove:hover {
    color: #dc3545;
}

.cart-sidebar-footer {
    border-top: 2px solid var(--border);
    margin-top: 14px;
    padding-top: 14px;
}

.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cart-sidebar-total strong {
    font-family: "Ubuntu", sans-serif;
    color: var(--dark);
}

.cart-empty-state {
    text-align: center;
    color: var(--muted);
    padding: 28px 8px;
}

.cart-empty-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.page-header-section {
    background: linear-gradient(135deg, #fff3ea 0%, #fff9e8 100%);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-bottom: 24px;
}

.section-label {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    font-family: "Ubuntu", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 4px 14px;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.section-sub {
    color: var(--muted);
    margin: 0;
}

.hero-section {
    background: linear-gradient(135deg, #fff3ea 0%, #fff9e8 50%, #e8f7f6 100%);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 52px 36px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-desc {
    color: var(--muted);
    font-size: 1rem;
    max-width: 560px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.hero-stat strong {
    display: block;
    font-size: 1.3rem;
    font-family: "Ubuntu", sans-serif;
}

.hero-stat span {
    font-size: 0.82rem;
    color: var(--muted);
}

.btn-primary-custom,
.default-btn.btn-primary-custom {
    background: var(--primary);
    border: 0;
    color: #fff;
    border-radius: 50px;
    padding: 11px 24px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
}

.btn-primary-custom:hover,
.default-btn.btn-primary-custom:hover {
    background: var(--primary-dk);
    color: #fff;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 10px 22px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
}

.btn-secondary-custom:hover {
    background: var(--primary);
    color: #fff;
}

.category-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    padding: 22px 18px;
    transition: 0.2s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.category-card .cat-icon {
    font-size: 2rem;
    display: block;
}

.category-card .cat-icon--image img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.category-card .cat-name {
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    margin-top: 10px;
}

.product-card-theme .card {
    border-radius: var(--radius);
    border: 2px solid var(--border);
    overflow: hidden;
    transition: 0.25s ease;
    background: #fff;
}

.product-card-theme .card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.product-card-theme .product-card-media {
    position: relative;
    height: 235px;
    /*padding: 18px;*/
    background: #ece8e2;
}

.product-card-theme .card img {
    width: 100%;
    height: 235px;
    object-fit: fill;
    border-radius: 12px;
}

.product-card-theme .product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #2ec4b6;
    color: #fff;
    border-radius: 30px;
    padding: 4px 12px;
    font-family: "Ubuntu", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
}

.product-card-theme .product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 1px solid #e6ddd0;
    border-radius: 50%;
    background: #fff;
    color: #a58f76;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-theme .product-wishlist:hover {
    color: var(--accent2);
}

.product-card-theme .card-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
}

.product-card-theme .product-category-label {
    color: #7b7368;
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
}

.product-card-theme .card-title {
    font-family: "Ubuntu", sans-serif;
    color: #1d2134;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-theme .product-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.product-card-theme .product-stars {
    color: #ffc125;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
}

.product-card-theme .product-review-count {
    color: #7b7368;
    font-size: 0.82rem;
}

.product-card-theme .product-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.product-card-theme .card-text {
    color: var(--primary) !important;
    font-family: "Ubuntu", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 8px !important;
    text-align: center;
}

.product-card-theme .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 999px;
    font-size: 0.88rem;
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    white-space: nowrap;
    padding: 8px 16px;
}

.product-card-theme .btn-primary:hover {
    background: var(--primary-dk);
    border-color: var(--primary-dk);
}

.product-card-theme .product-add-btn {
    min-width: 134px;
    font-size: 0.94rem;
    padding: 9px 18px;
}

.product-card-theme .product-qty-control.input-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 4px 8px;
    background: #fff;
    margin: 0 auto;
}

.product-card-theme .product-qty-control .qty-input {
    width: 28px;
    border: 0;
    background: transparent;
    text-align: center;
    font-family: "Ubuntu", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    padding: 0;
}

.product-card-theme .product-qty-control .qty-input:focus {
    outline: none;
}

.product-card-theme .product-qty-control .minus-btn,
.product-card-theme .product-qty-control .plus-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #ded5c7;
    background: #f4eee4;
    color: #7f7360;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.product-card-theme .product-qty-control .minus-btn:hover,
.product-card-theme .product-qty-control .plus-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.product-details-theme {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.product-details-theme .products-details-content h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.product-details-theme .products-details-content .price {
    color: var(--primary);
    font-size: 1.6rem;
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
}

.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    background: #f9f4ee;
    border: 2px solid var(--border);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 2px solid var(--border);
    overflow: hidden;
}

.product-title-pd {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-price-pd .current {
    font-family: "Ubuntu", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-short-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 14px 0 20px;
}

/* Product page qty: match cart sidebar (not legacy .add-to-cart pill layout) */
.product-details-theme .add-to-cart .input-counter.product-qty-control {
    width: auto;
    margin-right: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.product-details-theme .add-to-cart .input-counter.product-qty-control .qty-input {
    width: 32px;
    height: auto;
    display: inline-block;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    font-family: "Ubuntu", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.product-details-theme .add-to-cart .input-counter.product-qty-control .qty-input:focus {
    outline: none;
}

.product-details-theme .add-to-cart .input-counter.product-qty-control .minus-btn,
.product-details-theme .add-to-cart .input-counter.product-qty-control .plus-btn {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #ded5c7;
    background: #f4eee4;
    color: #7f7360;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-details-theme .add-to-cart .input-counter.product-qty-control .minus-btn:hover,
.product-details-theme .add-to-cart .input-counter.product-qty-control .plus-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.filter-card-theme,
.checkout-card-theme,
.order-summary-theme {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}

.checkout-card-theme .form-control,
.checkout-card-theme .form-select {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    height: 46px;
}

.checkout-card-theme textarea.form-control {
    height: auto;
}

.main-footer-theme {
    background: var(--dark);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 34px;
    padding: 46px 28px 22px;
}

.main-footer-theme .footer-logo {
    font-family: "Ubuntu", sans-serif;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
}

.main-footer-theme .footer-logo span {
    color: var(--secondary);
}

.main-footer-theme .footer-heading {
    color: #fff;
    font-family: "Ubuntu", sans-serif;
    font-size: 1rem;
    margin-bottom: 14px;
}

.main-footer-theme .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer-theme .footer-links li {
    margin-bottom: 8px;
}

.main-footer-theme .footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.66);
}

.main-footer-theme .footer-links a:hover {
    color: var(--secondary);
}

.main-footer-theme .footer-bottom {
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 16px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
    .hero-section {
        padding: 32px 20px;
    }

    .page-header-section {
        padding: 20px 16px;
    }

    .product-card-theme .product-card-media {
        height: 205px;
        /*padding: 14px;*/
    }

    .product-card-theme .card img {
        width: 100%;
        height: 205px;
    }

    .product-card-theme .card-title {
        font-size: 1rem;
    }

    .product-card-theme .card-text {
        font-size: 1.45rem;
    }

    .product-card-theme .btn-primary {
        padding: 7px 11px;
        font-size: 0.8rem;
    }
}

@media (min-width: 992px) {
    .mobile-nav-sidebar {
        display: none;
    }
}
