/* --- CSS Reset & Variables --- */
:root {
--primary-black: #000000;
--primary-blue: #0056b3;
--primary-dark-blue: #003d80;
--bg-light: #f8f9fa;
--text-dark: #333333;
--text-gray: #666666;
--border-color: #e0e0e0;
--white: #ffffff;
--sale-red: #d32f2f;
--spacing-unit: 1rem;
--shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
--shadow-md: 0 4px 12px rgba(0,0,0,0.08);
--shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: var(--text-dark);
background-color: var(--white);
line-height: 1.6;
overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; transition: all 0.2s; }
/* --- Header & Navigation --- */
/* --- PRINTSTOP-STYLE HEADER --- */
.printstop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 72px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 9999;
}
.printstop-header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.printstop-header .logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Screen reader only */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border: 0;
}

/* Center Pill Search Bar */
.search-container {
    flex-grow: 1;
    max-width: 650px;
    position: relative;
    margin: 0 40px;
}
.search-input {
    width: 100%;
    padding: 11px 20px 11px 44px;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    font-size: 0.95rem;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
    border-color: #111;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #9ca3af;
    pointer-events: none;
}

/* Right-Side Action Icons (Stacked) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}
.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}
.action-btn svg {
    width: 24px;
    height: 24px;
    margin-bottom: 3px;
    stroke: #374151;
    transition: stroke 0.2s;
}
.action-btn:hover {
    color: #dc2626;
}
.action-btn:hover svg {
    stroke: #dc2626;
}

/* Cart Badge */
.icon-wrapper {
    position: relative;
}
.cart-count {
    position: absolute;
    top: -5px;
    right: -9px;
    background-color: #dc2626;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 20px;
    border: 2px solid #fff;
    line-height: 1.2;
}
/* =========================================
MEGA MENU NAVIGATION
========================================= */
.mega-nav {
background: var(--white);
border-bottom: 1px solid var(--border-color);
position: relative;
z-index: 900;
}
.mega-nav-list {
max-width: 1400px;
margin: 0 auto;
display: flex;
gap: 0;
padding: 0 var(--spacing-unit);
list-style: none;
}
.mega-nav-item {
position: static;
}
.mega-nav-link {
display: block;
padding: 0.55rem 1.5rem;
font-size: 0.85rem;
font-weight: 600;
color: var(--text-dark);
cursor: pointer;
transition: color 0.2s, background 0.2s;
white-space: nowrap;
position: relative;
}
.mega-nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 1.5rem;
right: 1.5rem;
height: 2px;
background: var(--primary-blue);
transform: scaleX(0);
transition: transform 0.25s ease;
}
.mega-nav-item:hover > .mega-nav-link {
color: var(--primary-blue);
}
.mega-nav-item:hover > .mega-nav-link::after {
transform: scaleX(1);
}
/* Mega Menu Dropdown Panel */
.mega-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
width: 100%;
background: var(--white);
border-top: 1px solid var(--border-color);
box-shadow: 0 8px 30px rgba(0,0,0,0.10);
padding: 2.5rem 0;
opacity: 0;
visibility: hidden;
transform: translateY(-5px);
transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
z-index: 999;
}
.mega-nav-item:hover > .mega-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.mega-menu-inner {
max-width: 1400px;
margin: 0 auto;
padding: 0 var(--spacing-unit);
display: grid;
grid-template-columns: repeat(5, 1fr) 1.5fr;
gap: 2rem;
}
/* Mega menu columns */
.mega-col h4 {
font-size: 0.85rem;
font-weight: 700;
color: var(--primary-black);
margin-bottom: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.mega-col ul {
list-style: none;
padding: 0;
}
.mega-col ul li {
margin-bottom: 0.5rem;
}
.mega-col ul li a {
font-size: 0.9rem;
color: var(--text-gray);
cursor: pointer;
transition: color 0.2s;
display: inline-flex;
align-items: center;
gap: 0.4rem;
}
.mega-col ul li a:hover {
color: var(--primary-blue);
}
/* NEW badge pill */
.badge-new {
display: inline-block;
background: #dbeafe;
color: #1d4ed8;
font-size: 0.65rem;
font-weight: 700;
padding: 2px 7px;
border-radius: 10px;
text-transform: uppercase;
letter-spacing: 0.3px;
vertical-align: middle;
line-height: 1.4;
}
/* Featured promo column */
.mega-featured {
background: #f8f9fa;
border-radius: 10px;
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 1rem;
justify-content: center;
}
.mega-featured img {
width: 100%;
border-radius: 8px;
object-fit: cover;
max-height: 180px;
}
.mega-featured .see-all-link {
font-weight: 700;
font-size: 1rem;
color: var(--primary-blue);
cursor: pointer;
transition: color 0.2s;
display: inline-flex;
align-items: center;
gap: 0.3rem;
}
.mega-featured .see-all-link:hover {
color: var(--primary-dark-blue);
}
.mega-featured p {
font-size: 0.85rem;
color: var(--text-gray);
line-height: 1.4;
}
/* Mobile menu toggle */
.mobile-menu-btn {
display: none;
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
padding: 0.5rem;
color: var(--text-dark);
}
/* Mobile Responsive */
@media (max-width: 900px) {
.mobile-menu-btn { display: block; padding: 0.5rem var(--spacing-unit); }
.mega-nav-list {
display: none;
flex-direction: column;
gap: 0;
}
.mega-nav.open .mega-nav-list { display: flex; }
.mega-menu {
position: static;
box-shadow: none;
border-top: none;
opacity: 1;
visibility: visible;
transform: none;
padding: 1rem 0;
}
.mega-menu-inner {
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.mega-featured { display: none; }
/* Printstop header responsive */
.printstop-header { padding: 0 16px; height: 60px; flex-wrap: wrap; }
.search-container { margin: 0 12px; order: 3; flex-basis: 100%; max-width: 100%; margin-top: 8px; }
.header-actions { gap: 16px; }
.action-btn span { display: none; }
.action-btn svg { margin-bottom: 0; }
}
/* --- Hero Carousel --- */
.carousel-container {
max-width: 1400px;
margin: 2rem auto;
padding: 0 var(--spacing-unit);
position: relative;
border-radius: 12px;
overflow: hidden;
}
.carousel-wrapper {
display: flex;
transition: transform 0.6s ease-in-out;
will-change: transform;
}
.carousel-slide {
min-width: 100%;
position: relative;
height: 500px;
flex-shrink: 0;
}
.carousel-slide .carousel-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.carousel-content {
position: absolute;
top: 50%;
left: 40px;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
padding: 2.5rem;
border-radius: 12px;
max-width: 380px;
box-shadow: var(--shadow-md);
border: 1px solid rgba(255,255,255,0.5);
}
.carousel-content.right {
left: auto;
right: 40px;
text-align: right;
}
.hero-title {
font-size: 2rem;
font-weight: 800;
color: var(--primary-black);
margin-bottom: 0.5rem;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.1rem;
color: var(--text-gray);
margin-bottom: 1.5rem;
font-weight: 500;
}
.btn-elevated {
background-color: var(--primary-black);
color: var(--white);
padding: 0.8rem 2rem;
border-radius: 6px;
font-weight: 600;
font-size: 1rem;
display: inline-block;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: all 0.2s;
}
.btn-elevated:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
background-color: #222;
}
.btn-primary-blue {
background-color: var(--primary-blue);
color: var(--white);
padding: 0.8rem 2rem;
border-radius: 6px;
font-weight: 600;
font-size: 1rem;
display: inline-block;
box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
transition: all 0.2s;
}
.btn-primary-blue:hover {
background-color: var(--primary-dark-blue);
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(0, 86, 179, 0.4);
}
/* Carousel Navigation */
.carousel-nav {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 10;
}
.carousel-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255,255,255,0.5);
border: 2px solid rgba(255,255,255,0.8);
cursor: pointer;
transition: all 0.3s;
padding: 0;
}
.carousel-dot.active {
background: var(--primary-blue);
border-color: var(--primary-blue);
transform: scale(1.2);
}
/* Carousel Arrow Buttons */
.carousel-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 44px;
border-radius: 50%;
background: rgba(255,255,255,0.85);
border: none;
cursor: pointer;
font-size: 1.3rem;
color: var(--text-dark);
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.carousel-arrow:hover {
background: var(--white);
box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }
/* --- Horizontal Scroll Sections --- */
.section-container {
max-width: 1400px;
margin: 4rem auto;
padding: 0 var(--spacing-unit);
}
.section-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 1.5rem;
}
.section-title {
font-size: 1.75rem;
font-weight: 800;
color: var(--primary-black);
letter-spacing: -0.5px;
}
.view-all-link {
font-weight: 600;
color: var(--primary-blue);
font-size: 0.95rem;
}
.scroll-wrapper {
display: flex;
gap: 1.5rem;
overflow-x: auto;
padding-bottom: 1.5rem;
scroll-behavior: smooth;
-ms-overflow-style: none;
scrollbar-width: none;
}
.scroll-wrapper::-webkit-scrollbar { display: none; }
/* Category Icons */
.category-item {
min-width: 130px;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.8rem;
cursor: pointer;
}
.cat-icon-circle {
width: 110px;
height: 110px;
border-radius: 50%;
background: var(--white);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
border: 1px solid #eee;
box-shadow: var(--shadow-sm);
transition: all 0.3s;
}
.category-item:hover .cat-icon-circle {
box-shadow: var(--shadow-md);
transform: translateY(-5px);
border-color: var(--primary-blue);
}
.cat-icon-circle img { width: 100%; height: 100%; object-fit: cover; }
.cat-name {
font-size: 0.9rem;
font-weight: 600;
text-align: center;
color: var(--text-dark);
line-height: 1.3;
}
/* Product Cards (Horizontal) */
.product-card-h {
min-width: 240px;
background: var(--white);
border-radius: 12px;
overflow: hidden;
cursor: pointer;
transition: all 0.3s;
border: 1px solid transparent;
}
.product-card-h:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-5px);
border-color: #eee;
}
.prod-img-box {
width: 100%;
padding-top: 100%;
position: relative;
background: #f9f9f9;
}
.prod-img-box img {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
object-fit: contain;
padding: 1.5rem;
}
.price-badge {
position: absolute;
top: 12px; left: 12px;
background: var(--primary-blue);
color: white;
font-size: 0.75rem;
padding: 5px 10px;
border-radius: 20px;
font-weight: 700;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.prod-info { padding: 1rem; }
.prod-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text-dark); }
.prod-price { font-size: 0.85rem; color: var(--text-gray); }
/* --- Mid Banners --- */
.mid-banners {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
max-width: 1400px;
margin: 2rem auto;
padding: 0 var(--spacing-unit);
}
.mid-banner {
position: relative;
height: 400px;
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-md);
}
.mid-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.mid-banner:hover img { transform: scale(1.05); }
.mid-content {
position: absolute;
top: 50%;
left: 40px;
transform: translateY(-50%);
background: rgba(255,255,255,0.9);
backdrop-filter: blur(5px);
padding: 2.5rem;
border-radius: 12px;
max-width: 350px;
box-shadow: var(--shadow-md);
}
.mid-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--primary-black); }
.mid-desc { font-size: 1rem; color: var(--text-gray); margin-bottom: 1.5rem; }
.btn-group { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn-outline-elevated {
border: 1px solid var(--primary-black);
background: transparent;
color: var(--primary-black);
padding: 0.6rem 1.2rem;
border-radius: 6px;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.2s;
}
.btn-outline-elevated:hover {
background: var(--primary-black);
color: var(--white);
}
/* --- Newsletter --- */
.newsletter {
background: #f4f4f4;
padding: 5rem var(--spacing-unit);
text-align: center;
margin-top: 4rem;
border-radius: 12px;
max-width: 1400px;
margin-left: auto;
margin-right: auto;
}
.newsletter h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--primary-black); }
.newsletter p { margin-bottom: 2rem; color: var(--text-gray); font-size: 1.1rem; }
.newsletter-form {
max-width: 500px;
margin: 0 auto;
display: flex;
gap: 0.5rem;
}
.newsletter-input {
flex-grow: 1;
padding: 1rem;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 1rem;
}
.newsletter-input:focus { outline: 2px solid var(--primary-black); border-color: transparent; }
/* --- Footer --- */
footer {
background: #1a1a2e;
color: #ccc;
padding: 4rem var(--spacing-unit) 2rem;
font-size: 0.9rem;
margin-top: 4rem;
}
.footer-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}
.footer-col h4 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
/* =========================================
   PRODUCT PAGE STYLES
   ========================================= */
.product-page-view {
    display: none;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem var(--spacing-unit);
    animation: fadeIn 0.5s;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Breadcrumb */
.pdp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.pdp-breadcrumb a { color: var(--primary-blue); font-weight: 500; }
.pdp-breadcrumb a:hover { text-decoration: underline; }
.pdp-breadcrumb span.sep { color: #ccc; }

/* --- Section 1: Product Overview --- */
.pdp-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

/* Gallery */
.pdp-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdp-main-img-wrapper {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.04);
}

.pdp-main-img {
    max-width: 100%;
    max-height: 380px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: opacity 0.3s;
}

.pdp-thumbnails {
    display: flex;
    gap: 0.75rem;
}

.pdp-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    background: #f7f7f7;
    padding: 0.3rem;
}

.pdp-thumb:hover { border-color: var(--primary-blue); }
.pdp-thumb.active { border-color: var(--primary-blue); box-shadow: 0 0 0 2px rgba(0,86,179,0.2); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Product Info (Right of overview) */
.pdp-info {
    display: flex;
    flex-direction: column;
}

.pdp-info h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}
.pdp-rating .stars { color: #ffc107; letter-spacing: 2px; font-size: 1.1rem; }
.pdp-rating .review-count { color: var(--text-gray); }
.pdp-rating .review-link { color: var(--primary-blue); text-decoration: underline; font-weight: 600; cursor: pointer; }

.pdp-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.pdp-features li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.pdp-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pdp-starting-price {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}
.pdp-starting-price strong {
    font-size: 1.6rem;
    color: var(--primary-black);
    font-weight: 800;
}

.pdp-price-note {
    font-size: 0.82rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.pdp-cta-top {
    background: var(--primary-blue);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    width: fit-content;
}
.pdp-cta-top:hover {
    background: var(--primary-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,86,179,0.3);
}

/* --- Section 2: Two Column Customization --- */
.pdp-customizer {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Left: Customization Form */
.pdp-options {
    background: var(--white);
}

.pdp-options-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-black);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue);
}

.option-group {
    margin-bottom: 2rem;
}

.option-group-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: block;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
}

.option-card {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
    position: relative;
}

.option-card:hover {
    border-color: #999;
    box-shadow: var(--shadow-sm);
}

.option-card.active {
    border-color: var(--primary-blue);
    background: #f0f7ff;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.12);
}

.option-card.active::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.option-card-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.option-card-price {
    font-size: 0.82rem;
    color: var(--text-gray);
}

.option-card-desc {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin-top: 0.2rem;
}

/* Right: Sticky Order Summary */
.pdp-summary {
    position: sticky;
    top: 120px;
    background: var(--white);
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
}

.summary-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.summary-row.muted { color: var(--text-gray); }

.summary-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0.75rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-black);
    padding: 0.75rem 0 0;
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-summary-primary {
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-summary-primary:hover {
    background: var(--primary-dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,86,179,0.25);
}

.btn-summary-outline {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    padding: 0.9rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-summary-outline:hover {
    background: var(--primary-black);
    color: white;
}

.summary-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* --- Section 3: Bottom Info & FAQs --- */
.pdp-bottom-info {
    border-top: 1px solid #eee;
    padding-top: 2.5rem;
}

.pdp-bottom-info h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.pdp-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.pdp-description p { margin-bottom: 1rem; }

/* FAQ Accordion */
.pdp-faq { margin-bottom: 2.5rem; }
.accordion { border-top: 1px solid #eee; margin-top: 1rem; }
.acc-item { border-bottom: 1px solid #eee; }
.acc-header {
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.acc-header:hover { color: var(--primary-blue); }
.acc-content { display: none; padding-bottom: 1.2rem; font-size: 0.95rem; color: var(--text-gray); line-height: 1.6; }
.acc-item.open .acc-content { display: block; }

/* Customer Reviews */
.pdp-reviews { margin-bottom: 2.5rem; }

.review-summary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.review-big-score {
    text-align: center;
}
.review-big-score .score { font-size: 2.5rem; font-weight: 800; color: var(--primary-black); line-height: 1; }
.review-big-score .stars { display: block; font-size: 1.1rem; margin-top: 0.25rem; }
.review-big-score .count { font-size: 0.82rem; color: var(--text-gray); margin-top: 0.2rem; }

.review-bars { flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.review-bar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-gray);
}
.review-bar-row span:first-child { width: 40px; text-align: right; }
.review-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}
.review-bar-fill {
    height: 100%;
    background: #ffc107;
    border-radius: 4px;
}

.review-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.review-card-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.review-card-date { font-size: 0.82rem; color: var(--text-gray); }
.review-card-stars { color: #ffc107; margin-bottom: 0.4rem; font-size: 0.9rem; }
.review-card-text { font-size: 0.92rem; color: var(--text-gray); line-height: 1.6; }

/* PDP Responsive */
@media (max-width: 900px) {
    .pdp-overview { grid-template-columns: 1fr; gap: 1.5rem; }
    .pdp-customizer { grid-template-columns: 1fr; }
    .pdp-summary { position: static; }
    .option-cards { grid-template-columns: repeat(2, 1fr); }
}
/* Responsive */
@media (max-width: 900px) {
.carousel-slide { height: 350px; }
.carousel-content {
top: auto;
bottom: 20px;
left: 16px;
right: 16px;
transform: none;
padding: 1.5rem;
max-width: none;
}
.carousel-content.right {
left: 16px;
right: 16px;
text-align: left;
}
.mid-banners { grid-template-columns: 1fr; }
.newsletter-form { flex-direction: column; }
.header-top { flex-wrap: wrap; }
.search-container { order: 3; width: 100%; max-width: 100%; }
}

/* =========================================
   UPLOAD DESIGN MODAL
   ========================================= */
.upload-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(3px);
}
.upload-modal-overlay.active { display: flex; }

.upload-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 1020px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Left Column: Guidelines */
.modal-left {
    background: #f9f9f9;
    padding: 2rem 1.75rem;
    border-radius: 16px 0 0 16px;
    overflow-y: auto;
}
.modal-left h2 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #1a1a2e;
}
.modal-left .modal-subtitle {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}
.modal-template-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.modal-template-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #333;
}
.modal-template-card p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.modal-template-card a {
    color: #0056b3;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: underline;
}
.modal-section-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.4rem;
    margin-top: 0.25rem;
}
.modal-section-text {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.modal-section-text a {
    color: #0056b3;
    text-decoration: underline;
    font-weight: 500;
}
.modal-section-text ol {
    padding-left: 1.2rem;
    margin: 0.4rem 0 0;
    list-style: decimal;
}
.modal-section-text ol li {
    margin-bottom: 0.3rem;
    list-style: decimal;
}

/* Right Column: Upload Area */
.modal-right {
    padding: 2rem 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}
.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.2s;
}
.modal-close-btn:hover { background: #e5e7eb; color: #000; }

.modal-right h2 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    color: #1a1a2e;
    padding-right: 2.5rem;
}
.modal-right .modal-subtitle {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 1.25rem;
}
.modal-field-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
    display: block;
}
.modal-field-label .required { color: #d32f2f; }
.modal-project-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s;
    font-family: inherit;
}
.modal-project-input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}
.upload-zone-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}
.upload-zone {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 1.75rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1.25rem;
    background: #fdfdfd;
}
.upload-zone:hover { border-color: #0056b3; background: #f0f7ff; }
.upload-zone.has-file { border-color: #27ae60; background: #f0fdf4; }
.upload-zone-icon {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    display: block;
    color: #aaa;
}
.upload-zone.has-file .upload-zone-icon { color: #27ae60; }
.upload-zone-text {
    font-size: 0.88rem;
    color: #555;
}
.upload-zone-text .browse-link {
    color: #0056b3;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}
.upload-zone-formats {
    font-size: 0.72rem;
    color: #aaa;
    margin-top: 0.4rem;
    display: block;
}
.upload-zone .file-name-display {
    font-size: 0.9rem;
    font-weight: 600;
    color: #27ae60;
    word-break: break-all;
}

.modal-continue-btn {
    width: 100%;
    padding: 0.95rem;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: auto;
    transition: background 0.2s, transform 0.15s;
}
.modal-continue-btn:hover { background: #333; transform: translateY(-1px); }

/* Modal Responsive */
@media (max-width: 768px) {
    .upload-modal {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    .modal-left {
        border-radius: 16px 16px 0 0;
        max-height: 35vh;
        overflow-y: auto;
    }
    .modal-right { border-radius: 0 0 16px 16px; }
}

/* =========================================
   GLOBAL ARTWORK UPLOAD MODAL (#upload-design-modal)
   ========================================= */
.udm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.udm-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.udm-box {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: translateY(16px) scale(0.97);
    transition: transform .3s ease;
}
.udm-overlay.active .udm-box {
    transform: translateY(0) scale(1);
}
.udm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
}
.udm-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}
.udm-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: background .2s;
}
.udm-close:hover { background: #e5e7eb; color: #000; }
.udm-body {
    padding: 1.5rem;
}
.udm-drop-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    background: #fdfdfd;
    transition: border-color .2s, background .2s;
}
.udm-drop-zone:hover,
.udm-drop-zone.drag-over {
    border-color: #0056b3;
    background: #f0f7ff;
}
.udm-drop-zone.has-file {
    border-color: #27ae60;
    background: #f0fdf4;
}
.udm-upload-icon { margin-bottom: 0.5rem; }
.udm-drop-zone.has-file .udm-upload-icon stroke { stroke: #27ae60; }
.udm-drop-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.25rem;
}
.udm-drop-formats {
    font-size: 0.73rem;
    color: #aaa;
}
.udm-file-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #27ae60;
    margin: 0.6rem 0 0;
    min-height: 1.2em;
    word-break: break-all;
}
.udm-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin: 1.25rem 0 0.4rem;
}
.udm-textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color .2s;
    box-sizing: border-box;
}
.udm-textarea:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}
.udm-footer {
    padding: 0 1.5rem 1.5rem;
}
.udm-confirm-btn {
    width: 100%;
    padding: 0.9rem;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.udm-confirm-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .udm-box { max-width: 100%; border-radius: 14px 14px 0 0; }
    .udm-overlay { align-items: flex-end; padding: 0; }
}

/* =========================================
   VISITING CARDS DEDICATED PAGE
   ========================================= */
.vc-top-layout {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}
.vc-gallery {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.vc-thumbs-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.vc-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    background: #f7f7f7;
    padding: 3px;
}
.vc-thumb:hover { border-color: var(--primary-blue); }
.vc-thumb.active { border-color: var(--primary-blue); box-shadow: 0 0 0 2px rgba(0,86,179,0.2); }
.vc-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.vc-main-img-wrapper {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}
.vc-main-img {
    max-width: 100%;
    max-height: 440px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: opacity 0.3s;
}
.vc-customizer-section h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--primary-blue);
}
.vc-order-summary {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
@media (max-width: 900px) {
    .vc-top-layout { grid-template-columns: 1fr; }
    .vc-gallery { grid-template-columns: 1fr; }
    .vc-thumbs-vertical { flex-direction: row; order: 2; }
    .vc-main-img-wrapper { order: 1; min-height: 300px; }
    .vc-order-summary { position: static; }
}

/* =========================================
   POSTERS PAGE + CROSS-SELLING
   ========================================= */
.poster-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}
.poster-gallery {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}
.poster-gallery img {
    max-width: 100%;
    max-height: 420px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.poster-info { display: flex; flex-direction: column; }
.poster-info h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}
.poster-info .poster-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.poster-price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}
.poster-price-tag .old-price {
    font-size: 1rem;
    color: var(--text-gray);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0.5rem;
}
.poster-price-tag .discount-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    vertical-align: middle;
}
.poster-field-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin: 1.25rem 0 0.6rem;
}
.size-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.size-pill {
    padding: 0.55rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s;
    background: #fff;
}
.size-pill:hover { border-color: #999; }
.size-pill.active {
    border-color: var(--primary-blue);
    background: #f0f7ff;
    color: var(--primary-blue);
}
.poster-qty-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.poster-qty-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.poster-qty-btn:hover { border-color: var(--primary-blue); color: var(--primary-blue); }
.poster-qty-val {
    font-size: 1.05rem;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
}
.poster-value-combos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-top: 0.5rem;
}
.poster-combo-card {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 0.7rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    position: relative;
}
.poster-combo-card:hover { border-color: #999; }
.poster-combo-card.active {
    border-color: var(--primary-blue);
    background: #f0f7ff;
}
.poster-combo-card.active::after {
    content: '✓';
    position: absolute;
    top: 4px; right: 6px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.poster-combo-name { font-weight: 700; font-size: 0.85rem; }
.poster-combo-price { font-size: 0.78rem; color: var(--text-gray); }
.poster-add-cart {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s;
}
.poster-add-cart:hover {
    background: var(--primary-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,86,179,0.3);
}
/* Cross-sell sections */
.cross-section {
    margin-bottom: 3rem;
}
.cross-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cross-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.cross-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
/* Design Your Own cards */
.design-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.design-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.design-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.design-card .design-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}
/* Trending & You May Also Like cards */
.cross-product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.cross-product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cross-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.cross-product-card .cross-card-body {
    padding: 1rem;
}
.cross-product-card .cross-card-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}
.cross-product-card .cross-card-price {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 700;
}
/* Wall Review cards */
.wall-review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 1rem;
    text-align: center;
}
.wall-review-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 0.75rem;
}
.wall-review-card .wall-stars { color: #ffc107; font-size: 0.9rem; margin-bottom: 0.4rem; }
.wall-review-card .wall-text { font-size: 0.82rem; color: var(--text-gray); padding: 0 0.75rem; line-height: 1.5; margin-bottom: 0.5rem; }
.wall-review-card .wall-name { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); }
@media (max-width: 900px) {
    .poster-overview { grid-template-columns: 1fr; }
    .cross-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .cross-grid-5 { grid-template-columns: repeat(2, 1fr); }
    .poster-value-combos { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   APPAREL PRODUCT PAGE
   ========================================= */

/* Top Two-Column Layout */
.apparel-top-layout {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Gallery */
.apparel-gallery { display: flex; flex-direction: column; gap: 1rem; }

.apparel-main-img-wrapper {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    overflow: hidden;
}
.apparel-main-img {
    max-width: 100%;
    max-height: 470px;
    border-radius: 8px;
    transition: opacity 0.3s;
    object-fit: contain;
}

.apparel-thumbs {
    display: flex;
    gap: 0.75rem;
}
.apparel-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    background: #f7f7f7;
    padding: 4px;
    flex-shrink: 0;
}
.apparel-thumb:hover { border-color: var(--primary-blue); }
.apparel-thumb.active { border-color: var(--primary-blue); box-shadow: 0 0 0 2px rgba(0,86,179,0.2); }
.apparel-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }

/* Sticky Customization Box */
.apparel-customize-box {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.apparel-customize-box h1 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.apparel-starting-price {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}
.apparel-starting-price strong {
    font-size: 1.5rem;
    color: var(--primary-black);
    font-weight: 800;
}
.apparel-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.apparel-features li {
    padding: 0.35rem 0;
    font-size: 0.92rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.apparel-features li::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Color Swatches */
.apparel-option-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    display: block;
}
.color-swatches {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.color-swatch {
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.color-swatch:hover {
    transform: scale(1.12);
}
.color-swatch.active {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0,86,179,0.25), inset 0 0 0 1px rgba(0,0,0,0.08);
}

/* Size Pills */
.apparel-size-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.apparel-size-pill {
    padding: 0.5rem 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s;
    background: #fff;
}
.apparel-size-pill:hover { border-color: #999; }
.apparel-size-pill.active {
    border-color: var(--primary-blue);
    background: #f0f7ff;
    color: var(--primary-blue);
}
.size-chart-link {
    font-size: 0.85rem;
    color: var(--primary-blue);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Quantity Selector */
.apparel-qty-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.apparel-qty-btn {
    width: 38px; height: 38px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    color: var(--text-dark);
}
.apparel-qty-btn:hover { border-color: var(--primary-blue); color: var(--primary-blue); }
.apparel-qty-val {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 36px;
    text-align: center;
}

/* CTA Button */
.apparel-cta-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.4rem;
}
.apparel-cta-btn:hover {
    background: var(--primary-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,86,179,0.3);
}
.apparel-cta-subtext {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Bottom Section: Overview 50/50 */
.apparel-overview-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid #eee;
}
.apparel-overview-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1rem;
}
.apparel-overview-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.apparel-overview-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}
.apparel-overview-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.apparel-overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

/* Explore More Apparel Grid */
.apparel-explore-section { margin-bottom: 3rem; }
.apparel-explore-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}
.apparel-explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.apparel-explore-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.apparel-explore-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.apparel-explore-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.apparel-explore-card .explore-card-body {
    padding: 1rem;
}
.apparel-explore-card .explore-card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.apparel-explore-card .explore-card-price {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 700;
}

/* Apparel Responsive */
@media (max-width: 900px) {
    .apparel-top-layout { grid-template-columns: 1fr; }
    .apparel-customize-box { position: static; }
    .apparel-overview-split { grid-template-columns: 1fr; }
    .apparel-explore-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   LOGIN PAGE — Full-screen Overlay
   ========================================= */
#login-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

/* Close (X) button */
.login-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1.5px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.15rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    z-index: 2;
    font-family: inherit;
}

.login-close-btn:hover {
    background: var(--bg-light);
    border-color: #bbb;
}

/* Login card wrapper */
.login-card {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    position: relative;
}

/* Logo at top center */
.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-logo img {
    height: 160px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* Subtitle */
.login-subtitle {
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Social buttons */
.login-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.login-social-btn:hover {
    background: #f7f7f7;
    border-color: #bbb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.login-social-btn + .login-social-btn {
    margin-top: 0.65rem;
}

.login-social-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Email form label */
.login-email-label {
    display: block;
    text-align: left;
    font-weight: 700;
    font-size: 0.93rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

/* Input groups */
.login-input-group {
    margin-bottom: 0.85rem;
}

.login-input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.93rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-input-group input:focus {
    outline: none;
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.login-input-group input::placeholder {
    color: #b0b0b0;
}

/* Password wrapper with eye toggle */
.login-password-wrapper {
    position: relative;
}

.login-password-wrapper input {
    padding-right: 3rem;
}

.login-eye-btn {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.login-eye-btn:hover {
    color: var(--text-dark);
}

.login-eye-btn svg {
    width: 20px;
    height: 20px;
}

/* Forgot password link */
.login-forgot {
    display: inline-block;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: underline;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.login-forgot:hover {
    color: var(--primary-blue);
}

/* Fine print */
.login-fine-print {
    text-align: left;
    font-size: 0.72rem;
    color: var(--text-gray);
    line-height: 1.45;
    margin-bottom: 1.5rem;
}

.login-fine-print a {
    color: var(--text-gray);
    text-decoration: underline;
}

.login-fine-print a:hover {
    color: var(--primary-blue);
}

/* Sign In button */
.login-submit-btn {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--primary-black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    font-family: inherit;
}

.login-submit-btn:hover:not(:disabled) {
    background: #222;
}

.login-submit-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Bottom divider with "or" */
.login-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.login-divider span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: lowercase;
}

/* Create account button */
.login-create-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.login-create-btn:hover {
    background: #f7f7f7;
    border-color: #bbb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Login responsive */
@media (max-width: 480px) {
    .login-card {
        padding: 1.5rem 1.25rem;
    }
    .login-close-btn {
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* =========================================
   DANGLERS PRODUCT PAGE
   ========================================= */
.dng-top-layout {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}
.dng-left-col { min-width: 0; }
.dng-main-img-wrapper {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    margin-bottom: 2.5rem;
}
.dng-main-img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.dng-customizer-section h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--primary-blue);
}

/* Visual Option Cards (with thumbnail images) */
.visual-option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
}
.visual-option-card {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.visual-option-card:hover {
    border-color: #999;
    box-shadow: var(--shadow-sm);
}
.visual-option-card.active {
    border-color: var(--primary-blue);
    background: #f0f7ff;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.12);
}
.visual-option-card.active::after {
    content: '\2713';
    position: absolute;
    top: 6px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.visual-option-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.visual-option-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual-option-thumb .shape-icon {
    font-size: 1.6rem;
    color: var(--text-gray);
    line-height: 1;
}
.visual-option-card .option-card-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Dangler Order Summary */
.dng-order-summary {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.btn-dng-upload {
    display: block;
    width: 100%;
    background: var(--primary-black);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1.5rem;
}
.btn-dng-upload:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* "You might also like" grid */
.dng-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.dng-related-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    background: var(--white);
}
.dng-related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.dng-related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.dng-related-card-body {
    padding: 1rem;
}
.dng-related-card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.dng-related-card-price {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Danglers description bullets */
.dng-features-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 2;
}

@media (max-width: 900px) {
    .dng-top-layout { grid-template-columns: 1fr; }
    .dng-order-summary { position: static; }
    .dng-related-grid { grid-template-columns: 1fr; }
    .visual-option-cards { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   BANNER PAGES (Flex & Foam) STYLES
   ========================================= */

/* Top 50/50 Grid */
.banner-top-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Gallery */
.banner-gallery { display: flex; flex-direction: column; gap: 1rem; }
.banner-main-img-wrapper {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    overflow: hidden;
}
.banner-main-img {
    max-width: 100%;
    max-height: 430px;
    border-radius: 8px;
    transition: opacity 0.3s;
    object-fit: contain;
}
.banner-thumbs {
    display: flex;
    gap: 0.75rem;
}
.banner-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    background: #f7f7f7;
    padding: 4px;
    flex-shrink: 0;
}
.banner-thumb:hover { border-color: var(--primary-blue); }
.banner-thumb.active { border-color: var(--primary-blue); box-shadow: 0 0 0 2px rgba(0,86,179,0.2); }
.banner-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }

/* Sticky Config Box */
.banner-customize-box {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.banner-customize-box h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 0.35rem;
    line-height: 1.25;
}
.banner-rating {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.banner-rating-count {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 400;
}
.banner-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
}
.banner-features li {
    padding: 0.3rem 0;
    font-size: 0.92rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.banner-features li::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Option Label */
.banner-option-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
    margin-top: 1rem;
}

/* Clickable Pills */
.banner-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.banner-pill {
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    background: #fff;
    white-space: nowrap;
}
.banner-pill:hover { border-color: #999; }
.banner-pill.active {
    border-color: var(--primary-blue);
    background: #f0f7ff;
    color: var(--primary-blue);
}

/* Total Row */
.banner-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-black);
    border-top: 2px solid #eee;
    margin-top: 1.25rem;
    padding-top: 1rem;
    margin-bottom: 1rem;
}

/* CTA */
.banner-cta-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-black);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}
.banner-cta-btn:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.banner-cta-sub {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-gray);
}
.banner-cta-sub a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

/* 50/50 Overview Split */
.banner-overview-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid #eee;
}
.banner-overview-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1rem;
}
.banner-overview-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.banner-overview-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}
.banner-overview-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.banner-overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

/* Related Products 4-col Grid */
.banner-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.banner-related-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    background: var(--white);
}
.banner-related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.banner-related-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.banner-related-card-body { padding: 0.85rem; }
.banner-related-card-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}
.banner-related-card-price {
    font-size: 0.82rem;
    color: var(--text-gray);
}

/* Banner Pages Responsive */
@media (max-width: 900px) {
    .banner-top-layout { grid-template-columns: 1fr; }
    .banner-customize-box { position: static; }
    .banner-overview-split { grid-template-columns: 1fr; }
    .banner-related-grid { grid-template-columns: 1fr 1fr; }
}

/* --- MEGA-NAV TIGHTENING --- */
.mega-nav {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 72px;
    z-index: 9998;
    background: #fff;
}

/* =========================================
   SLIDE-OUT SHOPPING CART
   ========================================= */

/* Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 400px;
    max-width: 100%;
    background: #ffffff;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.cart-panel.open {
    transform: translateX(0);
}

/* Header */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}
.cart-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
}
.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #555;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.cart-close-btn:hover {
    background: #f3f4f6;
    color: #111;
}

/* Body (scrollable items area) */
.cart-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

/* Empty state */
.cart-empty-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    gap: 0.5rem;
}
.cart-empty-msg p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #555;
    margin-top: 0.5rem;
}
.cart-empty-msg span {
    font-size: 0.85rem;
    color: #999;
}

/* Individual cart item */
.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item-img {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f5f5f5;
}
.cart-item-details {
    flex: 1;
    min-width: 0;
}
.cart-item-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-options {
    font-size: 0.78rem;
    color: #888;
    line-height: 1.5;
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.45rem;
}
.cart-item-qty button {
    width: 26px;
    height: 26px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #f9fafb;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}
.cart-item-qty button:hover {
    background: #e5e7eb;
}
.cart-item-qty span {
    font-size: 0.88rem;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}
.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    flex-shrink: 0;
}
.cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    padding: 2px 0;
    transition: color 0.2s;
}
.cart-item-remove:hover {
    color: #991b1b;
    text-decoration: underline;
}

/* Footer (sticky bottom) */
.cart-footer {
    flex-shrink: 0;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}
.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.cart-subtotal-row span:first-child {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}
.cart-subtotal-row span:last-child {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
}
.cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: #111;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}
.cart-checkout-btn:hover {
    background: #333;
}

/* Cart panel mobile */
@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
    }
}

/* =========================================================
   FLOATING BUTTONS: WhatsApp & Back to Top
   ========================================================= */
.fab-whatsapp,
.fab-back-to-top {
    position: fixed;
    right: 20px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    transition: transform .2s, box-shadow .2s, opacity .25s;
}
.fab-whatsapp {
    bottom: 20px;
    background: #25D366;
}
.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,.45);
}
.fab-back-to-top {
    bottom: 82px;
    background: #333;
    opacity: 0;
    pointer-events: none;
}
.fab-back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.fab-back-to-top:hover { background: #111; }

/* Breadcrumb back arrow */
.breadcrumb-back {
    font-size: 1.2rem;
    margin-right: 0.3rem;
    text-decoration: none;
}

/* =========================================================
   COMING SOON VIEW
   ========================================================= */
.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 3rem 1.5rem;
}
.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.coming-soon-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}
.coming-soon-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2rem;
}
.coming-soon-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #1a56db;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.coming-soon-btn:hover {
    background: #1444b0;
}

/* =========================================
   VIEW ALL PAGES — Grid Layout
   ========================================= */
.viewall-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem 3rem;
}
.viewall-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.viewall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.viewall-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.viewall-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.viewall-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.viewall-card-body {
    padding: 1rem;
}
.viewall-card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.viewall-card-price {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 700;
}
@media (max-width: 1024px) {
    .viewall-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .viewall-grid { grid-template-columns: repeat(2, 1fr); }
    .viewall-section { padding: 1rem 1rem 2rem; }
}
@media (max-width: 480px) {
    .viewall-grid { grid-template-columns: 1fr; }
}

/* ========== Quantity Slider Group ========== */
.foam-qty-slider-group,
.dng-qty-slider-group,
.wob-qty-slider-group,
.standee-qty-group,
.bags-qty-group,
.flyers-qty-group,
.balloon-qty-group,
.brochure-qty-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.qty-range-slider {
    flex: 1;
    min-width: 140px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
}

.qty-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary, #2563eb);
    cursor: pointer;
}

.qty-number-input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    text-align: center;
}

.qty-note {
    width: 100%;
    font-size: 0.82rem;
    color: #888;
    margin-top: 0.2rem;
}

/* ========== Tier Selector (Standee) ========== */
.tier-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.tier-card {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.tier-card.active {
    border-color: var(--primary, #2563eb);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.tier-card-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.tier-card-price {
    font-size: 0.85rem;
    color: var(--primary, #2563eb);
    font-weight: 600;
}

@media (max-width: 600px) {
    .tier-cards { grid-template-columns: 1fr; }
}
