/* custom_style.css - Clean, Modern, Minimalist Single-Product Theme */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #ff6b00; /* Bold Orange */
    --primary-hover: #e66000; /* Bold Orange Hover */
    --text-color: #2b2b2b;
    --text-muted: #7e7e7e;
    --bg-white: #fffdf5; /* Warm Cream Background */
    --bg-gray: #fff8eb; /* Warm Cream-Yellow Tint */
    --border-color: #fce8cc; /* Warm Border Tint */
    --border-light: #fff5e6;
    --success: #3bb77e;
    --font-stack: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-stack);
    color: var(--text-color);
    background-color: var(--bg-white);
    background-image: radial-gradient(rgba(255, 107, 0, 0.04) 1px, transparent 0);
    background-size: 24px 24px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

/* Common Layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-md-6 { width: 50%; padding: 0 15px; }
.col-md-4 { width: 33.333%; padding: 0 15px; }
.col-md-8 { width: 66.666%; padding: 0 15px; }
.col-md-7 { width: 58.333%; padding: 0 15px; }
.col-md-5 { width: 41.666%; padding: 0 15px; }

@media (max-width: 768px) {
    .col-md-6, .col-md-4, .col-md-8, .col-md-7, .col-md-5 {
        width: 100% !important;
        margin-bottom: 25px;
    }
}

/* Header */
.top-bar {
    background-color: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
    padding: 8px 0;
}

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

.main-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 600;
    font-size: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary);
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #333333;
}
.btn-secondary:hover {
    background-color: #1a1a1a;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color) !important;
}
.btn-outline:hover {
    background-color: var(--border-light);
}

/* Enhanced Hero Styles */
.hero-sec {
    position: relative;
    padding: 70px 0 60px;
    background: radial-gradient(circle at 85% 25%, rgba(255, 107, 0, 0.12) 0%, rgba(255, 253, 245, 1) 65%);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1.1;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.hero-text h1 {
    font-size: 46px;
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.hero-text h1 span {
    color: var(--primary);
    background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
    max-width: 540px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    margin-bottom: 24px;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.hero-feat-item i {
    color: var(--primary);
    font-size: 15px;
}

.hero-price-tag {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-price-tag .now-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.hero-price-tag .old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.hero-price-tag .save-tag {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: #666;
    flex-wrap: wrap;
}

.hero-trust-bar .stars {
    color: #f59e0b;
    font-size: 14px;
}

/* Hero Card Frame (Matching uploaded image) */
.hero-img {
    flex: 0.9;
    position: relative;
    background: #ffffff;
    border: 1px solid #fce8cc;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 20px 50px -10px rgba(255, 107, 0, 0.15), 0 0 1px 1px rgba(252, 232, 204, 0.6);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px -10px rgba(255, 107, 0, 0.2);
}

.hero-img img {
    border-radius: 14px;
    max-height: 440px;
    width: auto;
    object-fit: contain;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    display: block;
    margin: 0 auto;
}

.floating-pill {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    animation: floatAnim 4s ease-in-out infinite;
}

.floating-pill.top-right {
    top: 12px;
    right: 12px;
    animation-delay: 0s;
}

.floating-pill.bottom-left {
    bottom: 15px;
    left: 12px;
    animation-delay: 2s;
}

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

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        gap: 30px;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature Grid */
.features-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
}

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 5px;
}

.feat-card {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.2s ease;
    background: white;
}

.feat-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border-color: var(--primary);
}

.feat-card h3 {
    margin: 15px 0 10px;
    font-size: 18px;
}

/* Single Product Detail section */
.product-detail-sec {
    padding: 80px 0;
}

.gallery-container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    background-color: white;
}

.main-image-box {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #fdfdfd;
    border-radius: 8px;
    overflow: hidden;
}

.main-image-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease-in-out;
}

.thumb-strip {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumb-item {
    width: 68px;
    height: 68px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.thumb-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.thumb-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.25);
}

.info-container h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.price-box {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.save-badge {
    background-color: #fee2e2;
    color: #ef4444;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.product-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 16px;
}

.bullet-features {
    list-style: none;
    margin-bottom: 30px;
}

.bullet-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.bullet-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

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

.qty-val {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Frequently Bought Together Widget */
.fbt-card {
    background-color: var(--bg-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
}

.fbt-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fbt-images {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fbt-img-item {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.fbt-plus {
    font-size: 20px;
    color: var(--text-muted);
}

.fbt-list {
    margin-bottom: 20px;
}

.fbt-row {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fbt-row input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.fbt-summary {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Tabs Section */
.tabs-header {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-link {
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-link.active {
    border-bottom-color: var(--primary);
    color: var(--primary);
}

.tab-content-item {
    display: none;
}

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

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.table th, .table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.table th {
    background-color: var(--bg-gray);
    font-weight: 700;
}

/* Cart Page */
.cart-table th { background-color: var(--bg-gray); }
.cart-summary-box {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    background-color: var(--bg-white);
}

/* Footer */
footer {
    background-color: #1f2937;
    color: #9ca3af;
    padding: 40px 0;
    font-size: 14px;
}

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

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Toast Notifications alert UI */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.toast-notification {
    background: white;
    border-left: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
    opacity: 0;
    pointer-events: auto;
}
.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}
.toast-icon {
    color: var(--primary);
    font-size: 18px;
}
.toast-message {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

/* ========================================================
   ENHANCED HOME PAGE SECTIONS
   ======================================================== */

/* Key Stats Strip */
.stats-strip-section {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 0 10px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-color);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Interactive Visual Showcase */
.showcase-section {
    padding: 70px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.showcase-nav-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.showcase-pill-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-pill-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.showcase-pill-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.3);
}

.showcase-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.showcase-card-img-wrap {
    text-align: center;
    background: #fffdf8;
    border: 1px solid #fce8cc;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.showcase-card-img-wrap img {
    max-height: 460px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.showcase-card-img-wrap:hover img {
    transform: scale(1.02);
}

.showcase-zoom-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.showcase-zoom-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* Spaces Grid */
.spaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spaces-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spaces-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.1);
}

.spaces-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

/* Comparison Table */
.comp-table-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.03);
}

.comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comp-table th {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
}

.comp-table td {
    padding: 14px 20px;
    font-size: 14px;
    border-top: 1px solid var(--border-light);
}

.comp-table .lakunci-col {
    background: #fff8eb;
    color: var(--primary);
    font-weight: 700;
}

/* Testimonial Cards */
.review-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.08);
}

/* Trust Badges Bar */
.trust-badges-strip {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.trust-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff8eb;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Sticky Order Bar */
.sticky-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 10px 0;
    z-index: 999;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.08);
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-order-bar.visible {
    transform: translateY(0);
}

.sticky-order-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Lightbox Modal */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}

.image-lightbox.active {
    display: flex;
}

.image-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    cursor: default;
}

.image-lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .spaces-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .showcase-card {
        padding: 20px;
    }
}

/* Enhanced Multi-Column Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
    gap: 40px;
    margin-bottom: 35px;
}
.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}
.footer-col h4::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--primary);
    margin-top: 6px;
    border-radius: 2px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}
.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(3px);
}
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9ca3af;
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Policy Page Styling */
.policy-hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}
.policy-hero h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}
.policy-hero p {
    color: #9ca3af;
    font-size: 15px;
}
.policy-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    line-height: 1.8;
}
.policy-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-top: 30px;
    margin-bottom: 12px;
    border-bottom: 2px solid #fff5e6;
    padding-bottom: 8px;
}
.policy-card h2:first-of-type {
    margin-top: 0;
}
.policy-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 20px;
    margin-bottom: 8px;
}
.policy-card p, .policy-card ul, .policy-card ol {
    color: #4b5563;
    font-size: 15px;
    margin-bottom: 16px;
}
.policy-card ul, .policy-card ol {
    padding-left: 24px;
}
.policy-card li {
    margin-bottom: 8px;
}
.policy-badge-box {
    background: #fff8eb;
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 6px;
    margin: 20px 0;
    font-size: 14px;
    color: #92400e;
}

/* ========================================================
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   Optimized for screens 320px - 768px (iPhone SE to iPad)
   ======================================================== */

/* Global container padding on mobile */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
}

/* Header & Top Bar Mobile Optimization */
@media (max-width: 768px) {
    .top-bar {
        font-size: 11px;
        padding: 6px 0;
    }
    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        justify-content: center;
    }
    .top-bar-inner div {
        text-align: center;
    }

    .main-header {
        padding: 12px 0 8px;
    }
    .header-inner {
        flex-wrap: wrap;
        gap: 10px 0;
        align-items: center;
    }
    .logo {
        font-size: 20px;
    }
    .header-actions {
        gap: 12px;
        font-size: 13px;
    }
    .header-actions span {
        font-size: 12px !important;
    }
    
    /* Horizontal App-Bar Pill Nav on Mobile */
    .nav-links {
        order: 3;
        width: 100%;
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        gap: 8px;
        padding: 8px 2px 4px;
        margin-top: 6px;
        border-top: 1px solid var(--border-light);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    .nav-links a {
        display: inline-flex;
        align-items: center;
        padding: 6px 14px;
        background: #fff8eb;
        border: 1px solid var(--border-color);
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        color: var(--text-color);
        flex-shrink: 0;
        transition: all 0.2s ease;
    }
    .nav-links a:hover,
    .nav-links a:active {
        background: var(--primary);
        color: #ffffff;
        border-color: var(--primary);
    }

    .cart-dropdown-wrap {
        width: calc(100vw - 30px) !important;
        max-width: 320px;
        right: 15px !important;
        top: 55px !important;
    }
}

/* Hero Section Mobile Polish */
@media (max-width: 768px) {
    .hero-sec {
        padding: 35px 0 30px;
    }
    .hero-inner {
        flex-direction: column;
        gap: 25px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-pill-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.22;
        margin-bottom: 12px;
    }
    .hero-text p {
        font-size: 14px;
        margin: 0 auto 18px;
        max-width: 100%;
    }
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 320px;
        margin: 0 auto 20px;
        text-align: left;
    }
    .hero-price-tag {
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    .hero-price-tag .now-price {
        font-size: 28px;
    }
    .hero-price-tag .old-price {
        font-size: 16px;
    }
    .hero-trust-bar {
        justify-content: center;
        font-size: 12px;
        gap: 10px;
    }
    .hero-img {
        width: 100%;
        padding: 18px 12px;
        border-radius: 18px;
    }
    .hero-img img {
        max-height: 270px;
        width: auto;
        max-width: 100%;
    }
    .floating-pill {
        font-size: 11px;
        padding: 6px 10px;
    }
    .floating-pill.top-right {
        top: 8px;
        right: 8px;
    }
    .floating-pill.bottom-left {
        bottom: 10px;
        left: 8px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }
    .hero-price-tag .now-price {
        font-size: 24px;
    }
}

/* Key Stats Strip Mobile */
@media (max-width: 768px) {
    .stats-strip-section {
        padding: 20px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .stat-number {
        font-size: 24px;
    }
    .stat-label {
        font-size: 11px;
    }
}

/* Showcase Section Mobile */
@media (max-width: 768px) {
    .showcase-section {
        padding: 40px 0;
    }
    .showcase-nav-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        padding: 4px 2px 10px;
        margin-bottom: 25px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .showcase-nav-pills::-webkit-scrollbar {
        display: none;
    }
    .showcase-pill-btn {
        font-size: 12px;
        padding: 8px 14px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .showcase-card {
        padding: 18px;
        border-radius: 14px;
    }
    .showcase-card h3 {
        font-size: 20px !important;
        margin: 10px 0 12px !important;
    }
    .showcase-card p {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    .showcase-card-img-wrap {
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    .showcase-card-img-wrap img {
        max-height: 260px;
    }
    .showcase-zoom-btn {
        width: 32px;
        height: 32px;
        bottom: 10px;
        right: 10px;
        font-size: 12px;
    }
}

/* Spaces Grid Mobile */
@media (max-width: 768px) {
    .spaces-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .spaces-card {
        padding: 18px 14px;
    }
}
@media (max-width: 520px) {
    .spaces-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Trust Badges Strip Mobile */
@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 520px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }
    .trust-badge-item {
        justify-content: flex-start;
    }
}

/* Comparison Table Card Mobile */
.comp-table-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
    .comp-table-card {
        padding: 16px;
        border-radius: 12px;
    }
    .comp-table th, .comp-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
}

/* Section Title Mobile */
@media (max-width: 768px) {
    .section-title {
        margin-bottom: 30px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .section-title p {
        font-size: 14px;
    }
}

/* Product Detail Page Mobile */
@media (max-width: 768px) {
    .product-detail-sec {
        padding: 35px 0 45px;
    }
    .gallery-container {
        padding: 15px;
        margin-bottom: 25px;
    }
    .main-image-box {
        height: 280px;
        margin-bottom: 15px;
    }
    .thumb-strip {
        gap: 8px;
    }
    .thumb-item {
        width: 52px;
        height: 52px;
        padding: 2px;
    }
    .info-container h2 {
        font-size: 24px;
        line-height: 1.25;
        margin-top: 10px;
    }
    .current-price {
        font-size: 24px;
    }
    .old-price {
        font-size: 16px;
    }
    .product-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .bullet-features {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .tabs-header {
        overflow-x: auto;
        white-space: nowrap;
        gap: 8px;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .tabs-header::-webkit-scrollbar {
        display: none;
    }
    .tab-link {
        padding: 10px 14px;
        font-size: 13px;
        flex-shrink: 0;
    }
}

/* Product Action Buttons (Add to Cart & Buy It Now) */
.product-action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.product-action-buttons .btn {
    flex: 1;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 576px) {
    .product-action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .product-action-buttons .btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 15px;
    }
}

/* Frequently Bought Together (FBT) Mobile */
@media (max-width: 768px) {
    .fbt-card {
        padding: 18px 14px;
    }
    .fbt-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .fbt-images {
        justify-content: center;
        gap: 8px;
        margin-bottom: 15px;
    }
    .fbt-img-item {
        width: 65px;
        height: 65px;
        padding: 5px;
    }
    .fbt-plus {
        font-size: 16px;
    }
    .fbt-row {
        font-size: 13px;
    }
    .fbt-row label {
        font-size: 13px;
    }
}
@media (max-width: 576px) {
    .fbt-summary {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        text-align: center;
    }
    .fbt-summary .btn {
        width: 100%;
        padding: 12px 18px;
    }
}

/* Sticky Bottom Order Bar Mobile */
@media (max-width: 768px) {
    .sticky-order-bar {
        padding: 8px 0;
    }
    .sticky-order-inner {
        gap: 10px;
    }
    .sticky-order-inner img {
        width: 38px !important;
        height: 38px !important;
    }
    .sticky-order-inner strong {
        font-size: 13px !important;
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .sticky-order-inner span {
        font-size: 11px !important;
    }
    .sticky-order-inner .btn {
        padding: 8px 14px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }
}
@media (max-width: 480px) {
    .sticky-order-inner strong {
        max-width: 120px;
        font-size: 12px !important;
    }
    .sticky-order-inner .btn {
        padding: 7px 10px !important;
        font-size: 11px !important;
    }
}

/* Cart Page Mobile Polish */
.cart-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.cart-action-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
@media (max-width: 768px) {
    .cart-summary-box {
        padding: 18px;
    }
}
@media (max-width: 576px) {
    .cart-action-buttons {
        flex-direction: column;
    }
    .cart-action-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Policy Pages Mobile Polish */
@media (max-width: 768px) {
    .policy-hero {
        padding: 35px 0;
    }
    .policy-hero h1 {
        font-size: 24px;
    }
    .policy-hero p {
        font-size: 13px;
    }
    .policy-card {
        padding: 22px 18px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .policy-card h2 {
        font-size: 18px;
        margin-top: 22px;
        padding-bottom: 6px;
    }
    .policy-card h3 {
        font-size: 15px;
    }
    .policy-card p, .policy-card ul, .policy-card ol {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .policy-badge-box {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* Form Controls & Touch Targets */
.form-control {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: #ffffff;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* Lightbox Mobile Polish */
@media (max-width: 768px) {
    .image-lightbox {
        padding: 12px;
    }
    .image-lightbox-close {
        top: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* Toast Notifications Mobile Polish */
@media (max-width: 576px) {
    #toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
    }
    .toast-notification {
        min-width: unset;
        width: 100%;
        padding: 12px 15px;
    }
}

