

/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
}

a {
    text-decoration: none;
}

.db-container {
    width: 92%;
    max-width: 1240px;
    margin: auto;
}

.db-section {
    padding: 80px 0;
}

.db-section-light {
    background: #f7f7f7;
}

.db-red {
    color: #d71920;
}

.db-section-heading {
    margin-bottom: 45px;
}

.db-section-heading .small-title {
    color: #d71920;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.db-section-heading h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 14px;
    color: #151515;
}

.db-section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.7;
}

/* Main parent container for all three logos */
.db-logo-container {
    display: inline-flex;
    align-items: center;    /* Keeps all three logos centered vertically along a horizontal axis */
    gap: 16px;              /* Spacing between the main logo and the smaller badges group */
    text-decoration: none;
    vertical-align: middle;
}

/* Secondary wrapper containing your two smaller logos side-by-side */
.db-brand-badges {
    display: flex;
    align-items: center;
    gap: 12px;              /* Horizontal space separating the two smaller logos */
}

/* Fixes scaling rules so sub-brands look balanced next to the large logo */
.db-brand-badges img {
    object-fit: contain;
    display: block;
    height: 45px;           /* Adjust this value to make the two smaller logos bigger or smaller */
    width: auto;
}

.db-main-logo {
    display: block;
    object-fit: contain;
    height: 65px;
    width: auto;
}

/* =========================================================
   MOBILE LOGO & HEADER FIX (< 768px)
========================================================= */
@media (max-width: 767px) {
    /* Ensure header container aligns logo on left & hamburger on right */
    .db-header-inner {
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
    }

    /* Restrain logo container width to reserve space for the hamburger icon */
    .db-logo-container {
        gap: 8px; /* Tighter gap between main logo and badges */
        max-width: calc(100% - 40px); /* Leaves space on the right for hamburger */
    }

    /* Scale down main logo for mobile screens */
    .db-main-logo {
        height: 36px; /* Scaled down from 65px */
        width: auto;
    }

    /* Align Heat & Pack badges side-by-side smoothly */
    .db-brand-badges {
        display: flex;
        align-items: center;
        gap: 5px; /* Tighter gap between the two badges */
    }

    /* Scaled-down badges */
    .db-brand-badges img {
        height: 22px; /* Scaled down from 45px */
        width: auto;
    }
}


/* =========================================================
   HEADER
========================================================= */

.db-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
}

.db-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.db-logo img {
    max-width: 190px;
    height: auto;
    display: block;
}

.db-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.db-nav > a,
.db-nav .dropdown > a {
    color: #222;
    font-size: 13px;
    font-weight: 700;
    transition: .25s ease;
}

.db-nav > a:hover,
.db-nav .dropdown > a:hover {
    color: #d71920;
}

.db-nav .dropdown {
    position: relative;
}

.db-nav .dropdown-menu {
    min-width: 220px;
    padding: 10px 0;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.db-nav .dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #333;
    font-size: 13px;
}

.db-nav .dropdown-menu a:hover {
    background: #f7f7f7;
    color: #d71920;
}

.db-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 19px;
    background: #d71920;
    color: #fff !important;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 800;
    transition: .25s ease;
}

.db-header-btn:hover {
    background: #b91218;
    color: #fff;
}

/* Mobile hamburger menu */
.db-mobile-toggle {
    display: none;
    border: 0;
    background: #111;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 3px;
    font-size: 18px;
    cursor: pointer;
}

.db-mobile-menu {
    display: none;
    position: relative;
    z-index: 1000;
    background: #fff;
}

.db-mobile-menu.open {
    display: block;
}

.db-mobile-menu-inner {
    width: 92%;
    margin: 0 auto;
    padding: 8px 0 15px;
    border-top: 1px solid #eee;
}

.db-mobile-menu a {
    display: block;
    padding: 10px 4px;
    color: #222;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid #f1f1f1;
}

.db-mobile-menu .mobile-sub {
    padding-left: 18px;
    font-size: 12px;
    font-weight: 500;
}

/* =========================================================
   HERO SLIDER
========================================================= */

.db-hero {
    position: relative;
    width: 100%;
    height: 33.854vw;
    min-height: 0;
    overflow: hidden;
    background: #111;
}

.db-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
}

.db-slide.active {
    opacity: 1;
    visibility: visible;
}

.db-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #111;
}

.db-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.97) 0%,
            rgba(255,255,255,.90) 30%,
            rgba(255,255,255,.50) 53%,
            rgba(255,255,255,0) 75%
        );
}

.db-hero-content {
    position: relative;
    z-index: 3;
    max-width: 520px;
    margin-left: 0;
    padding-left: 3%;
    padding-top: 90px;
}

.db-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d71920;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.db-eyebrow:before {
    content: "";
    width: 30px;
    height: 2px;
    background: #d71920;
    display: inline-block;
}

.db-hero h1 {
    font-size: 54px;
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 800;
    color: #111;
    margin: 0 0 20px;
}

.db-hero-text {
    max-width: 550px;
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 25px;
}

.db-hero-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.db-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 19px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 800;
    transition: .25s ease;
}

.db-btn-primary {
    background: #d71920;
    color: #fff;
}

.db-btn-primary:hover {
    background: #b91218;
    color: #fff;
}

.db-btn-outline {
    background: #fff;
    color: #222;
    border: 1px solid #ccc;
}

.db-btn-outline:hover {
    border-color: #222;
    color: #111;
}

.db-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0,0,0,.15);
    background: rgba(255,255,255,.9);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s ease;
}

.db-slider-arrow:hover {
    background: #d71920;
    color: #fff;
    border-color: #d71920;
}

.db-slider-prev {
    left: 25px;
}

.db-slider-next {
    right: 25px;
}

.db-slider-controls {
    position: absolute;
    z-index: 20;
    right: 5%;
    bottom: 25px;
    display: flex;
    gap: 6px;
}

.db-slider-dot {
    width: 22px;
    height: 4px;
    background: rgba(0,0,0,.25);
    cursor: pointer;
    transition: .25s ease;
}

.db-slider-dot.active {
    width: 35px;
    background: #d71920;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.db-trust {
    border-bottom: 1px solid #eee;
    background: #fff;
}

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

.db-trust-item {
    padding: 25px 20px;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.db-trust-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d71920;
    border-radius: 50%;
}

.db-trust-item strong {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}

.db-trust-item span {
    display: block;
    color: #777;
    font-size: 11px;
}


/* =========================================================
   INTRO
========================================================= */

.db-intro {
    padding: 90px 0;
}

.db-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.db-intro-image img {
    width: 100%;
    display: block;
}

.db-intro-content .small-title {
    color: #d71920;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.db-intro-content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 800;
}

.db-intro-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.db-intro-list {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.db-intro-list div {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.db-intro-list i {
    color: #d71920;
    margin-right: 7px;
}


/* =========================================================
   CATEGORY CARDS
========================================================= */

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

.db-category-card {
    position: relative;
    background: #fff;
    border: 1px solid #e7e7e7;
    padding: 28px 24px;
    min-height: 220px;
    transition: .3s ease;
}

.db-category-card:hover {
    transform: translateY(-5px);
    border-color: #d71920;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.db-category-card .icon {
    width: 48px;
    height: 48px;
    background: #f8e8e9;
    color: #d71920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 22px;
}

.db-category-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 800;
}

.db-category-card p {
    color: #777;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.db-category-card a {
    display: inline-block;
    margin-top: 18px;
    color: #d71920;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
}


/* =========================================================
   HEATING RANGE
========================================================= */

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

.db-product-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    overflow: hidden;
    transition: .3s ease;
}

.db-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.db-product-image {
    height: 400px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.db-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.db-product-content {
    padding: 20px;
}

.db-product-content h3 {
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 800;
}

.db-product-content p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   PACKAGING
========================================================= */

.db-packaging {
    background: #151515;
    color: #fff;
}

.db-packaging-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.db-packaging-content .small-title {
    color: #e5232a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.db-packaging-content h2 {
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 800;
}

.db-packaging-content p {
    color: #bbb;
    line-height: 1.8;
}

.db-packaging-list {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.db-packaging-list li {
    padding: 9px 0;
    color: #ddd;
    font-size: 13px;
}

.db-packaging-list i {
    color: #e5232a;
    margin-right: 9px;
}

.db-packaging-image {
    position: relative;
}

.db-packaging-image img {
    width: 100%;
    display: block;
}


/* =========================================================
   WHY US
========================================================= */

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

.db-why-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #e7e7e7;
}

.db-why-card .icon {
    color: #d71920;
    font-size: 24px;
    margin-bottom: 18px;
}

.db-why-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 800;
}

.db-why-card p {
    color: #777;
    line-height: 1.7;
    font-size: 12px;
    margin: 0;
}


/* =========================================================
   LOCAL SEO
========================================================= */

.db-local {
    background: #f7f7f7;
}

.db-local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.db-local h2 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 18px;
    font-weight: 800;
}

.db-local p {
    color: #666;
    line-height: 1.8;
}

.db-local-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.db-local-keywords span {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 11px;
    font-size: 11px;
    color: #555;
}

.db-local-contact {
    background: #fff;
    padding: 35px;
    border-left: 4px solid #d71920;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.db-local-contact h3 {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 800;
}

.db-local-contact p {
    margin: 0 0 10px;
    font-size: 13px;
}

.db-local-contact i {
    color: #d71920;
    width: 22px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.db-cta {
    background: #d71920;
    padding: 60px 0;
    color: #fff;
}

.db-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.db-cta h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
}

.db-cta p {
    margin: 0;
    color: rgba(255,255,255,.85);
}

.db-cta .db-btn {
    background: #fff;
    color: #d71920;
    white-space: nowrap;
}

.db-cta .db-btn:hover {
    background: #f4f4f4;
    color: #b91218;
}


/* =========================================================
   FOOTER
========================================================= */

.db-footer {
    background: #111;
    color: #aaa;
    padding: 60px 0 25px;
}

.db-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 40px;
}

.db-footer-logo img {
    max-width: 170px;
    margin-bottom: 18px;
}

.db-footer p {
    color: #999;
    font-size: 12px;
    line-height: 1.8;
}

.db-footer h4 {
    color: #fff;
    font-size: 14px;
    margin: 0 0 18px;
    font-weight: 800;
}

.db-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.db-footer li {
    margin-bottom: 9px;
}

.db-footer li a {
    color: #999;
    font-size: 12px;
    transition: .25s ease;
}

.db-footer li a:hover {
    color: #fff;
}

.db-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #292929;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 11px;
}


/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.db-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

.db-whatsapp img {
    width: 31px;
    height: 31px;
    object-fit: contain;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .db-nav {
        gap: 14px;
    }

    .db-header-btn {
        padding: 10px 13px;
    }

    .db-hero h1 {
        font-size: 44px;
    }

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

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

    .db-trust-item:nth-child(2) {
        border-right: 0;
    }

    .db-trust-item:nth-child(-n+2) {
        border-bottom: 1px solid #eee;
    }

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


/* =========================================================
   MOBILE
   BANNERS = 1920 x 650
========================================================= */

@media (max-width: 767px) {


    /* =====================================================
       HERO
    ===================================================== */

    .db-hero {
        height: 33.854vw;
        min-height: 0;
        max-height: none;
        overflow: hidden;
        background: #111;
    }

    .db-slide-image {
        object-fit: contain;
        object-position: center center;
        background: #111;
    }

    .db-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,.97) 0%,
                rgba(255,255,255,.88) 28%,
                rgba(255,255,255,.35) 48%,
                rgba(255,255,255,0) 70%
            );
    }


    /* =====================================================
       HERO CONTENT
       COMPACT VERSION FOR VERY SHORT 1920x650 BANNER
    ===================================================== */

    .db-hero-content {
        position: relative;
        z-index: 3;
        width: 92%;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-top: 5px;
        height: 100%;
    }

    .db-eyebrow {
        font-size: 6px;
        letter-spacing: .9px;
        margin-bottom: 2px;
        gap: 3px;
        line-height: 1;
    }

    .db-eyebrow:before {
        width: 11px;
        height: 1px;
    }

    .db-hero h1 {
        font-size: 15px;
        line-height: 1;
        letter-spacing: -.4px;
        margin: 0 0 3px;
        max-width: 52%;
    }

    .db-hero-text {
        max-width: 47%;
        font-size: 6px;
        line-height: 1.25;
        margin: 0 0 4px;
    }

    .db-hero-buttons {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-wrap: nowrap;
    }

    .db-btn {
        padding: 4px 6px;
        font-size: 5.5px;
        line-height: 1;
        gap: 3px;
        border-radius: 2px;
        white-space: nowrap;
    }


    /* =====================================================
       CAROUSEL CONTROLS
       KEEP THEM CLEAR OF BUTTONS
    ===================================================== */

    .db-slider-arrow {
        display: none;
    }

    .db-slider-controls {
        position: absolute;
        left: 50%;
        right: auto;
        bottom: 3px;
        transform: translateX(-50%);
        gap: 3px;
    }

    .db-slider-dot {
        width: 12px;
        height: 2px;
    }

    .db-slider-dot.active {
        width: 20px;
    }


    /* =====================================================
       HEADER
    ===================================================== */

    .db-header-inner {
        min-height: 65px;
    }

    .db-logo img {
        max-width: 145px;
    }

    .db-nav {
        display: none;
    }
.db-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}


    /* =====================================================
       GENERAL
    ===================================================== */

    .db-section {
        padding: 55px 0;
    }

    .db-section-heading {
        margin-bottom: 30px;
    }

    .db-section-heading h2 {
        font-size: 29px;
    }


    /* =====================================================
       TRUST
    ===================================================== */

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

    .db-trust-item {
        padding: 18px 12px;
        gap: 9px;
    }

    .db-trust-icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        font-size: 12px;
    }

    .db-trust-item strong {
        font-size: 10px;
    }

    .db-trust-item span {
        font-size: 9px;
    }


    /* =====================================================
       INTRO
    ===================================================== */

    .db-intro {
        padding: 55px 0;
    }

    .db-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .db-intro-content h2 {
        font-size: 30px;
    }

    .db-intro-list {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       CATEGORY
    ===================================================== */

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

    .db-category-card {
        padding: 20px 15px;
        min-height: 190px;
    }

    .db-category-card .icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .db-category-card h3 {
        font-size: 15px;
    }

    .db-category-card p {
        font-size: 10px;
    }


    /* =====================================================
       PRODUCTS
    ===================================================== */

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

    .db-product-image {
        height: 140px;
    }

    .db-product-content {
        padding: 14px;
    }

    .db-product-content h3 {
        font-size: 13px;
    }

    .db-product-content p {
        font-size: 10px;
    }


    /* =====================================================
       PACKAGING
    ===================================================== */

    .db-packaging-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .db-packaging-content h2 {
        font-size: 30px;
    }


    /* =====================================================
       WHY
    ===================================================== */

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


    /* =====================================================
       LOCAL
    ===================================================== */

    .db-local-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .db-local h2 {
        font-size: 29px;
    }

    .db-local-contact {
        padding: 25px;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .db-cta {
        padding: 45px 0;
    }

    .db-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .db-cta h2 {
        font-size: 27px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .db-footer {
        padding: 45px 0 20px;
    }

    .db-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .db-footer-bottom {
        flex-direction: column;
    }


    /* =====================================================
       WHATSAPP
    ===================================================== */

    .db-whatsapp {
        width: 46px;
        height: 46px;
        right: 14px;
        bottom: 14px;
    }

    .db-whatsapp img {
        width: 27px;
        height: 27px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .db-category-grid,
    .db-product-grid {
        grid-template-columns: 1fr;
    }

    .db-hero-content {
        width: 94%;
        padding-top: 4px;
    }

    .db-hero h1 {
        font-size: 14px;
    }

    .db-hero-text {
        font-size: 5.5px;
        max-width: 48%;
        margin-bottom: 3px;
    }

    .db-btn {
        padding: 3px 5px;
        font-size: 5px;
    }

    .db-slider-controls {
        bottom: 2px;
    }

}
