/* =============================================
   CSS VARIABLES â€” CCB BRAND SYSTEM
   ============================================= */
:root {
    --orange: #F59A57;
    --orange-hover: #DF8C4F;
    --charcoal: #242424;
    --dark-gray: #333333;
    --mid-gray: #767676;
    --blue-gray: #E0EAF0;
    --near-black: #0F0F0F;
    --white: #FFFFFF;
    --off-white: #FAF8F6;
    --font-head: 'Urbanist', 'Arial Black', Arial, sans-serif;
    --font-body: 'Work Sans', Arial, sans-serif;
    --max-w: 1280px;
    --radius-btn: 35px;
    --radius-card: 8px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--mid-gray);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: var(--radius-btn);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--near-black);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-dark:hover {
    background: var(--charcoal);
}

.btn-outline-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--orange);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: var(--radius-btn);
    border: 2px solid var(--orange);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 60%, #2a2218 100%);
    min-height: 640px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* decorative orange shape */
.hero::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 154, 87, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 30%;
    bottom: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 154, 87, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 154, 87, 0.15);
    border: 1px solid rgba(245, 154, 87, 0.3);
    color: var(--orange);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

.hero-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 48px;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    color: var(--orange);
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-trust-item strong {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
    color: var(--orange);
}

.hero-trust-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-image-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-wrap img {
    width: 100%;
    max-width: 560px;
    max-height: 520px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
    animation: float 6s ease-in-out infinite;
}

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

/* Orange badge on hero image */
.hero-badge {
    position: absolute;
    top: 40px;
    right: -10px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 8px 24px rgba(245, 154, 87, 0.35);
    animation: float 6s ease-in-out infinite 1s;
}

.hero-badge span {
    font-size: 22px;
    display: block;
}

/* =============================================
   SECTION SHARED
   ============================================= */
.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--off-white);
}

.section-blue {
    background: var(--blue-gray);
}

.section-dark {
    background: var(--near-black);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 32px;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title.light {
    color: var(--white);
}

.section-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--mid-gray);
    max-width: 560px;
}

.section-desc.light {
    color: rgba(255, 255, 255, 0.6);
}

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

.section-head .section-label {
    display: flex;
    justify-content: center;
}

.section-head .section-desc {
    margin: 0 auto;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
    background: var(--charcoal);
    padding: 0;
    overflow: hidden;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:hover {
    background: rgba(245, 154, 87, 0.06);
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(245, 154, 87, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 2px;
}

.trust-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   CATEGORY GRID
   ============================================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.cat-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;

}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(36, 36, 36, 0.35), transparent);
}

.cat-body {
    padding: 20px;
}

.cat-body h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.cat-body p {
    font-size: 13px;
    color: var(--mid-gray);
    line-height: 1.5;
    margin-bottom: 14px;
}

.cat-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.cat-card:hover .cat-link {
    gap: 10px;
}

.cat-count {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
}

/* =============================================
   WHY CHOOSE US â€” FEATURES SECTION
   ============================================= */
.features-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.features-left {
}

.features-right {
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(245, 154, 87, 0.12);
    transform: translateY(-3px);
}

.feature-card:first-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feat-icon {
    width: 52px;
    height: 52px;
    background: rgba(245, 154, 87, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.feature-card:first-child .feat-icon {
    margin-bottom: 0;
}

.feat-content h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.feat-content p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mid-gray);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 40px;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
}

.stat-item {
    background: var(--white);
    padding: 28px 20px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 13px;
    color: var(--mid-gray);
}

.features-image-stack {
    position: relative;
}

.features-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.features-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.features-img-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--orange);
    color: var(--white);
    border-radius: 12px;
    padding: 20px 24px;
    font-family: var(--font-head);
    box-shadow: 0 12px 32px rgba(245, 154, 87, 0.3);
}

.features-img-badge strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.features-img-badge span {
    font-size: 12px;
    opacity: 0.85;
    font-weight: 600;
}

.features-img-float {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: var(--font-head);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.features-img-float strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--charcoal);
}

.features-img-float span {
    font-size: 12px;
    color: var(--mid-gray);
}

/* =============================================
   BESTSELLERS
   ============================================= */
/* Categories → bestsellers share white bg; avoid doubled .section padding (96+96). */
#categories:has(+ .bestsellers) {
    padding-bottom: 40px;
}

#categories + .bestsellers {
    padding-top: 68px;
    /*border-top: 1px solid rgba(36, 36, 36, 0.08);*/
}

.bestsellers .section-head {
    text-align: left;
    margin-bottom: 0;
}

.bestsellers-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
}

.bestsellers-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bs-tab {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid #eee;
    background: var(--white);
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.2s;
}

.bs-tab.active, .bs-tab:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

/* Product cards: see ccb-product-card.css */

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.stars {
    color: var(--orange);
    font-size: 13px;
}

.rating-count {
    font-size: 12px;
    color: var(--mid-gray);
}

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

.product-moq {
    font-size: 12px;
    color: var(--mid-gray);
}

.product-cta {
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 100px;
    transition: background 0.2s;
}

.product-cta:hover {
    background: var(--orange-hover);
}

/* =============================================
   PRODUCT COLLECTIONS / PORTFOLIO GALLERY
   ============================================= */
.portfolio-section {
    background: var(--off-white);
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 16px;
}

.porto-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.portfolio-masonry--gallery .porto-item--image {
    cursor: default;
}

.portfolio-masonry--gallery .porto-item--image img {
    transition: opacity 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-masonry--gallery .porto-item--image:hover img {
    transform: none;
    opacity: 0.88;
    filter: brightness(0.92);
}

.portfolio-masonry--gallery .porto-overlay {
    display: none !important;
}

/* Packaging Ideas — same grid rules as static index (no fixed row template / slots) */
.portfolio-masonry--gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 16px;
}

.portfolio-masonry--gallery .porto-item--image {
    min-height: 0;
    background: var(--blue-gray);
}

.portfolio-masonry--gallery .porto-item:nth-child(1),
.portfolio-masonry--gallery .porto-item:nth-child(4) {
    grid-row: span 2;
}

.portfolio-masonry--gallery .porto-item:nth-child(6) {
    grid-column: span 2;
}

.porto-item:nth-child(1) {
    grid-row: span 2;
}

.porto-item:nth-child(4) {
    grid-row: span 2;
}

.porto-item:nth-child(6) {
    grid-column: span 2;
}

.porto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.porto-item:hover img {
    transform: scale(1.08);
}

.porto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(36, 36, 36, 0.75), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.porto-item:hover .porto-overlay {
    opacity: 1;
}

.porto-overlay h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
}

.porto-overlay p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
}

.portfolio-masonry--gallery .porto-item--cta {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    min-height: 0;
    background: var(--charcoal, #242424);
    cursor: default;
}

.porto-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 20px 16px;
    text-align: center;
    text-decoration: none;
    color: var(--white, #fff);
    transition: background 0.25s ease;
}

.porto-cta-card:hover,
.porto-cta-card:focus-visible {
    background: var(--orange, #F59A57);
    color: var(--white, #fff);
    outline: none;
}

.porto-cta-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 20px;
    color: var(--orange, #F59A57);
}

.porto-cta-card:hover .porto-cta-card__icon,
.porto-cta-card:focus-visible .porto-cta-card__icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white, #fff);
}

.porto-cta-card strong {
    font-family: var(--font-head, 'Urbanist', sans-serif);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.25;
}

.porto-cta-card > span:last-child {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

.porto-cta-card:hover > span:last-child,
.porto-cta-card:focus-visible > span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   COLLECTION OF THE WEEK
   ============================================= */
.collection-week {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.collection-week::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    /*background: rgba(245, 154, 87, 0.04);*/
    /*clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);*/
    pointer-events: none;
}

.cw-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cw-right {
    position: relative;
    z-index: 2;
}

.cw-left {
}

.cw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 154, 87, 0.15);
    border: 1px solid rgba(245, 154, 87, 0.3);
    color: var(--orange);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.cw-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 32px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.cw-title span {
    color: var(--orange);
}

.cw-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.cw-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.cw-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cw-features li::before {
    content: none;
    display: none;
}

.cw-features__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--orange, #f59a57);
    border: 2px solid var(--charcoal, #242424);
    color: var(--near-black, #0f0f0f);
    font-size: 11px;
}

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

.cw-product {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.cw-product:hover {
    border-color: var(--orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

a.cw-product.cw-product--link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

a.cw-product.cw-product--link:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* Featured This Week — product thumbs 1:1 (same treatment as product cards) */
.cw-product .cw-product-img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    line-height: 0;
}

.cw-product .cw-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.cw-product:hover .cw-product-img img {
    transform: none;
}

.cw-product-body {
    padding: 14px;
}

.cw-product-body h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 4px;
}

.cw-product-body p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.cw-product-body .cw-tag {
    margin-top: 10px;
    display: inline-block;
    background: rgba(245, 154, 87, 0.15);
    color: var(--orange);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}

/* =============================================
   HOW TO CHOOSE THE RIGHT BOX STYLE
   ============================================= */
.choose-section {
}

.choose-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: start;
}

.choose-sticky {
    position: sticky;
    top: 120px;
}

.choose-sticky .section-title {
    margin-bottom: 16px;
}

.choose-sticky .section-desc {
    margin-bottom: 32px;
}

.choose-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.choose-step {
    display: flex;
    gap: 20px;
    padding: 24px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: default;
}

.choose-step:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(245, 154, 87, 0.1);
    transform: translateX(4px);
}

.step-num {
    width: 44px;
    height: 44px;
    background: rgba(245, 154, 87, 0.1);
    color: var(--orange);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.choose-step:hover .step-num {
    background: var(--orange);
    color: var(--white);
}

.step-content h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mid-gray);
}

/* =============================================
   QUOTE FORM SECTION
   ============================================= */
.quote-section {
    background: var(--near-black);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(245, 154, 87, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quote-left {
}

.quote-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.quote-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.qb-icon {
    width: 32px;
    height: 32px;
    background: rgba(245, 154, 87, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.quote-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.quote-form-card h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.quote-form-card .form-sub {
    font-size: 14px;
    color: var(--mid-gray);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--charcoal);
    background: #FAFAFA;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245, 154, 87, 0.12);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-submit {
    width: 100%;
    font-size: 15px;
    padding: 16px;
    justify-content: center;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--mid-gray);
    margin-top: 12px;
}

.form-note a {
    color: var(--orange);
}

/* FAQ — shared styles in assets/css/ccb-faq.css */
.faq-left .section-desc {
    margin-bottom: 32px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .trust-strip-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-item:nth-child(4), .trust-item:nth-child(5) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .trust-item:nth-child(3) {
        border-right: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-desc {
        max-width: 100%;
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image-wrap {
        display: none;
    }

    .features-section .container {
        grid-template-columns: 1fr;
    }

    .features-image-stack {
        display: none;
    }

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

    .feature-card:first-child {
        flex-direction: column;
    }

    .choose-layout {
        grid-template-columns: 1fr;
    }

    .choose-sticky {
        position: static;
    }

    .quote-layout {
        grid-template-columns: 1fr;
    }

    .cw-inner {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .portfolio-masonry--gallery .porto-item:nth-child(6) {
        grid-column: span 1;
    }

    .porto-item:nth-child(6) {
        grid-column: span 1;
    }

    .header-cta .btn-primary {
        display: none;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .trust-strip {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 64px 0;
    }

    #categories:has(+ .bestsellers) {
        padding-bottom: 24px;
    }

    #categories + .bestsellers {
        padding-top: 32px;
    }

    .top-bar-left {
        display: none;
    }

    .trust-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item:nth-child(5) {
        grid-column: span 2;
    }

    #categories .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    #bestsellers .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card .product-cat {
        display: none;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cw-products {
        grid-template-columns: 1fr;
    }

    .portfolio-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .portfolio-masonry--gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .portfolio-masonry--gallery .porto-item:nth-child(1),
    .portfolio-masonry--gallery .porto-item:nth-child(4) {
        grid-row: span 1;
    }

    .porto-item:nth-child(1), .porto-item:nth-child(4) {
        grid-row: span 1;
    }
}

@media (max-width: 400px) {
    #categories .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

#bestsellers-header .section-head {
    text-align: left;
    margin-bottom: 0;
}

#bestsellers-header .section-label {
    display: flex;
    justify-content: start;
}

@media (max-width: 960px) {
    #bestsellers-header .section-title, #bestsellers-header .section-label, .bestsellers .section-head {
        justify-content: center;
        text-align: center !important;
    }

    .bestsellers-tabs {
        justify-content: center !important;
    }

    #bestsellers-header .section-label {
        justify-content: center !important;
    }

    .bestsellers-header {
        justify-content: center;
        align-items: center;
    }
}