/* Light Theme CSS Variables & Layout */
:root {
    --primary-color: #e67a00;
    --primary-hover: #cc6c00;
    --secondary-color: #007185;
    --accent-color: #febd69;
    --app-bg: #eaeded;
    --card-bg: #ffffff;
    --text-primary: #0f1111;
    --text-secondary: #565959;
    --border-color: #d5d9d9;
    --glass-bg: rgba(255, 255, 255, 0.96);
    --glass-border: rgba(213, 217, 217, 0.8);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-md: 8px;
    --radius-full: 9999px;
    --transition: all 0.25s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--app-bg);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* Announcement Bar */
.announcement-bar {
    background: #232f3e;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    padding: 8px 16px;
    letter-spacing: 0.2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header Outer Container */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #131921;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Header Content Wrapper */
.header-main {
    max-width: 1380px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Brand / Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.site-logo img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-badge {
    color: #febd69;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e67a00, #febd69);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #131921;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Header Search Form */
.header-search {
    flex: 1;
    max-width: 650px;
    display: flex;
    position: relative;
}

.search-input {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 10px 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
}

.search-btn {
    background: #febd69;
    border: none;
    padding: 0 20px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #131921;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: #f3a847;
}

/* Mobile Search Bar */
.mobile-search-wrapper {
    display: none;
    width: 100%;
    padding: 8px 16px 12px;
    background: #232f3e;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-search-wrapper.show {
    display: block !important;
}

.mobile-search-form {
    width: 100%;
    display: flex;
    position: relative;
}

.mobile-search-form .search-input {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 10px 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: var(--text-primary);
    font-size: 0.92rem;
    outline: none;
}

.mobile-search-form .search-btn {
    background: #febd69;
    border: none;
    padding: 0 18px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #131921;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-search-form .search-btn:hover {
    background: #f3a847;
}

/* User Actions & Icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    position: relative;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.action-btn:hover, .action-btn:focus {
    outline: none;
    border: none;
    color: #febd69;
}

.mobile-search-trigger {
    display: none;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Primary Sub-Header Nav Bar */
.nav-wrapper {
    background: #232f3e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
    padding: 4px 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    border: none;
    border-radius: 6px;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.nav-link.active {
    color: #febd69;
    background: rgba(254, 189, 105, 0.15);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #febd69;
    border-radius: 2px;
}

.nav-link i {
    font-size: 0.9rem;
    color: #febd69;
    transition: transform 0.2s ease;
}

.nav-link:hover i {
    transform: translateY(-1px);
}

/* Off-Canvas Navigation Drawer & Backdrop */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid transparent;
    padding: 6px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-toggle:hover {
    border-color: #ffffff;
}

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -310px;
    width: 290px;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 1100;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
    transform: translateX(310px);
}

.drawer-header {
    background: #232f3e;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.drawer-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

.drawer-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

.drawer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer-nav .nav-link {
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 500;
}

.drawer-nav .nav-link:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

.drawer-nav .nav-link.active {
    background: rgba(230, 122, 0, 0.12);
    color: #e67a00;
    font-weight: 700;
}

.drawer-nav .nav-link.active::after {
    display: none;
}

.drawer-support-box {
    margin-top: 24px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-box-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 2px;
}

.support-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.support-link:hover {
    color: #e67a00;
}

.drawer-footer {
    padding: 14px 16px 24px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border-color);
    background: #f8fafc;
}

/* Hero Boxed-Width Slider Styles */
.hero-slider-wrapper {
    position: relative;
    max-width: 1380px;
    margin: 15px auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.hero-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 60px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    min-height: 360px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide-badge {
    background: #febd69;
    color: #111111;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-slide-subtitle {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 0 24px;
    opacity: 0.95;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0c14b;
    border: 1px solid #a88734;
    color: #111111;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.hero-slide-btn:hover {
    background: #ddb347;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-color);
    color: #111111;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    width: 24px;
    border-radius: 8px;
    background: #febd69;
}

/* 4-Card Category Grid Section */
.category-grid-section {
    max-width: 1380px;
    margin: 30px auto 30px;
    position: relative;
    z-index: 20;
    padding: 0 20px;
}

.category-4card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 15px;
}

.category-card-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}

.category-4tile-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.tile-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tile-img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 4px;
}

.tile-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.category-card-link {
    color: #007185;
    font-size: 0.88rem;
    font-weight: 600;
}

.category-card-link:hover {
    color: #c7511f;
    text-decoration: underline;
}

/* Horizontal Product Deal Showcase */
.deals-section {
    max-width: 1380px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.deals-card-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.deals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.deals-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f1111;
}

.product-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.product-tile {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-tile:hover {
    border-color: #febd69;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-tile-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.product-badge-tag {
    align-self: flex-start;
    background: #cc0c39;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 6px;
}

.product-tile-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f1111;
    line-height: 1.3;
    margin-bottom: 6px;
    height: 38px;
    overflow: hidden;
}

.product-stars {
    color: #ffa41c;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.product-stars span {
    color: var(--text-secondary);
    margin-left: 4px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: auto;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f1111;
}

.price-original {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

/* Trust Badges Section */
.trust-bar {
    max-width: 1380px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.trust-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: #fef8f0;
    border-radius: 50%;
    color: #e67a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 2px;
}

.trust-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Artisan Craftsmanship Story Section */
.artisan-story-section {
    max-width: 1380px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.artisan-banner-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.artisan-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f1111;
    margin: 10px 0;
}

.artisan-banner-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.artisan-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.step-pill {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-num {
    background: #e67a00;
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Curated Collections Banner Grid */
.collections-grid-section {
    max-width: 1380px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

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

.collection-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.collection-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}

.collection-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.collection-card-sub {
    font-size: 0.85rem;
    color: #febd69;
    font-weight: 600;
}

/* Customer Reviews Section */
.reviews-section {
    max-width: 1380px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f1111;
}

.verified-badge {
    color: #007600;
    font-size: 0.78rem;
    font-weight: 600;
}

.review-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    max-width: 1380px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-q {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   Shop Page Styles
   ========================================================================== */
.shop-hero-banner {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 20px;
    margin-bottom: 24px;
}

.shop-hero-container {
    max-width: 1380px;
    margin: 0 auto;
}

.shop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.shop-breadcrumb a {
    color: #007185;
    font-weight: 500;
}

.shop-breadcrumb a:hover {
    color: #c7511f;
    text-decoration: underline;
}

.breadcrumb-sep {
    font-size: 0.7rem;
    color: #a0a0a0;
}

.shop-hero-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f1111;
    margin-bottom: 6px;
}

.shop-hero-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 800px;
}

/* Shop Layout Grid */
.shop-main-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-layout-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

/* Sidebar Box */
.sidebar-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #0f1111;
    display: flex;
    align-items: center;
}

.sidebar-close-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
}

.filter-category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.filter-cat-link:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

.filter-cat-link.active {
    background: rgba(230, 122, 0, 0.12);
    color: #e67a00;
    font-weight: 700;
}

.cat-badge {
    background: #f1f5f9;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.filter-cat-link.active .cat-badge {
    background: #e67a00;
    color: #ffffff;
}

.filter-section-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

/* Price Filter Form */
.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.price-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-num-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.88rem;
    outline: none;
}

.price-num-input:focus {
    border-color: #e67a00;
}

.price-dash {
    color: var(--text-secondary);
    font-weight: bold;
}

.price-filter-btn {
    background: #232f3e;
    color: #ffffff;
    border: none;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.price-filter-btn:hover {
    background: #131921;
}

.reset-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 12px;
    background: #fef8f0;
    border: 1px dashed #e67a00;
    color: #e67a00;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.reset-filter-btn:hover {
    background: #e67a00;
    color: #ffffff;
}

/* Filter Backdrop for Mobile */
.filter-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.filter-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Shop Products Controls Bar */
.shop-controls-bar {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.controls-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-filter-trigger {
    display: none;
    background: #febd69;
    color: #131921;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    gap: 6px;
}

.results-count-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.sort-select {
    padding: 7px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.88rem;
    color: var(--text-primary);
    background: #ffffff;
    outline: none;
    cursor: pointer;
}

/* Shop Products Cards Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shop-product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
}

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

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

.card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.card-category-name {
    font-size: 0.78rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #0f1111;
    line-height: 1.35;
    margin-bottom: 12px;
    height: 42px;
    overflow: hidden;
}

.card-title a:hover {
    color: #e67a00;
}

.card-price-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.price-group {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.card-buy-btn {
    background: #febd69;
    color: #131921;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.card-buy-btn:hover {
    background: #f3a847;
}

/* Empty Shop Box */
.empty-shop-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px 20px;
    text-align: center;
}

.empty-icon {
    width: 70px;
    height: 70px;
    background: #fef8f0;
    border-radius: 50%;
    color: #e67a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
}

.empty-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 8px;
}

.empty-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    max-width: 480px;
    margin: 0 auto 20px;
}

/* Pagination Bar Styles */
.shop-pagination-wrapper {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.pagination-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.page-numbers-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.page-link.number-btn {
    min-width: 36px;
    height: 36px;
    padding: 0;
}

.page-link:hover:not(.disabled):not(.active) {
    background: #f1f5f9;
    color: #e67a00;
}

.page-link.active {
    background: #e67a00;
    color: #ffffff;
    border-color: #e67a00;
}

.page-link.disabled {
    color: #b0b0b0;
    cursor: not-allowed;
    opacity: 0.6;
}

.page-link.prev-btn, .page-link.next-btn {
    gap: 6px;
}

/* ==========================================================================
   Categories Showcase Page Styles
   ========================================================================== */
.categories-showcase-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.category-showcase-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.cat-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
}

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

.category-showcase-card:hover .cat-card-img {
    transform: scale(1.05);
}

.cat-count-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(19, 25, 33, 0.85);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cat-top-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e67a00;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.cat-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cat-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 4px;
}

.cat-card-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.cat-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    margin-bottom: 20px;
    padding: 0;
}

.cat-feature-list li {
    font-size: 0.84rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.cat-explore-btn {
    margin-top: auto;
    background: #232f3e;
    color: #ffffff;
    text-align: center;
    padding: 11px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.cat-explore-btn:hover {
    background: #e67a00;
    color: #ffffff;
}

/* Category Heritage Banner Box */
.category-heritage-banner {
    background: #fef8f0;
    border: 1px solid #f3a847;
    border-radius: 12px;
    padding: 30px;
    margin-top: 10px;
}

.heritage-content {
    max-width: 900px;
}

.heritage-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f1111;
    margin: 8px 0 10px;
}

.heritage-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.heritage-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #e67a00;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Deals & Special Offers Page Styles
   ========================================================================== */
.deals-hero-banner {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 20px;
    margin-bottom: 24px;
}

.deals-hero-container {
    max-width: 1380px;
    margin: 0 auto;
}

.deals-hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 10px;
}

.deals-hero-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f1111;
    margin: 8px 0 6px;
}

.deals-hero-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 700px;
}

/* Countdown Timer Box */
.deals-countdown-box {
    background: #fef8f0;
    border: 1px solid #f3a847;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
    box-shadow: 0 4px 12px rgba(230, 122, 0, 0.08);
}

.countdown-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f1111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

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

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #232f3e;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    min-width: 48px;
}

.time-block .num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #febd69;
    line-height: 1;
}

.time-block .unit {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #a0a0a0;
    margin-top: 2px;
}

.colon {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #232f3e;
}

/* Promo Coupons Bar */
.promo-coupons-section {
    max-width: 1380px;
    margin: 0 auto 28px;
    padding: 0 20px;
}

.promo-coupons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.coupon-card {
    background: #ffffff;
    border: 1px dashed #e67a00;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.coupon-icon {
    width: 46px;
    height: 46px;
    background: rgba(230, 122, 0, 0.12);
    border-radius: 50%;
    color: #e67a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.coupon-info {
    flex: 1;
}

.coupon-code {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f1111;
    letter-spacing: 0.5px;
}

.coupon-desc {
    font-size: 0.84rem;
    color: var(--text-secondary);
}

.copy-coupon-btn {
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.copy-coupon-btn:hover {
    background: #e67a00;
    color: #ffffff;
    border-color: #e67a00;
}

/* Deals Products Grid */
.deals-products-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.deals-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.deals-grid-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f1111;
}

.deals-count-tag {
    background: #fef8f0;
    border: 1px solid #f3a847;
    color: #e67a00;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.deal-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #d32f2f;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(211, 47, 47, 0.3);
}

.deal-save-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    width: fit-content;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: start;
}

.contact-subheading {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f1111;
    margin-bottom: 8px;
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: #f3a847;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: #232f3e;
    border-radius: 8px;
    color: #febd69;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-card-text h3 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 4px;
}

.contact-card-text p {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.card-hint {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.custom-order-box {
    background: #fef8f0;
    border: 1px solid #f3a847;
    border-radius: 10px;
    padding: 18px 20px;
}

.custom-order-box h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 6px;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f1111;
    margin-bottom: 6px;
}

.contact-main-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.86rem;
    font-weight: 600;
    color: #0f1111;
}

.req {
    color: #d32f2f;
}

.contact-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: #ffffff;
    outline: none;
    transition: var(--transition);
}

.contact-input:focus {
    border-color: #e67a00;
    box-shadow: 0 0 0 3px rgba(230, 122, 0, 0.12);
}

.textarea-input {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: #febd69;
    color: #131921;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background: #f3a847;
}

.form-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
}

.alert-success {
    background: #e8f5e9;
    border: 1px solid #81c784;
    color: #1b5e20;
}

.alert-error {
    background: #ffebee;
    border: 1px solid #e57373;
    color: #b71c1c;
}

/* ==========================================================================
   Product Detail & Instant Checkout Page Styles
   ========================================================================== */
.product-detail-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Product Detail & Multi-Payment Page Styles
   ========================================================================== */
.product-detail-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-pc-layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.product-gallery-column {
    position: sticky;
    top: 90px;
}

.main-image-card {
    position: relative;
    width: 100%;
    height: 480px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

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

.main-image-card:hover .hero-product-img {
    transform: scale(1.04);
}

.thumbnail-gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumb-item {
    height: 85px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

.thumb-item:hover, .thumb-item.active {
    border-color: #e67a00;
    box-shadow: 0 0 0 2px rgba(230, 122, 0, 0.2);
}

.artisan-seal-box {
    background: #fef8f0;
    border: 1px solid #f3a847;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.seal-icon {
    width: 42px;
    height: 42px;
    background: #e67a00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.seal-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 2px;
}

.seal-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

/* Product Purchase Column */
.category-pill {
    background: rgba(0, 113, 133, 0.1);
    color: #007185;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-price-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 16px 0 20px;
}

.price-main-line {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.vat-tax-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Multi-Payment Options Selection */
.payment-method-selection {
    margin-bottom: 16px;
}

.payment-label {
    font-size: 0.86rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 8px;
    display: block;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.payment-option-card {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-option-card:hover {
    border-color: #febd69;
}

.payment-option-card.active {
    border-color: #e67a00;
    background: #fef8f0;
    box-shadow: 0 0 0 2px rgba(230, 122, 0, 0.15);
}

.option-icon {
    font-size: 1.1rem;
    color: #232f3e;
}

.option-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f1111;
}

.option-sub {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.mobile-pay-info-box {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.pay-info-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f1111;
    margin-bottom: 6px;
}

/* PC Checkout Card Container */
.pc-checkout-card {
    background: #ffffff;
    border: 1.5px solid #febd69;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.pc-order-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qty-control-box {
    display: flex;
    align-items: center;
    gap: 2px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-num-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.order-summary-box {
    background: #fef8f0;
    border: 1px solid #f3a847;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.88rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.summary-line.total-line {
    border-top: 1px dashed #f3a847;
    padding-top: 6px;
    margin-top: 4px;
    color: #0f1111;
    font-size: 0.95rem;
}

.place-order-submit-btn {
    background: #febd69;
    color: #131921;
    border: none;
    padding: 13px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    width: 100%;
}

.place-order-submit-btn:hover {
    background: #f3a847;
}

.trust-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.trust-pill {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Tabs Section */
.product-tabs-section {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.tabs-header-bar {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.tab-btn {
    padding: 14px 24px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: var(--transition);
}

.tab-btn:hover {
    color: #e67a00;
}

.tab-btn.active {
    color: #e67a00;
    border-bottom-color: #e67a00;
    background: #ffffff;
}

.tab-content-box {
    display: none;
    padding: 24px;
}

.tab-content-box.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.specs-table tr {
    border-bottom: 1px solid #f1f5f9;
}

.specs-table td {
    padding: 10px 12px;
}

.specs-table td:first-child {
    font-weight: 700;
    color: #0f1111;
    width: 30%;
    background: #f8fafc;
}

.tab-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 10px;
}

.care-instructions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.care-instructions-list li {
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Related Products */
.related-products-section {
    margin-top: 30px;
}

.related-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f1111;
    margin-bottom: 20px;
}

/* Comprehensive Tablet & Mobile Responsive Media Queries */

/* Tablet & Medium Laptops (768px - 1199px) */
@media (max-width: 1199px) {
    .nav-wrapper {
        display: none !important;
    }

    .header-search {
        display: none !important;
    }

    .mobile-toggle, .mobile-search-trigger {
        display: flex !important;
    }

    .mobile-search-wrapper {
        display: none;
    }

    .hero-slider-wrapper {
        margin: 14px auto 0;
        border-radius: 8px;
    }

    .hero-slide {
        padding: 40px 24px;
        min-height: 280px;
    }

    .hero-slide-title {
        font-size: 1.65rem;
    }

    .hero-slide-subtitle {
        font-size: 0.92rem;
    }

    .category-4card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-horizontal-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .collections-3card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .artisan-banner-box {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .artisan-title {
        font-size: 1.5rem;
    }

    .artisan-banner-img {
        height: 250px;
    }

    /* Shop Page Tablet Responsiveness */
    .shop-layout-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        z-index: 1100;
        background: #ffffff;
        overflow-y: auto;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        border: none;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }

    .shop-sidebar.open {
        transform: translateX(320px);
    }

    .sidebar-box {
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 20px;
    }

    .sidebar-close-btn {
        display: block;
    }

    .mobile-filter-trigger {
        display: flex;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Mobile Screens (< 768px) */
@media (max-width: 767px) {
    .header-main {
        padding: 8px 12px;
    }

    .site-logo {
        font-size: 1.15rem;
    }

    .header-search {
        display: none !important;
    }

    .mobile-toggle, .mobile-search-trigger {
        display: flex !important;
    }

    .hero-slider-wrapper {
        margin: 10px auto 0;
        border-radius: 6px;
    }

    .hero-slide {
        padding: 24px 16px;
        min-height: 230px;
    }

    .hero-slide-badge {
        font-size: 0.72rem;
        padding: 3px 10px;
        margin-bottom: 8px;
    }

    .hero-slide-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .hero-slide-subtitle {
        font-size: 0.82rem;
        margin-bottom: 14px;
        line-height: 1.4;
    }

    .hero-slide-btn {
        padding: 7px 16px;
        font-size: 0.82rem;
    }

    .slider-arrow {
        width: 30px;
        height: 40px;
        font-size: 0.85rem;
    }

    .slider-arrow.prev { left: 4px; }
    .slider-arrow.next { right: 4px; }

    .category-grid-section {
        margin: 15px auto 20px;
        padding: 0 12px;
    }

    .category-4card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .category-card {
        padding: 14px;
    }

    .category-card-title {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .category-card-thumb {
        height: 150px;
    }

    .tile-img {
        height: 75px;
    }

    .tile-label {
        font-size: 0.75rem;
    }

    .deals-section, .artisan-story-section, .collections-grid-section, .reviews-section, .faq-section, .trust-bar {
        padding: 0 12px;
        margin-bottom: 20px;
    }

    .deals-card-box {
        padding: 14px;
    }

    .deals-title {
        font-size: 1.05rem;
    }

    .product-horizontal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-tile {
        padding: 10px;
    }

    .product-tile-img {
        height: 135px;
    }

    .product-tile-name {
        font-size: 0.82rem;
        height: 34px;
        line-height: 1.3;
    }

    .price-current {
        font-size: 0.95rem;
    }

    .price-original {
        font-size: 0.75rem;
    }

    .artisan-banner-box {
        grid-template-columns: 1fr !important;
        padding: 16px;
        gap: 16px;
    }

    .artisan-title {
        font-size: 1.25rem;
    }

    .artisan-banner-img {
        height: 190px;
    }

    .artisan-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .step-pill {
        padding: 6px 10px;
        font-size: 0.78rem;
    }

    .collections-3card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .collection-card {
        height: 150px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trust-item {
        padding: 12px;
    }

    /* Shop Page Mobile Responsiveness */
    .shop-hero-banner {
        padding: 16px 12px;
        margin-bottom: 16px;
    }

    .shop-hero-title {
        font-size: 1.35rem;
    }

    .shop-hero-desc {
        font-size: 0.85rem;
    }

    .shop-main-section {
        padding: 0 12px;
    }

    .shop-controls-bar {
        padding: 10px 12px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .results-count-text {
        display: none;
    }

    .sort-select {
        padding: 6px 10px;
        font-size: 0.82rem;
    }

    .sort-label {
        font-size: 0.82rem;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .card-content {
        padding: 10px;
    }

    .card-image-wrapper {
        height: 130px;
    }

    .card-title {
        font-size: 0.85rem;
        height: 36px;
        line-height: 1.3;
    }

    .card-buy-btn {
        padding: 4px 8px;
        font-size: 0.78rem;
    }

    /* Pagination Mobile Tweak */
    .shop-pagination-wrapper {
        margin-top: 24px;
    }

    .pagination-bar {
        padding: 6px 10px;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-link {
        padding: 5px 10px;
        font-size: 0.82rem;
    }

    .page-link.number-btn {
        min-width: 32px;
        height: 32px;
    }

    /* Categories Page Mobile Adjustments */
    .categories-showcase-section {
        padding: 0 12px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cat-card-img-wrapper {
        height: 160px;
    }

    .cat-card-body {
        padding: 14px;
    }

    .cat-card-title {
        font-size: 1.15rem;
    }

    .cat-feature-list {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 14px;
    }

    .category-heritage-banner {
        padding: 16px;
        border-radius: 8px;
    }

    .heritage-title {
        font-size: 1.2rem;
    }

    .heritage-stats-row {
        gap: 12px;
        justify-content: space-between;
    }

    /* Deals Page Mobile Adjustments */
    .deals-hero-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .deals-countdown-box {
        min-width: auto;
        padding: 12px;
        width: 100%;
    }

    .promo-coupons-section, .deals-products-section {
        padding: 0 12px;
    }

    .promo-coupons-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .coupon-card {
        padding: 12px 14px;
        gap: 12px;
    }

    .coupon-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .coupon-code {
        font-size: 0.95rem;
    }

    .coupon-desc {
        font-size: 0.78rem;
    }

    .copy-coupon-btn {
        padding: 5px 10px;
        font-size: 0.78rem;
    }

    /* Contact Page Mobile Adjustments */
    .contact-section {
        padding: 0 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-card {
        padding: 18px 14px;
        border-radius: 8px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }

    /* Product Detail Mobile Adjustments */
    .product-detail-section {
        padding: 0 12px;
    }

    .product-pc-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-gallery-column {
        position: relative;
        top: 0;
    }

    .main-image-card {
        height: 260px;
    }

    .thumb-item {
        height: 65px;
    }

    .product-title-main {
        font-size: 1.35rem;
    }

    .price-current-large {
        font-size: 1.45rem;
    }

    .payment-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .pc-checkout-card {
        padding: 16px 14px;
        border-radius: 10px;
    }

    .trust-guarantees-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .specs-table td:first-child {
        width: 40%;
    }

    .tab-btn {
        padding: 10px 14px;
        font-size: 0.84rem;
    }

    .tab-content-box {
        padding: 14px;
    }
}
