/* =============================================
   PRIMEPACKIO - Complete Stylesheet
   Color Theme: Dark Brown + Gold + Cream
   ============================================= */

/* === FONTS (Google Fonts via @import) === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
    --gold: #d4a24c;
    --gold-light: #e2b86a;
    --gold-gradient: linear-gradient(135deg, #d4a24c, #e2b86a);
    --brown-dark: #4a3120;
    --brown-medium: #8a6240;
    --brown-light: #a8845e;
    --cream: #f0e6d8;
    --cream-light: #f5efe5;
    --off-white: #faf7f2;
    --text-primary: #4a3120;
    --text-secondary: #8a6240;
    --text-light: #a8845e;
    --white: #ffffff;
    --copper: #c9a96e;
    --shadow-sm: 0 2px 8px rgba(74, 49, 32, 0.08);
    --shadow-md: 0 8px 24px rgba(74, 49, 32, 0.12);
    --shadow-lg: 0 16px 32px rgba(74, 49, 32, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    /* Bug 1 Fix: Previously undefined variables now properly declared */
    --heading-font: 'Sora', sans-serif;
    --dark-brown: #4a3120;
    --text-body: #8a6240;
    --gold-dark: #b5952f;
}

/* === RESET & BASE === */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: var(--off-white);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
button {
    font-family: 'Sora', sans-serif;
}

button,
input,
textarea,
select {
    font-family: 'Inter', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

/* === TOP BAR === */
.topbar {
    width: 100%;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 0.9rem;
    padding: 10px 0;
}

.topbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.top-contact-info a {
    color: var(--brown-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.top-contact-info a i {
    margin-right: 6px;
    font-size: 1rem;
}

.top-contact-info a:hover {
    color: var(--white);
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    padding: 12px 0 5px 0;
    box-shadow: 0 2px 5px rgba(60, 36, 21, 0.08);
    transition: var(--transition);
}

.header .row {
    display: flex;
    flex-wrap: wrap;
}

.header .v-center {
    align-items: center;
}

.header .item-left {
    flex: 0 0 20%;
}

.header .logo img {
    width: auto;
    height: 110px;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0.2, 0, 1);
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.1));
}

.header .logo:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 25px rgba(212, 175, 55, 0.3));
}

.header .item-center {
    flex: 0 0 60%;
}

.header .item-right {
    flex: 0 1 20%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Nav Links */
.header .menu>ul>li {
    display: inline-block;
    line-height: 50px;
    margin-left: 25px;
}

.header .menu>ul>li>a {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s;
}

.header .menu>ul>li:hover>a,
.header .menu>ul>li>a:hover {
    color: var(--gold);
}

@media (min-width: 992px) {
    .header .menu>ul>li>a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -12px;
        width: 100%;
        height: 2px;
        border-radius: 999px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .header .menu>ul>li>a:hover::after,
    .header .menu>ul>li>a.is-active::after {
        transform: scaleX(1);
    }

    .header .menu>ul>li>a.nav-cta::after {
        display: none;
    }
}

.header .menu>ul>li>a.is-active {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--brown-dark) !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm) !important;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

.nav-cta.is-active {
    background: var(--brown-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 14px 28px rgba(74, 49, 32, 0.18);
}

/* Mega Menu */
.header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px 30px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

@media(min-width: 992px) {
    .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

/* Mobile Header Refinements */
@media (max-width: 768px) {
    .header .logo img {
        height: 70px;
    }

    .header .menu>ul>li {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .header .logo img {
        height: 55px;
    }
}

.header .menu>ul>li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 25%;
    padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1;
    padding: 10px 0;
    display: inline-block;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    text-align: center;
}

.header .menu>ul>li .sub-menu>ul>li {
    line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a,
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: inline-block;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    line-height: 1;
    display: block;
}

.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover {
    color: var(--gold);
}

/* Mega menu icons */
.mega-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition);
}

.list-item.text-center a:hover .mega-icon {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mega-menu-placeholder {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    color: var(--gold);
    font-size: 3rem;
}

.mega-menu-placeholder span {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Search */
.search-container {
    position: relative;
    width: 100%;
    max-width: 220px;
}

#searchInput {
    width: 100%;
    padding: 8px 35px 8px 10px;
    border: 1px solid #d4c4b0;
    border-radius: 20px;
    outline: none;
    font-size: 0.875rem;
    background: var(--cream-light);
    transition: var(--transition);
}

#searchInput:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brown-light);
    cursor: pointer;
    transition: color 0.2s;
}

.search-icon:hover {
    color: var(--gold);
}

/* Mobile Menu Trigger */
.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/* === TOP BAR ANNOUNCEMENT === */
.top-announcement {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (max-width: 600px) {
    .top-announcement {
        display: none;
    }

    .topbar {
        padding: 5px 0;
    }
}

.top-announcement i {
    margin-right: 5px;
    color: var(--gold-light);
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

/* Bug 20 Fix: When mobile menu is open, lower WhatsApp button below the menu overlay */
body.menu-open .whatsapp-float {
    z-index: 900;
}

/* === HERO BANNER (Full-Width Centered) === */
.hero-fullwidth {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a3120 0%, #8a6240 40%, #d4a24c 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1.5" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-center {
    position: relative;
    text-align: center;
    max-width: 720px;
    padding: 60px 24px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 22px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-center h1 {
    font-size: clamp(1.8rem, 8vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Sora', sans-serif;
}

.hero-center .highlight {
    color: var(--cream);
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gold);
    color: var(--brown-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.hero-features {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features span i {
    font-size: 1rem;
    color: var(--gold-light);
}

.highlight {
    color: var(--gold);
}

/* === PRODUCT CATALOG === */
.catalog-section {
    width: 100%;
    padding: 60px 0 80px;
    background: var(--off-white);
}

.catalog-group {
    margin-bottom: 60px;
}

.catalog-group:last-child {
    margin-bottom: 0;
}

.catalog-group-header {
    margin-bottom: 35px;
}

.catalog-group-header h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.catalog-group-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.catalog-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200, 146, 42, 0.08);
    text-decoration: none;
    color: inherit;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.catalog-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream-light);
    position: relative;
}

.catalog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-card-img img {
    transform: scale(1.08);
}

.catalog-card-body {
    padding: 18px 20px 22px;
}

.catalog-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.catalog-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
}

.catalog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.catalog-product-count {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.catalog-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    transition: var(--transition);
}

.catalog-card:hover .catalog-arrow {
    background: var(--gold);
    color: var(--white);
}

/* === ACCESSORIES SLIDER === */
.acc-slider-section {
    width: 100%;
    padding: 60px 0 80px;
    background: var(--white);
}

.acc-slider-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.acc-slider-header h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 6px;
}

.acc-slider-header p {
    color: var(--text-body);
    font-size: 0.95rem;
}

.acc-slider-arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    margin-top: 5px;
}

.acc-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.acc-arrow:hover {
    background: var(--dark-brown);
}

.acc-slider-track-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.acc-slider-track-wrapper::-webkit-scrollbar {
    display: none;
}

.acc-slider-track {
    display: flex;
    gap: 20px;
}

.acc-slide-img {
    width: 100%;
    height: 180px;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cream);
    position: relative;
}

.acc-slide-card {
    flex: 0 0 250px;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-md);
    border: 1px solid rgba(74, 49, 32, 0.08);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.acc-slide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.acc-slide-content {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.acc-slide-card h3 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-family: 'Sora', sans-serif;
}

.acc-slide-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.acc-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(74, 49, 32, 0.05);
}

.acc-product-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.acc-arrow {
    width: 28px;
    height: 28px;
    background: var(--cream-light);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.acc-slide-card:hover .acc-arrow {
    background: var(--gold);
    color: var(--white);
}

.acc-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.acc-slide-card:hover .acc-slide-img img {
    transform: scale(1.08);
}

.acc-slide-card h3 {
    font-family: var(--heading-font);
    font-size: 0.95rem;
    color: var(--dark-brown);
    margin-bottom: 4px;
    font-weight: 600;
}

.acc-slide-card p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.4;
}

/* === ADVANTAGE SECTION === */
.advantage-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

.advantage-container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
}

.advantage-header {
    margin-bottom: 50px;
}

.advantage-header h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.advantage-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200, 146, 42, 0.08);
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(200, 146, 42, 0.3);
}

.advantage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.advantage-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === WHY US === */
.why-us-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
}

.why-us-container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.why-us-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.why-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    position: relative;
    transition: var(--transition);
    margin-top: 10px;
}

.why-us-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.why-us-btn:hover {
    color: var(--brown-dark);
    transform: translateY(-2px);
}

.why-us-btn:hover::after {
    transform: scaleX(1);
}

.why-us-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-us-feature-box {
    background: var(--brown-dark);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: transform 0.6s cubic-bezier(.22, 1, .36, 1);
    border: 2px solid transparent;
}

.why-us-feature-box:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.why-us-feature-box i {
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gold-gradient);
    color: var(--white);
    font-size: 1.7rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-us-feature-box:hover i {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(200, 146, 42, 0.5);
}

.why-us-feature-box h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.why-us-feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
}

/* === MORE CATEGORIES SLIDER === */
.more-categories-section {
    width: 100%;
    background: var(--white);
    padding: 80px 20px;
}

.more-categories-container {
    max-width: 1320px;
    margin: 0 auto;
}

.more-categories-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.more-categories-header h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.more-categories-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
}

.mc-top-arrows {
    display: flex;
    gap: 10px;
}

.mc-arrow {
    background: var(--gold);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    transition: var(--transition);
}

.mc-arrow:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

.more-categories-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.more-categories-slider::-webkit-scrollbar {
    display: none;
}

.mc-card {
    display: block;
    min-width: 260px;
    max-width: 260px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    color: inherit;
    transition: var(--transition);
    box-shadow: none;
    border: 1px solid rgba(200, 146, 42, 0.15);
    padding: 15px;
}

.mc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.mc-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.mc-card:hover .mc-placeholder {
    background: var(--gold);
    color: var(--white);
}

.mc-card h3 {
    font-size: 1.1rem;
    margin: 12px 0;
    color: var(--text-primary);
}

.mc-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* === QUOTE FORM === */
.custom-packaging-section {
    width: 100%;
    background: var(--cream);
    padding: 80px 0;
}

.custom-packaging-container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

.custom-packaging-container h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.custom-packaging-container>p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.custom-packaging-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--text-primary);
}

/* Bug 17 Fix: Shared form element base styles without dropdown arrow */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid #d4c4b0;
    background: var(--cream-light);
    color: var(--text-primary);
    transition: var(--transition);
    background-image: none;
}

/* Only select gets appearance:none + custom dropdown arrow */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234a3120' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 146, 42, 0.15);
    background: var(--white);
}

.full-width {
    grid-column: 1 / -1 !important;
}

.sub-btn {
    display: block;
    width: 100%;
    padding: 14px 22px;
    margin-top: 1.5rem;
    background: var(--gold);
    color: var(--brown-dark);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: center;
}

.sub-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === HOW IT WORKS === */
.howitworks-stunning {
    width: 100%;
    padding: 80px 0;
    background: var(--off-white);
    text-align: center;
}

.hw-container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

.hw-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.hw-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.hw-steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hw-step {
    width: 30%;
    position: relative;
    text-align: center;
    z-index: 2;
    transition: transform 0.3s;
}

.hw-step:hover {
    transform: translateY(-8px);
}

.hw-step-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hw-step-circle-highlight {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(200, 146, 42, 0.3);
}

.hw-step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.hw-step-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 240px;
    margin: 0 auto;
}

.hw-line {
    position: absolute;
    top: 35px;
    left: 5%;
    right: 5%;
    height: 6px;
    background: linear-gradient(90deg, var(--gold), var(--brown-dark), var(--gold));
    background-size: 200% 100%;
    border-radius: 3px;
    z-index: 1;
    animation: 2.5s linear infinite gradientMove;
}

@keyframes gradientMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.hw-button-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.hw-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    background: var(--gold);
    color: var(--brown-dark);
    font-weight: 600;
    transition: background 0.4s, transform 0.6s cubic-bezier(.4, 0, .2, 1);
}

.hw-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* === TESTIMONIALS === */
.testimonial-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--off-white), var(--cream));
}

.testimonial-container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 15px auto 0;
    background: var(--gold);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-xl);
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200, 146, 42, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    border: 2px solid var(--gold);
}

.client-info h3 {
    font-size: 1rem;
    color: var(--text-primary);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.reviews-footer {
    text-align: center;
    margin-top: 50px;
}

.google-review-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.google-review-badge .stars {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 1.5px;
}

.google-review-badge .rating-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.google-review-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.reviews-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    background: var(--gold);
    color: var(--brown-dark);
    font-weight: 600;
    transition: background 0.4s, transform 0.6s cubic-bezier(.4, 0, .2, 1);
}

.reviews-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}


/* === FAQ === */
.faq-section {
    padding: 80px 0;
    width: 100%;
    background: var(--cream-light);
}

.faq-container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.15rem;
    max-width: 850px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

.faq-columns {
    display: flex;
    gap: 2rem;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(74, 49, 32, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(74, 49, 32, 0.04);
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 16px rgba(74, 49, 32, 0.08);
}

.faq-item.active {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 162, 76, 0.12);
}

.faq-btn {
    width: 100%;
    padding: 1.4rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    text-align: left;
}

.faq-icon {
    width: 2.4rem;
    height: 2.4rem;
    min-width: 2.4rem;
    min-height: 2.4rem;
    border-radius: 50%;
    border: 2px solid #d4c4b0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-secondary);
    flex-shrink: 0;
}

.faq-content {
    height: 0;
    overflow: hidden;
    transition: height 0.35s;
}

.faq-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-icon {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: rotate(180deg);
}

/* === HELP ONLINE === */
.help-online {
    padding: 0 0 80px 0;
    background: var(--cream-light);
}

.help-online-container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.help-image-placeholder {
    width: 300px;
    height: 300px;
    max-width: 100%;
    /* Bug 7 Fix: Prevent overflow on small screens */
    flex-shrink: 0;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--gold);
    animation: 0.7s fadeIn;
}

.help-online-content {
    flex: 1;
    min-width: 280px;
}

.help-online-title {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.help-online-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.help-online-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.help-online-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    margin-right: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.help-online-contact a:hover {
    color: var(--brown-dark);
    transform: translateX(0.2rem);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === CTA QUOTE === */
.quote-section {
    width: 100%;
    padding: 70px 0;
    background: var(--brown-dark);
    color: var(--white);
    text-align: center;
}

.quote-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.quote-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.quote-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    background: var(--gold);
    color: var(--brown-dark);
    font-weight: 600;
    transition: background 0.4s, transform 0.6s cubic-bezier(.4, 0, .2, 1);
}

.quote-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* === FOOTER === */
footer {
    background: #2a1c10;
    padding: 60px 0 20px 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
}

footer address {
    font-style: normal;
}

.footer-container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    font-family: 'Sora', sans-serif;
}

.upside-down-foot-title {
    margin-top: 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

footer a:hover {
    color: var(--gold-light);
}

.footer-grid nav {
    display: contents;
}

.footer-divider {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.subscribe-input {
    display: flex;
    margin-top: 10px;
}

.subscribe-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.subscribe-input button {
    padding: 12px 18px;
    background: var(--gold);
    color: var(--brown-dark);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-input button:hover {
    background: var(--gold-light);
}

.payment-methods,
.social-media {
    margin-top: 35px;
}

.payment-methods .icons i,
.social-media .icons a i {
    font-size: 1.6rem;
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.social-media .icons a {
    display: inline-block;
}

.social-media .icons a:hover i {
    color: var(--gold);
}

.payment-methods .icons i {
    cursor: default;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info p {
    margin: 4px 0;
    font-size: 1rem;
}

.contact-info i {
    margin-right: 8px;
    color: var(--gold);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info a:hover {
    color: var(--gold-light);
}

.trust-icons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 10px;
}

.trust-icon-item {
    text-align: center;
    min-width: 60px;
    cursor: default;
}

.trust-icon-item i {
    color: var(--gold);
    font-size: 2.6rem;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

.trust-icon-item .icon-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    white-space: nowrap;
}

.trust-icon-item:hover i {
    color: var(--gold);
}

.copyright {
    text-align: center;
    margin-top: 35px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

.google-rating-box {
    text-align: center;
    padding: 25px 15px;
}

.google-stars i {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0 2px;
}

.google-rating-text .rating-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.google-rating-text .rating-sub {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.google-label {
    margin-top: 1px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.google-based {
    margin-top: 1px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.review-count {
    font-weight: 600;
}

/* === MEGA MENU CUSTOM STYLES === */
.mega-menu .list-item span.title a {
    color: var(--brown-dark);
    text-decoration: none;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.mega-menu .list-item span.title a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.mega-menu-silo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--brown-dark) !important;
    padding: 10px 14px;
    background: rgba(212, 175, 55, 0.12);
    /* Permanently visible soft gold background */
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    /* Permanently visible border */
    border-left: 5px solid var(--gold);
    /* Distinct left edge */
    transition: all 0.3s ease;
    margin-bottom: 15px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Slight shadow to make it pop */
}

.mega-menu-silo-link:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateX(4px);
    border-left-color: var(--gold-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.mega-menu-silo-link i {
    font-size: 0.9rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.mega-menu-silo-link:hover i {
    transform: translateX(3px);
}

/* === RESPONSIVE === */
@media (min-width: 600px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .banner {
        padding: 10px 0 80px 0;
    }

    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .slider {
        width: 100%;
        max-width: 700px;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        margin-top: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .badges {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 1062px) {
    .header .item-center {
        order: 3;
        flex: 0 0 100%;
    }

    .header .item-left,
    .header .item-right {
        flex: 0 0 auto;
    }

    .v-center {
        justify-content: space-between;
    }

    .header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background: var(--text-primary);
        width: 24px;
        position: relative;
    }

    .header .mobile-menu-trigger span::before,
    .header .mobile-menu-trigger span::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--text-primary);
    }

    .header .mobile-menu-trigger span::before {
        top: -6px;
    }

    .header .mobile-menu-trigger span::after {
        top: 6px;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background: var(--white);
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header .menu.active {
        transform: translate(0%);
    }

    .header .menu>ul>li {
        line-height: 1;
        margin: 0;
        display: block;
    }

    .header .menu>ul>li>a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(60, 36, 21, 0.1);
    }

    .header .menu>ul>li>a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(60, 36, 21, 0.1);
        justify-content: space-between;
        align-items: center;
        position: sticky;
        background: var(--white);
        top: 0;
        z-index: 501;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(60, 36, 21, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: var(--text-primary);
        font-size: 1rem;
        display: none;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 0.9375rem;
        font-weight: 500;
        color: var(--text-primary);
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(60, 36, 21, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: var(--text-primary);
        font-size: 1.5625rem;
    }

    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.mega-menu,
    .header .menu>ul>li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.active {
        display: block;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
        flex: 0 0 100%;
        padding: 0;
    }

    .menu-overlay {
        position: fixed;
        background: rgba(60, 36, 21, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .why-us-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-us-features {
        grid-template-columns: 1fr 1fr;
    }

    .hw-steps-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .hw-line {
        display: none;
    }

    .hw-step {
        width: 100%;
        margin-bottom: 3rem;
    }

    /* Bug 12 Fix: Use 2-col on tablets instead of cramped single-col with max-width: 400px */
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
        margin: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .help-online-container {
        text-align: center;
        flex-direction: column;
    }

    .help-online-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .help-online-contact a {
        margin-right: 0;
        justify-content: center;
        width: 100%;
    }

    .help-online-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .banner {
        padding: 10px 0 60px 0;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .top-products-heading h2,
    .why-us-content h2,
    .more-categories-header h2 {
        font-size: 1.5rem;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .catalog-group-header h2 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .catalog-group-header p {
        font-size: 0.95rem;
    }

    .more-categories-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-columns {
        flex-direction: column;
    }

    .quote-content h2 {
        font-size: 1.5rem;
    }

    .advantage-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .why-us-features {
        grid-template-columns: 1fr;
    }

    .why-us-feature-box {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .google-review-badge {
        flex-direction: column;
        gap: 8px;
    }

    .reviews-btn {
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .trust-icons {
        gap: 30px;
    }

    .subscribe-input {
        flex-direction: column;
    }

    .subscribe-input button,
    .subscribe-input input {
        width: 100%;
        border-radius: 4px;
    }

    .subscribe-input button {
        margin-top: 10px;
    }
}

@media (max-width: 512px) {
    .header .row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .header .item-left {
        flex: 0 0 auto;
    }

    .header .item-right {
        flex: 0 0 auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-top: 0;
    }

    .header .logo {
        margin-bottom: 0;
    }

    .search-container {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .top-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .trust-icons {
        gap: 20px;
    }

    .trust-icon-item i {
        font-size: 1.8rem;
    }
}

@media (max-width: 358px) {
    .topbar {
        font-size: 0.8125rem;
        padding: 8px 0;
    }

    .top-contact-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* === PROCESS SECTION (How It Works) === */
.section-heading {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 8px;
}

.section-subheading {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 50px;
}

.process-section {
    padding: 80px 0;
    background: var(--cream-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 24px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(209, 152, 71, 0.1);
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.process-num {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.process-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === FAQ SINGLE-COLUMN === */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

/* === CONTACT STRIP === */
.contact-strip {
    background: linear-gradient(135deg, #4a3120, #8a6240);
    padding: 50px 0;
}

.contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-strip-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 6px;
}

.contact-strip-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.contact-strip-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.strip-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.strip-link:hover {
    color: var(--gold-light);
}

.strip-link i {
    font-size: 1rem;
}

.strip-btn {
    background: #25d366;
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.strip-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* === FOOTER BRAND / ABOUT SECTION === */
.footer-brand {
    max-width: 280px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    margin-bottom: 10px;
}

.footer-about {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

/* === RESPONSIVE: Process Grid === */
@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-center h1 {
        font-size: 2.2rem;
    }

    .contact-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-strip-actions {
        justify-content: center;
    }
}

/* === PHASE 13: GLOBAL PREMIUM HUB ARCHITECTURE === */
/* Premium Hero */
.premium-hero {
    margin-top: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(44, 30, 22, 0.95) 100%), #2c1e16;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.premium-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.premium-hero-breadcrumbs {
    font-size: 0.95rem;
    color: #f6f4f0;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.premium-hero-breadcrumbs a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s;
}

.premium-hero-breadcrumbs a:hover {
    color: #fff;
}

.premium-hero h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeDown 0.8s ease forwards;
}

.premium-hero h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 500;
}

.premium-hero p {
    font-size: 1.15rem;
    color: #f6f4f0;
    max-width: 850px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
    animation: fadeUp 0.8s ease forwards;
}

/* Global Luxury Grid (Strict 4 Columns) */
.luxury-grid-section {
    padding: 100px 0;
    background: #fff;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.luxury-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 30, 22, 0.04);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
    animation: fadeIn 0.8s ease backwards;
}

.luxury-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 30, 22, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

.luxury-card-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #D4AF37;
    background-color: #f9f9f9;
    transition: filter 0.5s ease;
    filter: contrast(1.05) sepia(0.1) hue-rotate(-10deg) brightness(0.95);
}

.luxury-card:hover .luxury-card-img {
    filter: contrast(1.1) sepia(0.05) hue-rotate(-5deg) brightness(1.05);
}

.luxury-card-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-card h3 {
    font-size: 1.25rem;
    color: #2C1E16;
    margin: 0;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    transition: color 0.3s ease;
}

.luxury-card:hover h3 {
    color: #D4AF37;
}

/* Modern E-commerce 50/50 Split */
.asymmetric-section {
    padding: 120px 0;
    background: #faf9f6;
    border-top: 1px solid #e0dcd2;
}

.asymmetric-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.asym-left {
    flex: 1 1 55%;
    animation: fadeRight 0.8s ease forwards;
}

.asym-right {
    flex: 1 1 35%;
    animation: fadeLeft 0.8s ease forwards;
}

/* SEO Body Text */
.premium-seo-text h2 {
    font-size: 2.5rem;
    color: #2C1E16;
    margin-bottom: 20px;
    font-weight: 700;
}

.premium-seo-text h3 {
    font-size: 1.8rem;
    color: #2C1E16;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.premium-seo-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Inline Trust USPs */
.inline-usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.inline-usp-card {
    background: #fff;
    border-left: 4px solid #D4AF37;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.inline-usp-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.inline-usp-card i {
    font-size: 2.2rem;
    color: #D4AF37;
    margin-top: 2px;
    transition: transform 0.5s ease;
}

.inline-usp-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.inline-usp-card h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: #2C1E16;
    font-weight: 600;
}

.inline-usp-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* SaaS Premium Sticky Quote Form */
.premium-quote-card {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(44, 30, 22, 0.1);
    position: sticky;
    top: 120px;
    z-index: 10;
    transition: box-shadow 0.3s ease;
}

/* Bug 8 Fix: Un-stick the quote card on mobile so it doesn't overlap content */
@media (max-width: 768px) {
    .premium-quote-card {
        position: static;
        top: auto;
        padding: 25px;
    }
}

.premium-quote-card:hover {
    box-shadow: 0 20px 60px rgba(44, 30, 22, 0.15);
}

.premium-quote-card h3 {
    font-size: 2rem;
    color: #2C1E16;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
}

.premium-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e0dcd2;
    border-radius: 8px;
    background: #faf9f6;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
}

.premium-input::placeholder {
    color: #999;
}

.premium-input:focus {
    outline: none;
    border-color: #D4AF37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

textarea.premium-input {
    resize: vertical;
    min-height: 120px;
}

.btn-glow {
    background: #D4AF37;
    color: #fff;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.btn-glow:hover {
    background: #b5952f;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.btn-glow:hover::after {
    opacity: 1;
    transform: rotate(30deg) translate(50%, 50%);
}

/* Micro-Animations Definitions */
/* Bug 13 Fix: Removed duplicate @keyframes fadeIn.
   The original definition above (with translateY slide effect) is used everywhere. */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Grid Staggered Animation Delay for cards */
.luxury-grid>a:nth-child(1) {
    animation-delay: 0.1s;
}

.luxury-grid>a:nth-child(2) {
    animation-delay: 0.2s;
}

.luxury-grid>a:nth-child(3) {
    animation-delay: 0.3s;
}

.luxury-grid>a:nth-child(4) {
    animation-delay: 0.4s;
}

.luxury-grid>a:nth-child(5) {
    animation-delay: 0.5s;
}

.luxury-grid>a:nth-child(6) {
    animation-delay: 0.6s;
}

.luxury-grid>a:nth-child(7) {
    animation-delay: 0.7s;
}

.luxury-grid>a:nth-child(8) {
    animation-delay: 0.8s;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .luxury-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .luxury-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .asym-left,
    .asym-right {
        flex: 1 1 100%;
    }

    /* Bug 9 Fix: Reduce large 60px gap when columns stack vertically */
    .asymmetric-container {
        gap: 24px;
    }

    .inline-usp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .luxury-grid {
        grid-template-columns: 1fr;
    }

    .premium-hero h1 {
        font-size: 2.5rem;
    }

    .premium-hero {
        margin-top: 0;
        padding: 80px 0;
    }
}

/* =========================================================================
   LUXURY CARD FIX (Bugs 2 & 3: Removed conflicting grid definition,
   added overflow:hidden for proper hover zoom effect)
   ========================================================================= */

/* Bug 3 Fix: overflow:hidden needed on luxury-card (not card-img) so that
   the background-image scale transform is clipped correctly */
.luxury-card {
    overflow: hidden;
}

.luxury-card-img {
    height: 240px;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    /* zoom is now visible because parent has overflow:hidden */
}

.luxury-card:hover .luxury-card-img {
    transform: scale(1.05);
}

.luxury-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.luxury-card-content h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: var(--brown-dark);
    font-weight: 700;
}

.luxury-card-content p {
    margin: 0 0 15px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.luxury-card-content>div {
    margin-top: auto;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.luxury-card:hover .luxury-card-content>div {
    color: var(--brown-dark);
}

/* =========================================================================
   RESPONSIVE SPLIT LAYOUT FIX (ADDED BY AUTONOMOUS QA)
   ========================================================================= */

@media (max-width: 1024px) {

    .product-main-layout,
    .split-grid-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .description-section,
    .quote-form-container,
    .product-image-container,
    .product-form-container {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    .product-image-container img {
        max-height: 400px;
        object-fit: contain;
        width: 100%;
    }
}

/* Added by QA */

/* =========================================================================
   PREMIUM PRODUCT CONTENT STYLING (ADDED BY ANTIGRAVITY)
   ========================================================================= */

.premium-content-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.premium-content-section h2 {
    font-size: 2.2rem;
    color: var(--brown-dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Sora', sans-serif;
}

.premium-content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
}

.premium-text-block {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.premium-text-block p {
    margin-bottom: 20px;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.premium-feature-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

.premium-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.premium-feature-card h3 {
    color: var(--brown-dark);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.premium-feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.premium-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-specs-table th {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 18px 25px;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

.premium-specs-table td {
    padding: 16px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    color: #555;
    font-size: 0.95rem;
}

.premium-specs-table tr:nth-child(even) td {
    background: var(--cream-light);
}

.premium-faq-section {
    margin-top: 80px;
}

.premium-faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: var(--transition);
}

.premium-faq-item:hover {
    border-color: var(--gold);
}

.premium-faq-question {
    padding: 22px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--brown-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    background: #fff;
}

.premium-faq-question i {
    color: var(--gold);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.premium-faq-answer {
    padding: 0 25px 25px;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}


/* === SEARCH & LISTING GRID === */
.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

/* PREMIUM PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(44, 30, 22, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #fdfcf9;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 30, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    pointer-events: none;
    visibility: hidden;
}

.product-card:hover .product-card-overlay {
    opacity: 0;
}

.product-card-overlay span {
    color: #fff;
    background: var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* === FINAL MOBILE HEADER / FOOTER STABILIZATION === */
.header .item-right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-search-trigger {
    display: none;
    appearance: none;
    border: 1px solid rgba(60, 36, 21, 0.12);
    background: #fff;
    color: var(--brown-dark);
    padding: 0;
    margin: 0;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(44, 30, 22, 0.08);
    cursor: pointer;
}

.mobile-search-trigger i {
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .mobile-search-trigger,
    .header .mobile-menu-trigger {
        display: inline-flex !important;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(60, 36, 21, 0.12);
        border-radius: 999px;
        background: #fff;
        box-shadow: 0 8px 24px rgba(44, 30, 22, 0.08);
        flex: 0 0 auto;
    }

    .header .mobile-menu-trigger {
        margin-left: 0;
    }

    .header .mobile-menu-trigger span {
        width: 18px;
        height: 2px;
    }

    .header .mobile-menu-trigger span::before {
        top: -6px;
    }

    .header .mobile-menu-trigger span::after {
        top: 6px;
    }

    .search-container {
        display: none !important;
        max-width: none !important;
    }

    .header.mobile-search-active .search-container {
        display: block !important;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(280px, calc(100vw - 32px));
        padding: 10px;
        background: #fff;
        border: 1px solid rgba(60, 36, 21, 0.12);
        border-radius: 18px;
        box-shadow: 0 16px 30px rgba(44, 30, 22, 0.12);
        z-index: 1201;
    }

    .header.mobile-search-active #searchInput {
        min-height: 44px;
        padding-right: 42px;
        border-radius: 14px;
    }

    .header.mobile-search-active .search-icon {
        right: 24px;
        font-size: 1rem;
    }

    .header .menu {
        top: 0;
        width: min(88vw, 360px);
        max-width: 360px;
    }

    .header .menu .mobile-menu-head {
        height: 56px;
    }

    .header .menu .mobile-menu-head .go-back,
    .header .menu .mobile-menu-head .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        line-height: 1;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        padding: 0 10px;
        font-size: 0.92rem;
    }

    .header .menu > ul > li > a {
        min-height: 54px;
        padding-left: 18px;
        padding-right: 48px;
    }

    footer.site-footer {
        padding: 48px 0 28px;
    }

    footer.site-footer .footer-container {
        padding: 0 18px;
    }

    footer.site-footer .footer-grid.footer-main-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 18px;
        align-items: start;
        margin-bottom: 24px;
    }

    footer.site-footer .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: none;
    }

    footer.site-footer .footer-logo,
    footer.site-footer .payment-methods,
    footer.site-footer .payment-methods .icons {
        justify-content: center;
    }

    footer.site-footer .footer-logo img {
        max-height: 70px;
        max-width: min(260px, 100%);
    }

    footer.site-footer .footer-about {
        max-width: 32rem;
        margin: 0 auto 20px;
        text-align: center;
    }

    footer.site-footer .footer-col,
    footer.site-footer .footer-stack-col,
    footer.site-footer .footer-contact-col {
        width: 100%;
        min-width: 0;
    }

    footer.site-footer .footer-stack-col {
        gap: 18px;
    }

    footer.site-footer .footer-title {
        margin-bottom: 16px;
    }

    footer.site-footer .footer-links {
        gap: 10px;
    }

    footer.site-footer .footer-links a {
        display: flex;
        width: 100%;
        transform: none !important;
    }

    footer.site-footer .footer-contact-col {
        grid-column: 1 / -1;
    }

    footer.site-footer .footer-contact-copy {
        text-align: left;
    }

    footer.site-footer .footer-cta-wrapper {
        display: flex;
        justify-content: flex-start;
    }

    footer.site-footer .footer-cta-wrapper .nav-cta {
        width: auto;
        min-width: 200px;
    }

    footer.site-footer .footer-contact-item {
        padding: 10px 0;
    }

    footer.site-footer .footer-contact-item a {
        overflow-wrap: anywhere;
    }

    footer.site-footer .footer-bottom {
        text-align: center;
        align-items: center;
    }

    footer.site-footer .footer-meta-stack,
    footer.site-footer .copyright {
        width: 100%;
        text-align: center;
    }

    footer.site-footer .trust-icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    footer.site-footer .trust-icon-item {
        width: 100%;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        padding: 10px 6px;
        text-align: center;
    }
}

@media (max-width: 479px) {
    footer.site-footer .footer-grid.footer-main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    footer.site-footer .footer-contact-col {
        grid-column: auto;
    }

    footer.site-footer .footer-cta-wrapper {
        justify-content: center;
    }

    footer.site-footer .trust-icons {
        grid-template-columns: 1fr;
    }
}

/* === FINAL MOBILE MENU FIXES === */
@media (max-width: 767px) {
    .header {
        z-index: 1300 !important;
    }

    .menu-overlay {
        inset: 0;
        background: rgba(20, 12, 8, 0.58) !important;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 1390 !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
    }

    .header .menu {
        position: fixed !important;
        inset: 0 auto 0 0;
        width: min(88vw, 360px) !important;
        max-width: 360px !important;
        height: 100dvh !important;
        background: #fff !important;
        box-shadow: 22px 0 48px rgba(20, 12, 8, 0.18);
        transform: translateX(-104%) !important;
        transition: transform 0.34s ease, box-shadow 0.34s ease !important;
        overflow: hidden !important;
        z-index: 1400 !important;
    }

    .header .menu.active {
        transform: translateX(0) !important;
    }

    .header .menu .mobile-menu-head {
        position: relative;
        z-index: 3;
        background: #fff;
    }

    .header .menu .menu-main {
        position: relative;
        height: calc(100dvh - 56px) !important;
        overflow-x: hidden;
        overflow-y: auto;
        background: #fff;
    }

    .header .menu > ul > li {
        position: static;
    }

    .header .menu > ul > li > a {
        position: relative;
        background: #fff;
    }

    .header .menu > ul > li .sub-menu.mega-menu,
    .header .menu > ul > li .sub-menu {
        position: absolute !important;
        top: 56px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100dvh - 56px) !important;
        min-height: calc(100dvh - 56px) !important;
        margin: 0 !important;
        padding: 0 0 24px !important;
        background: #fff !important;
        display: block !important;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(18px);
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0s linear 0.28s !important;
        z-index: 2;
        overflow-y: auto !important;
    }

    .header .menu > ul > li .sub-menu.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
        transition-delay: 0s !important;
    }

    .header .menu > ul > li .sub-menu .list-item {
        padding: 0 18px 16px !important;
        background: #fff;
    }

    .header .menu > ul > li .sub-menu .mega-menu-silo-link {
        min-height: 52px;
    }

    .header .menu .mobile-menu-head .go-back,
    .header .menu .mobile-menu-head .mobile-menu-close {
        background: #fff;
        color: var(--text-primary);
    }

    body.menu-open .header .mobile-menu-trigger,
    body.menu-open .header .mobile-search-trigger {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.9);
    }
}

.material-table-section table {
    table-layout: fixed;
}

.material-table-section td,
.material-table-section th {
    word-break: break-word;
}

.product-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.product-card h3 {
    font-size: 1.35rem;
    color: var(--brown-dark);
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 20px;
    flex-grow: 1;
    font-family: 'Sora', sans-serif;
}

.product-card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
}

.get-quote {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.product-card:hover .get-quote {
    gap: 12px;
}

@media (max-width: 768px) {
    .product-card-img {
        height: 180px;
    }

    .product-card-body {
        padding: 15px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }
}

/* FORCED MOBILE OPTIMIZATION (2-COLUMN GRID) */
@media (max-width: 600px) {

    /* Bug 11 Fix: catalog-grid has its own breakpoint (576px to 1 col), so removed from this
       forced 2-col override. Other product/listing grids still get 2-col at <=600px. */
    .product-grid,
    .premium-grid,
    .luxury-grid,
    .more-categories-grid,
    .search-grid,
    .silo-grid,
    .seo-grid,
    #listingGrid,
    #productContainer {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
        width: 100% !important;
    }

    /* form-grid should go single column on mobile for better usability */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Silo Card Specific Fixes */
    .silo-card {
        margin-bottom: 0 !important;
    }

    .silo-img {
        height: 130px !important;
    }

    .silo-content {
        padding: 10px !important;
    }

    .silo-content h3 {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
    }

    .silo-content p {
        overflow: hidden !important;
    }

    /* Category Header Stacking (View All links) */
    .section-header,
    .catalog-section-header,
    .catalog-group-header,
    [style*="border-left: 6px solid"],
    [style*="border-left: 6px solid var(--gold)"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        padding-left: 15px !important;
        display: flex !important;
    }

    .section-header a,
    .catalog-section-header a,
    .catalog-group-header a,
    [style*="border-left: 6px solid"] a,
    [style*="border-left: 6px solid var(--gold)"] a {
        margin-left: 0 !important;
        font-size: 0.8rem !important;
        margin-top: 10px !important;
        align-self: flex-start !important;
    }

    .section-header h2,
    [style*="border-left: 6px solid"] h2,
    [style*="border-left: 6px solid var(--gold)"] h2 {
        font-size: 1.8rem !important;
    }

    /* Bug 4 Fix: Removed rule that hid mobile sub-menu items 5+.
       All navigation items now visible on mobile. */
    #mainMenu .mega-menu-silo-link {
        display: flex !important;
    }

    /* Card Scaling & Structure */
    .catalog-card,
    .product-card,
    .premium-card,
    .luxury-card {
        padding: 8px !important;
        border-radius: 12px !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        background: #fff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    }

    /* Image Scaling */
    .catalog-card-image,
    .product-card-image,
    .product-card-img,
    .card-image,
    .premium-card .card-image {
        height: 130px !important;
        width: 100% !important;
        border-radius: 8px !important;
        object-fit: contain !important;
        background: #fff !important;
        margin-bottom: 8px !important;
    }

    /* Content Styling */
    .catalog-card-body h3,
    .product-card-body h3,
    .product-card h3,
    .premium-card h3 {
        font-size: 0.9rem !important;
        margin: 5px 0 !important;
        line-height: 1.2 !important;
        height: 2.4em !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        color: var(--brown-dark) !important;
    }

    .catalog-card-body p,
    .product-card-body p,
    .product-card p,
    .premium-card .price {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        opacity: 0.8 !important;
    }

    /* Product Detail Page Fixes */
    .product-details .container {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .product-details .left-col,
    .product-details .right-col {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .sticky-form-container {
        padding: 20px !important;
    }

    .form-grid,
    form .form-grid,
    [style*="display: grid; grid-template-columns: 1fr 1fr"],
    [style*="display: grid; grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .input-group,
    [style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }

    /* Dimension Inputs Stacking (L x W x H) */
    [style*="grid-template-columns: 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        font-size: 16px !important;
        /* Prevent iOS zoom */
        padding: 12px 10px !important;
    }

    .product-hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .sticky-form-container h3 {
        font-size: 1.2rem !important;
    }

    /* Benefits Bar & SEO Sections */
    .seo-grid,
    .seo-benefits-bar ul {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 !important;
    }

    .seo-benefits-bar li {
        padding: 10px !important;
        font-size: 0.75rem !important;
    }

    .seo-feature-box h3 {
        font-size: 1rem !important;
    }

    .seo-feature-box p {
        font-size: 0.8rem !important;
    }

    /* Hide 3rd item in 2-column grids on mobile for better balance if needed, 
       or keep it depending on flow. For now, we allow wrapping. */

    /* Footer & Buttons */
    .product-card-footer,
    .card-footer {
        padding-top: 8px !important;
        margin-top: auto !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .get-quote,
    .btn-view,
    .premium-card .btn {
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        padding: 5px 0 !important;
    }

    /* Section Spacing */
    .top-products,
    .luxury-section,
    .premium-products {
        padding: 30px 0 !important;
    }

    .section-title h2 {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
}

/* === PREMIUM ENTERPRISE FOOTER (Optimized & Responsive) === */
footer {
    background: #1a110c;
    /* Deeper, richer brown */
    color: #fff;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    transform: translateX(8px);
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods .icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    font-style: normal;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--gold);
}

.trust-icons {
    display: flex;
    gap: 40px;
}

.trust-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.trust-icon-item i {
    font-size: 1.8rem;
    color: var(--gold);
}

.trust-icon-item .icon-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 60px;
}

/* Responsive Table / Mobile Fixes */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col ul li a:hover {
        transform: none;
    }

    .payment-methods .icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .trust-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .contact-info p {
        justify-content: center;
    }
}

/* === LIVE PAGES / FORM FEEDBACK === */
.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-feedback {
    display: none;
    margin: 0 0 1rem;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid transparent;
}

.form-feedback.is-success,
.form-feedback.is-error {
    display: block;
}

.form-feedback.is-success {
    color: #0c4f2f;
    background: #e7f6ee;
    border-color: #a8d9be;
}

.form-feedback.is-error {
    color: #7a1f1f;
    background: #fdeeee;
    border-color: #efb4b4;
}

.form-feedback-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.form-feedback-card i {
    font-size: 2rem;
    color: var(--gold);
}

.form-feedback-card h3 {
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.form-feedback-card p {
    margin: 0;
    color: var(--text-secondary);
}

.content-page main {
    display: block;
}

.page-hero {
    padding: 100px 0 70px;
    background:
        linear-gradient(135deg, rgba(74, 49, 32, 0.92), rgba(138, 98, 64, 0.78)),
        radial-gradient(circle at top right, rgba(212, 162, 76, 0.18), transparent 40%);
    color: var(--white);
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 760px;
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
}

.page-hero p {
    max-width: 760px;
    font-size: 1.06rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
}

.page-section {
    padding: 75px 0;
}

.page-section.alt-section {
    background: var(--cream-light);
}

.page-intro {
    max-width: 780px;
    margin-bottom: 2rem;
}

.page-intro h2 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.page-intro p {
    color: var(--text-secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.content-card,
.policy-card,
.contact-card,
.stats-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(74, 49, 32, 0.08);
    box-shadow: var(--shadow-sm);
}

.content-card h3,
.policy-card h3,
.contact-card h3,
.stats-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.content-card p,
.policy-card p,
.contact-card p,
.stats-card p {
    color: var(--text-secondary);
}

.content-card i,
.contact-card i,
.stats-card i {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--gold);
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 2rem;
    align-items: start;
}

.page-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.page-list li {
    padding-left: 1.4rem;
    position: relative;
    color: var(--text-secondary);
}

.page-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
}

.policy-stack,
.contact-stack {
    display: grid;
    gap: 1.25rem;
}

.quote-inline-note {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.contact-meta {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.contact-meta a {
    color: var(--text-primary);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stats-card strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
}

.mini-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--brown-dark);
    font-weight: 700;
}

.policy-card+.policy-card {
    margin-top: 1rem;
}

@media (max-width: 1024px) {

    .content-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 80px 0 55px;
    }

    .page-section {
        padding: 60px 0;
    }

    .content-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-feedback-card {
        flex-direction: column;
    }
}

/* =========================================================================
   FINAL RESPONSIVE HARDENING
   ========================================================================= */
@media (max-width: 768px) {
    .premium-hero {
        padding: 92px 0 72px !important;
    }

    .premium-hero-breadcrumbs {
        font-size: 0.85rem !important;
        letter-spacing: 0.02em !important;
        margin-bottom: 14px !important;
    }

    .premium-hero h1 {
        font-size: clamp(2rem, 13vw, 3rem) !important;
        line-height: 1.08 !important;
        margin-bottom: 12px !important;
    }

    .premium-hero h2 {
        font-size: clamp(1.05rem, 4.7vw, 1.35rem) !important;
        line-height: 1.4 !important;
        margin-bottom: 18px !important;
    }

    .premium-hero p {
        font-size: 1rem !important;
        line-height: 1.65 !important;
        max-width: 34rem !important;
        margin-bottom: 24px !important;
    }

    .premium-quote-card {
        position: static !important;
        top: auto !important;
        padding: 28px 20px !important;
    }

    .premium-quote-card h3 {
        font-size: 1.45rem !important;
        margin-bottom: 1.25rem !important;
    }

    .silo-section>.container>div[style*="display: flex; justify-content: space-between"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }

    .silo-section h2[style*="font-size: 2.2rem"] {
        font-size: 1.9rem !important;
        line-height: 1.15 !important;
    }

    .silo-section p[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 10px 0 6px;
    }

    .header .item-right {
        flex: 1 1 auto;
        min-width: 0;
        gap: 10px;
    }

    .search-container {
        flex: 1 1 auto;
        max-width: 165px;
    }

    #searchInput {
        padding: 8px 34px 8px 12px;
        font-size: 0.9rem;
    }

    .premium-hero {
        padding: 80px 0 64px !important;
    }

    .premium-hero h1 {
        font-size: clamp(1.9rem, 12vw, 2.65rem) !important;
    }

    .premium-hero h2 {
        font-size: 1rem !important;
    }

    .premium-hero p {
        font-size: 0.97rem !important;
        line-height: 1.6 !important;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 420px) {
    .top-contact-info a {
        font-size: 0.92rem;
    }

    .header .logo img {
        height: 50px;
    }

    .search-container {
        max-width: 150px;
    }

    .premium-hero {
        padding: 74px 0 58px !important;
    }

    .premium-hero h1 {
        font-size: clamp(1.75rem, 11vw, 2.3rem) !important;
    }

    .premium-hero p,
    .page-hero p {
        font-size: 0.94rem !important;
    }

    .silo-section {
        padding: 60px 0 !important;
    }
}

.table-scroll {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden;
    }

    .table-scroll {
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        margin: 1.5rem 0;
    }

    .table-scroll>table {
        margin: 0 !important;
        width: max-content !important;
        min-width: 100% !important;
    }

    .table-scroll>table th,
    .table-scroll>table td {
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .g-recaptcha {
        transform: scale(0.92);
        transform-origin: left top;
        max-width: 100%;
    }
}

/* Shared Header Consistency */
@media (max-width: 1062px) {
    .header {
        padding: 10px 0;
    }

    .header .row {
        justify-content: space-between;
        align-items: center;
        gap: 14px;
    }

    .header .item-left {
        flex: 0 1 auto;
        min-width: 0;
    }

    .header .item-right {
        flex: 1 1 auto;
        max-width: 240px;
        min-width: 0;
        gap: 12px;
    }

    .header .logo img {
        height: 82px;
    }

    .search-container {
        margin-left: auto;
        max-width: 190px;
    }

    .header .mobile-menu-trigger {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        border-radius: 999px;
        border: 1px solid rgba(74, 49, 32, 0.1);
        background: var(--cream-light);
    }

    .header .menu {
        width: min(320px, 100%);
    }
}

@media (max-width: 600px) {
    .topbar {
        padding: 7px 0;
    }

    .top-contact-info {
        gap: 8px 14px;
    }

    .header .container {
        width: 92%;
    }

    .header .row {
        gap: 10px;
    }

    .header .logo img {
        height: 64px;
    }

    .header .item-right {
        flex: 0 1 auto;
        max-width: none;
    }

    .search-container {
        flex: 1 1 auto;
        max-width: min(44vw, 170px);
    }

    #searchInput {
        min-height: 40px;
    }
}

@media (max-width: 420px) {
    .top-contact-info {
        gap: 6px 10px;
    }

    .header .logo img {
        height: 54px;
    }

    .search-container {
        max-width: 132px;
    }

    .header .mobile-menu-trigger {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .header .mobile-menu-trigger span {
        width: 20px;
    }
}

/* Content Page Hero Refresh */
.page-hero {
    position: relative;
    padding: 96px 0 72px;
    background:
        radial-gradient(circle at top right, rgba(212, 162, 76, 0.28), transparent 34%),
        linear-gradient(135deg, rgba(44, 30, 22, 0.98), rgba(74, 49, 32, 0.9));
    color: var(--white);
    overflow: hidden;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.page-hero-copy {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 700px;
    margin-bottom: 1rem;
    color: var(--gold-light);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.05;
}

.page-hero p {
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.84);
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.page-hero-actions>a {
    min-width: 220px;
    min-height: 56px;
}

.page-hero-actions .btn-glow {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
}

.page-hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.page-hero-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

.page-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.page-hero-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 600;
}

.page-hero-card {
    position: relative;
    padding: 1.75rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 48px rgba(20, 14, 9, 0.25);
    backdrop-filter: blur(16px);
}

.page-hero-card-label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero-card strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--gold-light);
    font-size: clamp(2.6rem, 8vw, 4.4rem);
    line-height: 1;
    font-family: 'Sora', sans-serif;
}

.page-hero-card h2 {
    margin-bottom: 0.75rem;
    color: var(--white);
    font-size: 1.3rem;
}

.page-hero-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

@media (max-width: 1024px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-card {
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 84px 0 56px;
    }

    .page-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero-actions .btn-glow,
    .page-hero-link {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero-card {
        padding: 1.4rem;
    }

    .page-hero-card strong {
        font-size: 2.4rem;
    }
}

/* Quote Page Workspace */
.quote-page-section {
    padding-top: 70px;
}

.quote-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem;
    align-items: start;
}

.quote-page-copy {
    display: grid;
    gap: 1.35rem;
}

.quote-process-list {
    display: grid;
    gap: 1rem;
}

.quote-process-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.35rem;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(74, 49, 32, 0.08);
    box-shadow: var(--shadow-sm);
}

.quote-process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(212, 162, 76, 0.16);
    color: var(--gold);
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.quote-process-card h3 {
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.quote-process-card p {
    margin: 0;
    color: var(--text-secondary);
}

.quote-support-card {
    padding: 1.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(74, 49, 32, 0.98), rgba(138, 98, 64, 0.9));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.quote-support-eyebrow {
    display: inline-flex;
    margin-bottom: 0.85rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-support-card h3 {
    margin-bottom: 0.65rem;
    color: var(--white);
}

.quote-support-card p {
    color: rgba(255, 255, 255, 0.8);
}

.quote-support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}

.quote-support-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 600;
}

.quote-form-panel {
    padding: 1.75rem;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid rgba(74, 49, 32, 0.08);
    box-shadow: var(--shadow-md);
}

.quote-form-panel-head {
    margin-bottom: 1.35rem;
}

.quote-form-panel-eyebrow {
    display: inline-flex;
    margin-bottom: 0.8rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: var(--cream);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-form-panel-head h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.quote-form-panel-head p {
    color: var(--text-secondary);
}

.content-page .quote-form-panel .custom-packaging-form {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.content-page .quote-form-panel .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 0 !important;
}

.content-page .quote-form-panel .form-group--stacked .premium-input {
    margin-top: 10px;
    margin-bottom: 0;
}

.content-page .quote-form-panel .form-group input,
.content-page .quote-form-panel .form-group select,
.content-page .quote-form-panel .form-group textarea {
    background: var(--off-white);
}

@media (max-width: 1024px) {
    .quote-page-layout {
        grid-template-columns: 1fr;
    }

    .quote-form-panel {
        order: -1;
    }
}

@media (max-width: 767px) {
    .quote-page-section {
        padding-top: 56px;
    }

    .quote-process-card {
        flex-direction: column;
    }

    .quote-form-panel {
        padding: 1.3rem;
    }

    .quote-support-links {
        flex-direction: column;
    }

    .content-page .quote-form-panel .form-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem;
    }
}

/* Category Landing Hero */
.category-hero {
    position: relative;
    padding: 88px 0 72px;
    background:
        radial-gradient(circle at top right, rgba(212, 162, 76, 0.22), transparent 32%),
        linear-gradient(135deg, rgba(44, 30, 22, 0.98), rgba(74, 49, 32, 0.88));
    color: var(--white);
    overflow: hidden;
}

.category-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.category-hero-copy {
    max-width: 680px;
}

.category-hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-hero h1 {
    margin: 1rem 0 1rem;
    color: var(--gold);
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.98;
}

.category-hero p {
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
    line-height: 1.8;
}

.category-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.category-hero-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.category-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1.8rem;
}

.category-hero-primary.btn-glow {
    width: auto;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
}

.category-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.category-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.26);
}

.category-hero-visual {
    display: grid;
    gap: 1rem;
    justify-items: end;
}

.category-hero-image-card {
    width: min(100%, 430px);
    padding: 18px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(19, 12, 8, 0.32);
}

.category-hero-image-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px;
}

.category-hero-note {
    width: min(100%, 360px);
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.category-hero-note strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: 1rem;
}

.category-hero-note span {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    font-size: 0.95rem;
}

@media (max-width: 1280px) {
    .category-hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
        gap: 2rem;
    }

    .category-hero h1 {
        font-size: clamp(2.4rem, 5vw, 4.2rem);
    }

    .category-hero-image-card {
        width: min(100%, 390px);
    }
}

@media (max-width: 1140px) {
    .category-hero-shell {
        grid-template-columns: 1fr;
    }

    .category-hero-visual {
        justify-items: start;
    }

    .category-hero-image-card,
    .category-hero-note {
        width: min(100%, 560px);
    }
}

@media (max-width: 767px) {
    .product-card-overlay {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .material-table-section .container > div {
        padding: 28px 18px !important;
    }

    .material-table-section h2 {
        margin-bottom: 24px !important;
        font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
        line-height: 1.18 !important;
    }

    .material-table-section .container > div > div[style*="overflow-x:auto"] {
        overflow: visible !important;
    }

    .material-table-section table {
        width: 100% !important;
        min-width: 0 !important;
        display: block;
    }

    .material-table-section thead {
        display: none;
    }

    .material-table-section tbody {
        display: grid;
        gap: 14px;
    }

    .material-table-section tr {
        display: grid;
        gap: 0;
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
    }

    .material-table-section td {
        display: block;
        padding: 12px 16px !important;
        white-space: normal !important;
        border: 0 !important;
        font-size: 0.98rem;
        line-height: 1.45;
    }

    .material-table-section td + td {
        border-top: 1px solid #f0ece6 !important;
    }

    .material-table-section td::before {
        display: block;
        margin-bottom: 4px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--gold-dark);
    }

    .material-table-section td:nth-child(1)::before {
        content: 'Material Type';
    }

    .material-table-section td:nth-child(2)::before {
        content: 'Durability';
    }

    .material-table-section td:nth-child(3)::before {
        content: 'Eco-Friendly';
    }

    .material-table-section td:nth-child(4)::before {
        content: 'Recommended Use';
    }

    .material-table-section .container > div > div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-top: 36px !important;
    }

    .cms-value-props-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .cms-value-prop-card h4 {
        font-size: 1.5rem;
    }

    .cms-value-prop-card p {
        font-size: 1.05rem;
    }

    .category-hero {
        padding: 72px 0 56px;
    }

    .category-hero-shell {
        gap: 1.5rem;
    }

    .category-hero h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .category-hero p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .category-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .category-hero-primary.btn-glow,
    .category-hero-secondary {
        width: 100%;
        min-width: 0;
    }

    .category-hero-image-card {
        padding: 14px;
        border-radius: 24px;
    }

    .category-hero-image-card img {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }
}
/* === PHASE 3: DYNAMIC PRODUCT PAGES === */
.dynamic-product-hero {
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 35%),
    linear-gradient(180deg, #fff9f1 0%, #f6ede1 100%);
}

.dynamic-product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.dynamic-product-gallery,
.dynamic-product-copy,
.dynamic-product-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(44, 30, 22, 0.1);
}

.dynamic-product-gallery,
.dynamic-product-copy {
  padding: 22px;
}

.dynamic-product-main-frame {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf4, #f6ede1);
  min-height: 420px;
  display: grid;
  place-items: center;
}

.dynamic-product-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dynamic-product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.dynamic-thumb {
  border: 1px solid rgba(138, 98, 64, 0.18);
  background: #fff;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.dynamic-thumb.is-active {
  outline: 2px solid #d4af37;
}

.dynamic-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
}

.cms-static-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.cms-static-gallery-thumb {
  border: 1px solid rgba(138, 98, 64, 0.18);
  background: #fff;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cms-static-gallery-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 10px 24px rgba(44, 30, 22, 0.12);
}

.cms-static-gallery-thumb.is-active {
  outline: 2px solid #d4af37;
}

.cms-static-gallery-thumb img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.cms-value-props-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 30px !important;
  text-align: center;
  align-items: stretch;
}

.cms-value-prop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 8px 6px;
}

.cms-value-prop-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.cms-value-prop-card h4 {
  margin: 0 0 10px;
  color: var(--brown-dark);
  font-size: 1.9rem;
  line-height: 1.2;
}

.cms-value-prop-card p {
  margin: 0;
  color: #666;
  font-size: 1.3rem;
  line-height: 1.5;
  max-width: 24ch;
}

.dynamic-product-copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: #2c1e16;
}

.dynamic-product-summary {
  color: #6a5241;
  font-size: 1.05rem;
  line-height: 1.8;
}

.dynamic-product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.dynamic-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  color: #4a3120;
  border: 1px solid rgba(74, 49, 32, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.dynamic-product-bullets {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.dynamic-product-bullets div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a3120;
}

.dynamic-product-bullets i {
  color: #caa25f;
}

.dynamic-product-body,
.dynamic-product-quote-block {
  padding: 34px 0 64px;
}

.dynamic-product-body-grid,
.dynamic-quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.dynamic-product-panel {
  padding: 24px;
}

.dynamic-product-panel h2 {
  margin: 8px 0 14px;
  color: #2c1e16;
}

.dynamic-product-panel p {
  color: #654f40;
  line-height: 1.8;
}

.dynamic-spec-list {
  display: grid;
  gap: 12px;
}

.dynamic-spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(74, 49, 32, 0.08);
}

.dynamic-spec-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.dynamic-spec-list strong {
  color: #2c1e16;
}

@media (max-width: 991px) {
  .dynamic-product-grid,
  .dynamic-product-body-grid,
  .dynamic-quote-layout {
    grid-template-columns: 1fr;
  }

  .dynamic-product-main-frame {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .dynamic-product-hero {
    padding-top: 40px;
  }

  .dynamic-product-copy,
  .dynamic-product-gallery,
  .dynamic-product-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .dynamic-product-actions {
    flex-direction: column;
  }

  .dynamic-secondary-link,
  .dynamic-product-actions .nav-cta {
    width: 100%;
  }
}

@media (hover: none), (pointer: coarse) {
  .product-card-overlay {
    opacity: 0 !important;
    display: none !important;
    pointer-events: none !important;
    backdrop-filter: none !important;
  }

  .product-card:hover,
  .catalog-card:hover,
  .acc-slide-card:hover,
  .luxury-card:hover,
  .premium-card:hover,
  .mc-card:hover,
  .silo-card:hover,
  .premium-feature-card:hover,
  .premium-quote-card:hover,
  .inline-usp-card:hover,
  .advantage-card:hover,
  .why-us-feature-box:hover,
  .process-card:hover {
    transform: none !important;
  }

  .product-card:hover .product-card-img img,
  .catalog-card:hover .catalog-card-img img,
  .acc-slide-card:hover .acc-slide-img img,
  .luxury-card:hover .luxury-card-img,
  .mc-card:hover .mc-placeholder,
  .luxury-card:hover h3,
  .premium-feature-card:hover i,
  .advantage-card:hover .advantage-icon,
  .why-us-feature-box:hover i,
  .inline-usp-card:hover i,
  .process-card:hover i {
    transform: none !important;
    filter: none !important;
  }

  .product-card:hover .get-quote {
    gap: 8px !important;
  }

  .catalog-card:hover .catalog-arrow,
  .acc-slide-card:hover .acc-arrow {
    background: var(--cream) !important;
    color: var(--gold) !important;
  }

  .product-card,
  .catalog-card,
  .acc-slide-card,
  .luxury-card,
  .silo-card {
    -webkit-tap-highlight-color: rgba(44, 30, 22, 0.08);
  }
}



/* === FINAL FOOTER + MOBILE LISTING POLISH === */
footer.site-footer {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 32%),
    linear-gradient(180deg, #20140d 0%, #140c08 100%);
  position: relative;
}

footer.site-footer .footer-container {
  max-width: 1440px;
  padding: 0 24px;
}

footer.site-footer .footer-grid {
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 34px;
  align-items: stretch;
}

footer.site-footer .footer-brand,
footer.site-footer .footer-col {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  min-width: 0;
  overflow: hidden;
}

footer.site-footer .footer-brand::after {
  content: '';
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
  pointer-events: none;
}

footer.site-footer .footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

footer.site-footer .footer-brand .footer-logo img,
footer.site-footer .footer-logo img {
  height: 92px;
  width: auto;
  max-width: min(240px, 100%);
  object-fit: contain;
  margin-bottom: 0;
}

footer.site-footer .footer-about {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  max-width: 34ch;
}

footer.site-footer .footer-title {
  margin-bottom: 18px;
  font-size: 0.95rem;
  letter-spacing: 1.6px;
}

footer.site-footer .footer-col ul {
  display: grid;
  gap: 10px;
}

footer.site-footer .footer-col ul li {
  margin-bottom: 0;
}

footer.site-footer .footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.45;
}

footer.site-footer .footer-col ul li a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.8);
  flex: 0 0 6px;
}

footer.site-footer .footer-col ul li a:hover {
  color: #fff1bf;
  transform: translateX(4px);
}

footer.site-footer .payment-methods {
  margin-top: 0;
}

footer.site-footer .payment-methods .icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

footer.site-footer .payment-methods .icons i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

footer.site-footer .footer-cta-wrapper {
  margin-top: 24px !important;
}

footer.site-footer .footer-cta-wrapper .nav-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 14px 18px !important;
  border-radius: 18px !important;
}

footer.site-footer .footer-divider {
  margin: 0 0 24px;
  border-top-color: rgba(255, 255, 255, 0.09);
}

footer.site-footer .footer-bottom {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 26px;
  padding: 22px 24px;
  gap: 20px 28px;
}

footer.site-footer .contact-info {
  display: grid;
  gap: 12px;
}

footer.site-footer .contact-info p {
  margin-bottom: 0;
}

footer.site-footer .contact-info a {
  color: rgba(255, 255, 255, 0.92);
}

footer.site-footer .trust-icons {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

footer.site-footer .trust-icon-item {
  min-width: 126px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

footer.site-footer .copyright {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 1024px) {
  footer.site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer.site-footer .footer-brand {
    grid-column: 1 / -1;
  }

  footer.site-footer .trust-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  footer.site-footer {
    padding: 52px 0 28px;
  }

  footer.site-footer .footer-container {
    padding: 0 16px;
  }

  footer.site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  footer.site-footer .footer-brand,
  footer.site-footer .footer-col {
    padding: 22px 18px;
    border-radius: 22px;
  }

  footer.site-footer .footer-brand .footer-logo {
    margin-bottom: 16px;
    padding: 12px 14px;
  }

  footer.site-footer .footer-brand .footer-logo img,
  footer.site-footer .footer-logo img {
    height: 78px;
  }

  footer.site-footer .footer-about {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  footer.site-footer .payment-methods .icons {
    justify-content: flex-start;
  }

  footer.site-footer .footer-col ul li a:hover {
    transform: none;
  }

  footer.site-footer .footer-bottom {
    padding: 18px 16px;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  footer.site-footer .contact-info {
    width: 100%;
  }

  footer.site-footer .trust-icons {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: stretch;
  }

  footer.site-footer .trust-icon-item {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 767px) {
  main .catalog-grid,
  main .product-grid,
  main .featured-product-grid,
  main .luxury-grid,
  main .silo-grid,
  main .more-categories-grid,
  main .search-grid,
  main .seo-grid,
  main #listingGrid,
  main #productContainer {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    padding: 0 !important;
    align-items: stretch !important;
  }

  main .catalog-grid > *,
  main .product-grid > *,
  main .featured-product-grid > *,
  main .luxury-grid > *,
  main .silo-grid > *,
  main .more-categories-grid > *,
  main .search-grid > *,
  main .seo-grid > *,
  main #listingGrid > *,
  main #productContainer > * {
    min-width: 0;
  }

  main .catalog-card,
  main .product-card,
  main .luxury-card,
  main .silo-card {
    height: 100%;
  }

  main .catalog-card-img,
  main .product-card-img,
  main .silo-img,
  main .luxury-card-img {
    height: 146px !important;
  }

  main .catalog-card-body,
  main .product-card-body {
    padding: 14px 12px !important;
  }

  main .silo-content,
  main .luxury-card-content {
    padding: 12px !important;
  }

  main .catalog-card h3,
  main .product-card h3,
  main .silo-content h3,
  main .luxury-card-content h3 {
    font-size: 0.96rem !important;
    line-height: 1.3 !important;
    word-break: break-word;
  }

  main .catalog-card p,
  main .product-card p,
  main .silo-content p {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
  }

  main .product-category,
  main .catalog-product-count,
  main .get-quote,
  main .catalog-arrow,
  main .silo-content div[style*='Customize'] {
    font-size: 0.72rem !important;
    letter-spacing: 0.08em !important;
  }
}

@media (max-width: 420px) {
  main .catalog-card-img,
  main .product-card-img,
  main .silo-img,
  main .luxury-card-img {
    height: 132px !important;
  }

  main .catalog-card h3,
  main .product-card h3,
  main .silo-content h3,
  main .luxury-card-content h3 {
    font-size: 0.9rem !important;
  }
}

/* === PREMIUM UI & RESPONSIVENESS UPGRADE === */

/* Sticky Header: Fix background transparency & add premium blur */
.header {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Hero Typography: Better scaling for small screens */
.hero-center h1 {
    font-size: clamp(1.5rem, 7vw, 3rem) !important;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .hero-center h1 {
        font-size: clamp(1.4rem, 8vw, 2rem) !important;
    }
    .hero-desc {
        font-size: 1rem !important;
    }
}

/* Mobile Header: Prevent crowding */
@media (max-width: 480px) {
    .search-container {
        max-width: 120px !important;
    }
    .header .logo img {
        height: 48px !important;
    }
    .mobile-menu-trigger {
        font-size: 22px !important;
    }
}

/* Footer: Perfect stack for mobile */
@media (max-width: 600px) {
    .footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .footer-section h4 {
        margin-bottom: 15px !important;
    }
}

/* Topbar: Precise padding for mobile */
@media (max-width: 768px) {
    .top-contact-info {
        padding: 0 15px !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    .top-announcement {
        display: none !important; /* Hide announcement on very small screens to save space */
    }
}

/* Header Action Crowding */
@media (max-width: 480px) {
    .header .item-right {
        gap: 8px !important;
    }
    #searchInput {
        padding: 8px 10px !important;
        font-size: 13px !important;
    }
}

/* === FINAL FOOTER CONSOLIDATION === */
footer.site-footer .footer-grid {
    grid-template-columns: minmax(0, 1.7fr) repeat(4, minmax(0, 1fr));
}

footer.site-footer .footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer.site-footer .footer-contact-copy {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.75;
    margin: 0;
}

footer.site-footer .footer-contact-list {
    gap: 12px;
}

footer.site-footer .footer-contact-list .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

footer.site-footer .footer-contact-list .footer-contact-item i {
    color: #d4af37;
    font-size: 0.95rem;
    flex: 0 0 auto;
}

footer.site-footer .footer-contact-list .footer-contact-item a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    word-break: break-word;
}

footer.site-footer .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: center;
}

footer.site-footer .footer-meta-stack {
    min-width: 0;
}

footer.site-footer .copyright {
    margin-top: 0;
    line-height: 1.7;
}

@media (max-width: 1280px) {
    footer.site-footer .footer-grid {
        grid-template-columns: minmax(0, 1.45fr) repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    footer.site-footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    footer.site-footer .footer-brand,
    footer.site-footer .footer-contact-col {
        grid-column: 1 / -1;
    }

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

@media (max-width: 767px) {
    footer.site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    footer.site-footer .footer-brand,
    footer.site-footer .footer-contact-col {
        grid-column: auto;
    }

    footer.site-footer .footer-contact-list .footer-contact-item {
        padding: 11px 12px;
        border-radius: 14px;
    }

    footer.site-footer .footer-bottom {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    footer.site-footer .trust-icons {
        grid-template-columns: 1fr;
    }
}

/* === PREMIUM FOOTER REDESIGN === */

:root {
    --footer-bg: #1a110a;
    --footer-bg-soft: rgba(255, 255, 255, 0.04);
    --footer-bg-card: rgba(255, 255, 255, 0.03);
    --footer-text: rgba(255, 255, 255, 0.74);
    --footer-heading: #ffffff;
    --footer-accent: #d4af37;
    --footer-border: rgba(255, 255, 255, 0.08);
    --footer-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

footer.site-footer {
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 28%),
        linear-gradient(180deg, #20140d 0%, #140c08 100%);
    color: var(--footer-text);
    padding: 78px 0 36px;
    position: relative;
    overflow: hidden;
}

footer.site-footer .footer-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--footer-accent), transparent);
}

footer.site-footer .footer-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 22px;
}

footer.site-footer .footer-grid.footer-main-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 38px 42px;
    margin-bottom: 40px;
}

footer.site-footer .footer-section {
    padding: 10px 6px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

footer.site-footer .footer-brand {
    flex: 1 1 330px;
    max-width: 330px;
}

footer.site-footer .footer-col {
    flex: 0 1 210px;
    min-width: 190px;
}

footer.site-footer .footer-stack-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 210px;
}

footer.site-footer .footer-contact-col {
    flex: 1 1 290px;
    max-width: 320px;
}

footer.site-footer .footer-stack-block {
    display: flex;
    flex-direction: column;
}

footer.site-footer .footer-stack-subgroup {
    padding-top: 2px;
}

footer.site-footer .footer-brand::after {
    display: none;
}

footer.site-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin-bottom: 16px;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

footer.site-footer .footer-logo img {
    width: auto;
    height: 66px;
    max-width: min(240px, 100%);
    object-fit: contain;
}

footer.site-footer .footer-about {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.96rem;
    line-height: 1.8;
}

footer.site-footer .footer-title {
    color: var(--footer-heading);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin: 0 0 18px;
    position: relative;
    display: inline-block;
}

footer.site-footer .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 24px;
    height: 2px;
    background: var(--footer-accent);
    transition: width 0.3s ease;
}

footer.site-footer .footer-section:hover .footer-title::after {
    width: 40px;
}

footer.site-footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

footer.site-footer .footer-links li {
    margin: 0;
}

footer.site-footer .footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1.45;
    font-size: 0.92rem;
}

footer.site-footer .footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.8);
}

footer.site-footer .footer-links a:hover {
    color: var(--footer-accent);
    transform: translateX(6px);
}

footer.site-footer .payment-methods {
    margin-top: 10px;
}

footer.site-footer .payment-methods .icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

footer.site-footer .payment-methods .icons i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

footer.site-footer .footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer.site-footer .footer-contact-copy {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.8);
}

footer.site-footer .footer-cta-wrapper {
    margin-top: 4px;
}

footer.site-footer .footer-cta-wrapper .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
    border-radius: 18px;
}

footer.site-footer .footer-contact-list {
    display: grid;
    gap: 12px;
}

footer.site-footer .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 10px 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

footer.site-footer .footer-contact-item:last-child {
    border-bottom: none;
}

footer.site-footer .footer-contact-item i {
    color: var(--footer-accent);
    font-size: 0.96rem;
    flex: 0 0 auto;
}

footer.site-footer .footer-contact-item a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    word-break: break-word;
    transition: color 0.3s ease;
}

footer.site-footer .footer-contact-item a:hover {
    color: var(--footer-accent);
}

footer.site-footer .footer-divider {
    margin: 0 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

footer.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px 24px;
    padding: 8px 2px 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

footer.site-footer .footer-meta-stack {
    min-width: 0;
}

footer.site-footer .copyright {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
    font-size: 0.84rem;
}

footer.site-footer .trust-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

footer.site-footer .trust-icon-item {
    min-width: 0;
    padding: 10px 12px;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

footer.site-footer .trust-icon-item i {
    color: var(--footer-accent);
}

footer.site-footer .trust-icon-item .icon-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 1280px) {
    footer.site-footer .footer-grid.footer-main-grid {
        gap: 30px 26px;
    }
}

@media (max-width: 1024px) {
    footer.site-footer {
        padding: 62px 0 30px;
    }

    footer.site-footer .footer-section {
        padding: 0;
    }

    footer.site-footer .footer-brand,
    footer.site-footer .footer-contact-col {
        padding: 0;
    }

    footer.site-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 4px;
    }

    footer.site-footer .footer-brand,
    footer.site-footer .footer-contact-col {
        max-width: none;
    }

    footer.site-footer .trust-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    footer.site-footer .footer-container {
        padding: 0 16px;
    }

    footer.site-footer .footer-grid.footer-main-grid {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 25px;
    }

    footer.site-footer .footer-section {
        padding: 0;
        background: transparent !important;
        border: none !important;
    }

    footer.site-footer .footer-brand,
    footer.site-footer .footer-contact-col,
    footer.site-footer .footer-stack-col {
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: none;
        max-width: none;
    }

    footer.site-footer .footer-logo img {
        height: 60px;
    }

    footer.site-footer .footer-about,
    footer.site-footer .footer-contact-copy {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    footer.site-footer .footer-links a:hover {
        transform: none;
    }

    footer.site-footer .footer-bottom {
        padding: 4px 0 0;
        gap: 16px;
    }

    footer.site-footer .trust-icons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    footer.site-footer .trust-icon-item {
        width: 100%;
        min-width: 0;
    }
}

/* === FINAL LIVE READINESS OVERRIDES === */
footer.site-footer .footer-logo {
    align-items: flex-start;
}

footer.site-footer .footer-logo img {
    width: auto;
    height: auto;
    max-height: 82px;
    max-width: min(320px, 100%);
    object-fit: contain;
}

footer.site-footer .footer-stack-col .footer-stack-block + .footer-stack-block {
    margin-top: 12px;
}

@media (max-width: 1062px) {
    .header .item-left {
        flex: 1 1 auto;
    }

    .header .item-right {
        flex: 0 0 auto;
        gap: 10px;
    }

    .header .menu {
        width: min(88vw, 360px);
        box-shadow: 16px 0 42px rgba(44, 30, 22, 0.16);
    }

    .header .menu .mobile-menu-head {
        height: 58px;
    }

    .header .menu .mobile-menu-head .go-back,
    .header .menu .mobile-menu-head .mobile-menu-close {
        width: 58px;
        height: 58px;
        line-height: 58px;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        flex: 1 1 auto;
        padding: 0 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header .menu .menu-main {
        height: calc(100dvh - 58px);
        padding-bottom: 84px;
    }

    .header .menu > ul > li > a {
        min-height: 56px;
        height: auto;
        display: flex;
        align-items: center;
        padding: 0 52px 0 18px;
        font-size: 0.98rem;
    }

    .header .menu > ul > li > a i {
        width: 46px;
        height: 56px;
        line-height: 56px;
    }

    .header .menu > ul > li .sub-menu.mega-menu,
    .header .menu > ul > li .sub-menu {
        padding: 58px 0 24px;
        background: var(--white);
    }

    .header .menu > ul > li .sub-menu .list-item {
        padding: 0 18px 16px;
        border-bottom: 1px solid rgba(60, 36, 21, 0.08);
    }

    .header .menu > ul > li .sub-menu .list-item:last-child {
        border-bottom: 0;
    }

    .header .menu > ul > li .sub-menu .mega-menu-silo-link {
        display: flex;
        align-items: center;
        min-height: 46px;
        font-size: 0.95rem;
    }

    .header .menu > ul > li .sub-menu .list-item ul {
        display: block;
        padding-top: 6px;
    }

    .header .menu > ul > li .sub-menu .list-item li a {
        display: block;
        padding: 10px 0;
        font-size: 0.93rem;
        line-height: 1.45;
        border-bottom: 1px solid rgba(60, 36, 21, 0.08);
    }

    .header .menu > ul > li .sub-menu .list-item li:last-child a {
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .topbar {
        padding: 8px 0;
    }

    .top-contact-info {
        gap: 8px 14px !important;
    }

    .top-contact-info a,
    .top-announcement {
        font-size: 0.78rem;
    }

    .header {
        padding: 10px 0 6px;
    }

    .header .logo img {
        height: 54px !important;
    }

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

    footer.site-footer .footer-logo img {
        max-height: 62px;
        max-width: min(230px, 100%);
    }

    main div[style*="overflow-x:auto"] {
        overflow: visible !important;
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] {
        width: 100% !important;
        min-width: 0 !important;
        display: block;
        table-layout: auto !important;
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] thead {
        display: none;
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] tbody {
        display: grid;
        gap: 14px;
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] tr {
        display: grid;
        gap: 0;
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] td {
        display: block;
        padding: 12px 16px !important;
        white-space: normal !important;
        border: 0 !important;
        font-size: 0.98rem;
        line-height: 1.45;
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] td + td {
        border-top: 1px solid #f0ece6 !important;
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] td::before {
        display: block;
        margin-bottom: 4px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--gold-dark);
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] td:nth-child(1)::before {
        content: 'Material Type';
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] td:nth-child(2)::before {
        content: 'Durability';
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] td:nth-child(3)::before {
        content: 'Eco-Friendly';
    }

    main div[style*="overflow-x:auto"] > table[style*="min-width: 600px"] td:nth-child(4)::before {
        content: 'Recommended Use';
    }

    main div[style*="margin-top: 80px; display:grid; grid-template-columns: repeat(3, 1fr); gap:30px;"],
    main .container[style*="margin-top: 80px; display:grid; grid-template-columns: repeat(3, 1fr); gap:30px;"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-top: 36px !important;
    }
}

/* === ABSOLUTE FINAL MOBILE MENU / FOOTER OVERRIDES === */
@media (max-width: 767px) {
    .header {
        z-index: 1300 !important;
    }

    .mobile-search-trigger,
    .header .mobile-menu-trigger {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid rgba(60, 36, 21, 0.12) !important;
        border-radius: 999px !important;
        background: #fff !important;
        box-shadow: 0 8px 24px rgba(44, 30, 22, 0.08) !important;
        flex: 0 0 auto !important;
        padding: 0 !important;
    }

    .header .item-right {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 10px !important;
        flex: 0 0 auto !important;
        max-width: none !important;
    }

    .header .mobile-menu-trigger {
        margin-left: 0 !important;
    }

    .header .mobile-menu-trigger span {
        width: 18px !important;
        height: 2px !important;
    }

    .header .mobile-menu-trigger span::before {
        top: -6px !important;
    }

    .header .mobile-menu-trigger span::after {
        top: 6px !important;
    }

    .search-container {
        display: none !important;
        max-width: none !important;
    }

    .header.mobile-search-active .search-container {
        display: block !important;
        position: absolute !important;
        top: calc(100% + 10px) !important;
        right: 0 !important;
        width: min(280px, calc(100vw - 32px)) !important;
        padding: 10px !important;
        background: #fff !important;
        border: 1px solid rgba(60, 36, 21, 0.12) !important;
        border-radius: 18px !important;
        box-shadow: 0 16px 30px rgba(44, 30, 22, 0.12) !important;
        z-index: 1405 !important;
    }

    .header.mobile-search-active #searchInput {
        min-height: 44px !important;
        padding-right: 42px !important;
        border-radius: 14px !important;
    }

    .header.mobile-search-active .search-icon {
        right: 24px !important;
        font-size: 1rem !important;
    }

    .menu-overlay {
        inset: 0 !important;
        background: rgba(20, 12, 8, 0.58) !important;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 1390 !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
    }

    .header .menu {
        position: fixed !important;
        inset: 0 auto 0 0 !important;
        width: min(88vw, 360px) !important;
        max-width: 360px !important;
        height: 100dvh !important;
        background: #fff !important;
        box-shadow: 22px 0 48px rgba(20, 12, 8, 0.18) !important;
        transform: translateX(-104%) !important;
        transition: transform 0.34s ease, box-shadow 0.34s ease !important;
        overflow: hidden !important;
        z-index: 1400 !important;
    }

    .header .menu.active {
        transform: translateX(0) !important;
    }

    .header .menu .mobile-menu-head {
        position: relative !important;
        z-index: 3 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 56px !important;
        background: #fff !important;
    }

    .header .menu .mobile-menu-head .go-back,
    .header .menu .mobile-menu-head .mobile-menu-close {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 56px !important;
        height: 56px !important;
        line-height: 1 !important;
        background: #fff !important;
        color: var(--text-primary) !important;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        flex: 1 1 auto !important;
        padding: 0 10px !important;
        font-size: 0.92rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .header .menu .menu-main {
        position: relative !important;
        height: calc(100dvh - 56px) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        background: #fff !important;
    }

    .header .menu > ul > li {
        position: static !important;
    }

    .header .menu > ul > li > a {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        min-height: 54px !important;
        padding: 0 48px 0 18px !important;
        background: #fff !important;
    }

    .header .menu > ul > li > a i {
        width: 46px !important;
        height: 54px !important;
        line-height: 54px !important;
    }

    .header .menu > ul > li .sub-menu.mega-menu,
    .header .menu > ul > li .sub-menu {
        position: absolute !important;
        top: 56px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100dvh - 56px) !important;
        min-height: calc(100dvh - 56px) !important;
        margin: 0 !important;
        padding: 0 0 24px !important;
        background: #fff !important;
        display: block !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(18px) !important;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0s linear 0.28s !important;
        z-index: 2 !important;
        overflow-y: auto !important;
    }

    .header .menu > ul > li .sub-menu.active {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
        transition-delay: 0s !important;
    }

    .header .menu > ul > li .sub-menu .list-item {
        padding: 0 18px 16px !important;
        border-bottom: 1px solid rgba(60, 36, 21, 0.08) !important;
        background: #fff !important;
    }

    .header .menu > ul > li .sub-menu .list-item:last-child {
        border-bottom: 0 !important;
    }

    body.menu-open .header .mobile-menu-trigger,
    body.menu-open .header .mobile-search-trigger {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: scale(0.9) !important;
    }

    footer.site-footer {
        padding: 48px 0 28px !important;
    }

    footer.site-footer .footer-container {
        padding: 0 18px !important;
    }

    footer.site-footer .footer-grid.footer-main-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 26px 18px !important;
        align-items: start !important;
        margin-bottom: 24px !important;
    }

    footer.site-footer .footer-brand {
        grid-column: 1 / -1 !important;
        text-align: center !important;
        max-width: none !important;
    }

    footer.site-footer .footer-logo,
    footer.site-footer .payment-methods,
    footer.site-footer .payment-methods .icons {
        justify-content: center !important;
    }

    footer.site-footer .footer-logo img {
        max-height: 70px !important;
        max-width: min(260px, 100%) !important;
    }

    footer.site-footer .footer-about {
        max-width: 32rem !important;
        margin: 0 auto 20px !important;
        text-align: center !important;
    }

    footer.site-footer .footer-col,
    footer.site-footer .footer-stack-col,
    footer.site-footer .footer-contact-col {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    footer.site-footer .footer-stack-col {
        gap: 18px !important;
    }

    footer.site-footer .footer-links {
        gap: 10px !important;
    }

    footer.site-footer .footer-links a {
        display: flex !important;
        width: 100% !important;
        transform: none !important;
    }

    footer.site-footer .footer-contact-col {
        grid-column: 1 / -1 !important;
    }

    footer.site-footer .footer-contact-copy {
        text-align: left !important;
    }

    footer.site-footer .footer-cta-wrapper {
        display: flex !important;
        justify-content: flex-start !important;
    }

    footer.site-footer .footer-cta-wrapper .nav-cta {
        width: auto !important;
        min-width: 200px !important;
    }

    footer.site-footer .footer-bottom {
        text-align: center !important;
        align-items: center !important;
    }

    footer.site-footer .footer-meta-stack,
    footer.site-footer .copyright {
        width: 100% !important;
        text-align: center !important;
    }

    footer.site-footer .trust-icons {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 12px !important;
        width: 100% !important;
    }

    footer.site-footer .trust-icon-item {
        width: 100% !important;
        flex-direction: column !important;
        gap: 6px !important;
        align-items: center !important;
        padding: 10px 6px !important;
        text-align: center !important;
    }
}

@media (max-width: 479px) {
    footer.site-footer .footer-grid.footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    footer.site-footer .footer-contact-col {
        grid-column: auto !important;
    }

    footer.site-footer .footer-cta-wrapper {
        justify-content: center !important;
    }

    footer.site-footer .trust-icons {
        grid-template-columns: 1fr !important;
    }
}

/* === FINAL LIVE MOBILE OVERRIDES === */
@media (max-width: 767px) {
    .mobile-search-trigger,
    .header .mobile-menu-trigger {
        display: inline-flex !important;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(60, 36, 21, 0.12);
        border-radius: 999px;
        background: #fff;
        box-shadow: 0 8px 24px rgba(44, 30, 22, 0.08);
        flex: 0 0 auto;
    }

    .header .item-right {
        gap: 10px;
    }

    .header .mobile-menu-trigger {
        margin-left: 0;
    }

    .header .mobile-menu-trigger span {
        width: 18px;
        height: 2px;
    }

    .header .mobile-menu-trigger span::before {
        top: -6px;
    }

    .header .mobile-menu-trigger span::after {
        top: 6px;
    }

    .search-container {
        display: none !important;
        max-width: none !important;
    }

    .header.mobile-search-active .search-container {
        display: block !important;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(280px, calc(100vw - 32px));
        padding: 10px;
        background: #fff;
        border: 1px solid rgba(60, 36, 21, 0.12);
        border-radius: 18px;
        box-shadow: 0 16px 30px rgba(44, 30, 22, 0.12);
        z-index: 1201;
    }

    .header.mobile-search-active #searchInput {
        min-height: 44px;
        padding-right: 42px;
        border-radius: 14px;
    }

    .header.mobile-search-active .search-icon {
        right: 24px;
        font-size: 1rem;
    }

    .header .menu {
        top: 0;
        width: min(88vw, 360px);
        max-width: 360px;
    }

    .header .menu .mobile-menu-head {
        height: 56px;
    }

    .header .menu .mobile-menu-head .go-back,
    .header .menu .mobile-menu-head .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        line-height: 1;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        padding: 0 10px;
        font-size: 0.92rem;
    }

    .header .menu > ul > li > a {
        min-height: 54px;
        padding-left: 18px;
        padding-right: 48px;
    }

    footer.site-footer {
        padding: 48px 0 28px;
    }

    footer.site-footer .footer-container {
        padding: 0 18px;
    }

    footer.site-footer .footer-grid.footer-main-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 18px;
        align-items: start;
        margin-bottom: 24px;
    }

    footer.site-footer .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: none;
    }

    footer.site-footer .footer-logo,
    footer.site-footer .payment-methods,
    footer.site-footer .payment-methods .icons {
        justify-content: center;
    }

    footer.site-footer .footer-logo img {
        max-height: 70px;
        max-width: min(260px, 100%);
    }

    footer.site-footer .footer-about {
        max-width: 32rem;
        margin: 0 auto 20px;
        text-align: center;
    }

    footer.site-footer .footer-col,
    footer.site-footer .footer-stack-col,
    footer.site-footer .footer-contact-col {
        width: 100%;
        min-width: 0;
    }

    footer.site-footer .footer-stack-col {
        gap: 18px;
    }

    footer.site-footer .footer-title {
        margin-bottom: 16px;
    }

    footer.site-footer .footer-links {
        gap: 10px;
    }

    footer.site-footer .footer-links a {
        display: flex;
        width: 100%;
        transform: none !important;
    }

    footer.site-footer .footer-contact-col {
        grid-column: 1 / -1;
    }

    footer.site-footer .footer-contact-copy {
        text-align: left;
    }

    footer.site-footer .footer-cta-wrapper {
        display: flex;
        justify-content: flex-start;
    }

    footer.site-footer .footer-cta-wrapper .nav-cta {
        width: auto;
        min-width: 200px;
    }

    footer.site-footer .footer-contact-item {
        padding: 10px 0;
    }

    footer.site-footer .footer-contact-item a {
        overflow-wrap: anywhere;
    }

    footer.site-footer .footer-bottom {
        text-align: center;
        align-items: center;
    }

    footer.site-footer .footer-meta-stack,
    footer.site-footer .copyright {
        width: 100%;
        text-align: center;
    }

    footer.site-footer .trust-icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    footer.site-footer .trust-icon-item {
        width: 100%;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        padding: 10px 6px;
        text-align: center;
    }
}

@media (max-width: 479px) {
    footer.site-footer .footer-grid.footer-main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    footer.site-footer .footer-contact-col {
        grid-column: auto;
    }

    footer.site-footer .footer-cta-wrapper {
        justify-content: center;
    }

    footer.site-footer .trust-icons {
        grid-template-columns: 1fr;
    }
}
