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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.6;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

/* =========================
   Top Announcement Bar
========================= */

.top-announcement{
    width:100%;
    background:#f8fbfb;
    border-bottom:1px solid #e3eeee;
}

.top-announcement-inner{
    min-height:34px;
    padding:6px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    color:#364647;
    font-size:13px;
    font-weight:500;
    letter-spacing:.2px;
    line-height:1.2;
}

.top-announcement-inner span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;
}

.top-announcement-inner i{
    color:#087f86;
    font-size:12px;
}

.top-divider{
    width:1px;
    height:13px;
    background:#bac8c9;
    display:block;
}

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

header{
    width:100%;
    position:sticky;
    top:0;
    background:#ffffff;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.nav{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding:16px 0;
}

.logo{
    flex-shrink:0;
}

.logo a{
    display:block;
}

.logo img{
    display:block;
    width:auto;
    height:60px;
}

nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:27px;
}

nav > a{
    position:relative;
    color:#222222;
    font-family:inherit;
    font-size:16px;
    font-weight:500;
    text-decoration:none;
    transition:color .3s ease;
}

nav > a:not(.header-shop-btn)::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background:#0f6f73;
    transition:width .3s ease;
}

nav > a:not(.header-shop-btn):hover{
    color:#0f6f73;
}

nav > a:not(.header-shop-btn):hover::after{
    width:100%;
}

/* =====================================
   CATEGORIES NAVIGATION
===================================== */

.nav-dropdown{
    position:relative;
}

.dropdown-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.categories-page-link{
    position:relative;
    color:#222222;
    font-family:inherit;
    font-size:16px;
    font-weight:500;
    line-height:1;
    text-decoration:none;
    transition:color .3s ease;
}

.categories-page-link:visited{
    color:#222222;
}

.categories-page-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background:#0f6f73;
    transition:width .3s ease;
}

.categories-page-link:hover{
    color:#0f6f73;
}

.categories-page-link:hover::after{
    width:100%;
}

.dropdown-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:3px;
    margin:0;
    color:#222222;
    background:transparent;
    border:0;
    font-family:inherit;
    line-height:1;
    cursor:pointer;
}

.dropdown-toggle i{
    display:block;
    font-size:10px;
    transition:transform .3s ease;
}

.nav-dropdown.active .dropdown-toggle i{
    transform:rotate(180deg);
}

/* =====================================
   CATEGORIES DROPDOWN
===================================== */

.dropdown-menu{
    position:absolute;
    top:calc(100% + 22px);
    left:50%;
    width:265px;
    padding:12px;
    background:#ffffff;
    border:1px solid #edf0f0;
    border-radius:14px;
    box-shadow:0 18px 45px rgba(0,0,0,.14);
    opacity:0;
    visibility:hidden;
    transform:translate(-50%,10px);
    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}

.dropdown-menu::before{
    content:"";
    position:absolute;
    top:-7px;
    left:50%;
    width:14px;
    height:14px;
    background:#ffffff;
    border-top:1px solid #edf0f0;
    border-left:1px solid #edf0f0;
    transform:translateX(-50%) rotate(45deg);
}

.nav-dropdown.active .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,0);
}

.dropdown-menu a{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    gap:12px;
    padding:11px 13px;
    border-radius:9px;
    color:#333333;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
    transition:
        color .25s ease,
        background .25s ease,
        padding-left .25s ease;
}

.dropdown-menu a i{
    width:20px;
    color:#0f6f73;
    text-align:center;
}

.dropdown-menu a:hover{
    padding-left:17px;
    color:#0f6f73;
    background:#eef8f7;
}
/* Header Shop Button */

nav .header-shop-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:11px 20px;
    border-radius:30px;
    background:#0f6f73;
    color:#ffffff;
    white-space:nowrap;
    box-shadow:0 7px 18px rgba(15,111,115,.20);
}

nav .header-shop-btn:hover{
    background:#09575a;
    color:#ffffff;
    transform:translateY(-2px);
}

/* Mobile Menu Button */

.menu-toggle{
    display:none;
    border:0;
    background:none;
    font-size:27px;
    cursor:pointer;
    color:#222;
}

/* Hero */

.hero{
    padding:50px 0 70px;
    background:linear-gradient(135deg,#f8fcfb 0%,#edf7f6 100%);
    border-top:1px solid #eef2f3;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    color:#666;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:15px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.primary{
    background:#0f6f73;
    color:#fff;
}

.primary:hover{
    background:#09575a;
}

.secondary{
    border:2px solid #0f6f73;
    color:#0f6f73;
}

.secondary:hover{
    background:#0f6f73;
    color:#fff;
}

.hero-image{
    flex:1.2;
    min-width:0;
}

.hero-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
}

/* =========================
   About Hero
========================= */

.about-hero{
    padding:75px 0;
    background:linear-gradient(135deg,#f8fcfb 0%,#edf7f6 100%);
    border-top:1px solid #eef2f3;
}

.about-hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.about-hero-text{
    flex:1;
}

.about-label{
    display:inline-block;
    margin-bottom:14px;
    color:#0f7f84;
    font-size:14px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.about-hero-text h1{
    max-width:620px;
    margin-bottom:20px;
    font-size:46px;
    line-height:1.15;
    font-weight:700;
}

.about-hero-text p{
    max-width:600px;
    margin-bottom:34px;
    color:#5f6869;
    font-size:16px;
    line-height:1.9;
}

.about-hero-buttons{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.about-hero-image{
    flex:1;
    min-width:0;
}

.about-hero-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:22px;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

/* Our Story Section */

.story-section{
    padding:90px 0;
}

.story-content{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:70px;
    align-items:center;
}

.story-image{
    width:100%;
    height:520px;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.story-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.story-text h2{
    margin:15px 0 24px;
    font-size:40px;
    line-height:1.3;
}

.story-text p{
    margin-bottom:18px;
    color:#5f6869;
    font-size:16px;
    line-height:1.8;
}

/* DecorWe Mission Section */

.dw-mission-section{
    padding:95px 0;
    background:#f6faf9;
}

.dw-mission-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.dw-mission-heading{
    max-width:760px;
    margin:0 auto 52px;
    text-align:center;
}

.dw-mission-label{
    display:inline-block;
    margin-bottom:14px;
    color:#087f87;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.dw-mission-heading h2{
    margin:0 0 20px;
    color:#111827;
    font-size:42px;
    line-height:1.25;
}

.dw-mission-heading p{
    max-width:680px;
    margin:0 auto;
    color:#626b70;
    font-size:17px;
    line-height:1.8;
}

.dw-mission-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.dw-mission-card{
    padding:38px 30px;
    background:#ffffff;
    border:1px solid #e5eeee;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(16,60,64,.06);
    transition:transform .3s ease, box-shadow .3s ease;
}

.dw-mission-card:hover{
    transform:translateY(-7px);
    box-shadow:0 20px 45px rgba(16,60,64,.11);
}

.dw-mission-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    margin:0 auto 24px;
    border-radius:18px;
    background:#eaf6f5;
    color:#087f87;
    font-size:27px;
}

.dw-mission-card h3{
    margin:0 0 14px;
    color:#111827;
    font-size:21px;
    line-height:1.4;
}

.dw-mission-card p{
    margin:0;
    color:#626b70;
    font-size:15px;
    line-height:1.75;
}

/* DecorWe Values Section */

.dw-values-section{
    padding:95px 0;
    background:#ffffff;
}

.dw-values-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.dw-values-heading{
    max-width:760px;
    margin:0 auto 52px;
    text-align:center;
}

.dw-values-label{
    display:inline-block;
    margin-bottom:14px;
    color:#087f87;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.dw-values-heading h2{
    margin:0 0 20px;
    color:#111827;
    font-size:42px;
    line-height:1.25;
}

.dw-values-heading p{
    max-width:690px;
    margin:0 auto;
    color:#626b70;
    font-size:17px;
    line-height:1.8;
}

.dw-values-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
}

.dw-values-card{
    position:relative;
    padding:34px 26px;
    overflow:hidden;
    background:#ffffff;
    border:1px solid #e5eeee;
    border-radius:20px;
    text-align:left;
    box-shadow:0 12px 32px rgba(16,60,64,.05);
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.dw-values-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#087f87;
}

.dw-values-card:hover{
    transform:translateY(-7px);
    border-color:#cde5e4;
    box-shadow:0 20px 45px rgba(16,60,64,.10);
}

.dw-values-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    margin-bottom:22px;
    border-radius:17px;
    background:#eaf6f5;
    color:#087f87;
    font-size:24px;
}

.dw-values-card h3{
    margin:0 0 13px;
    color:#111827;
    font-size:20px;
    line-height:1.4;
}

.dw-values-card p{
    margin:0;
    color:#626b70;
    font-size:14.5px;
    line-height:1.75;
}

/* Why Choose DecorWe Section */

.dw-choose-section{
    padding:95px 0;
    background:#f6faf9;
}

.dw-choose-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.dw-choose-heading{
    max-width:780px;
    margin:0 auto 55px;
    text-align:center;
}

.dw-choose-label{
    display:inline-block;
    margin-bottom:14px;
    color:#087f87;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.dw-choose-heading h2{
    margin:0 0 20px;
    color:#111827;
    font-size:42px;
    line-height:1.25;
}

.dw-choose-heading p{
    max-width:700px;
    margin:0 auto;
    color:#626b70;
    font-size:17px;
    line-height:1.8;
}

.dw-choose-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px;
}

.dw-choose-item{
    position:relative;
    display:grid;
    grid-template-columns:72px minmax(0,1fr);
    gap:24px;
    padding:32px;
    overflow:hidden;
    background:#ffffff;
    border:1px solid #e4eeee;
    border-radius:20px;
    box-shadow:0 12px 34px rgba(16,60,64,.06);
    transition:transform .3s ease, box-shadow .3s ease;
}

.dw-choose-item:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(16,60,64,.11);
}

.dw-choose-number{
    color:#d7e8e7;
    font-size:38px;
    font-weight:700;
    line-height:1;
}

.dw-choose-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    margin-bottom:18px;
    border-radius:15px;
    background:#eaf6f5;
    color:#087f87;
    font-size:21px;
}

.dw-choose-content h3{
    margin:0 0 12px;
    color:#111827;
    font-size:21px;
    line-height:1.4;
}

.dw-choose-content p{
    margin:0;
    color:#626b70;
    font-size:15px;
    line-height:1.75;
}

/* DecorWe About CTA Section */

.dw-about-cta-section{
    padding:95px 0;
    background:#ffffff;
}

.dw-about-cta-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.dw-about-cta-content{
    position:relative;
    max-width:1050px;
    margin:0 auto;
    padding:72px 60px;
    overflow:hidden;
    border-radius:28px;
    background:linear-gradient(135deg,#073f44 0%,#087f87 100%);
    text-align:center;
    box-shadow:0 24px 60px rgba(8,85,91,.20);
}

.dw-about-cta-content::before{
    content:"";
    position:absolute;
    top:-90px;
    right:-70px;
    width:240px;
    height:240px;
    border-radius:50%;
    background:rgba(255,255,255,.07);
}

.dw-about-cta-content::after{
    content:"";
    position:absolute;
    bottom:-110px;
    left:-80px;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.dw-about-cta-label,
.dw-about-cta-content h2,
.dw-about-cta-content p,
.dw-about-cta-buttons{
    position:relative;
    z-index:1;
}

.dw-about-cta-label{
    display:inline-block;
    margin-bottom:16px;
    color:#d8f4f1;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.dw-about-cta-content h2{
    max-width:760px;
    margin:0 auto 22px;
    color:#ffffff;
    font-size:44px;
    line-height:1.25;
}

.dw-about-cta-content p{
    max-width:700px;
    margin:0 auto 34px;
    color:rgba(255,255,255,.84);
    font-size:17px;
    line-height:1.8;
}

.dw-about-cta-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.dw-about-cta-primary,
.dw-about-cta-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-width:190px;
    padding:14px 24px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:transform .3s ease, background .3s ease, color .3s ease;
}

.dw-about-cta-primary{
    background:#ffffff;
    color:#087f87;
}

.dw-about-cta-primary:hover{
    transform:translateY(-3px);
    background:#f2fbfa;
}

.dw-about-cta-secondary{
    border:1px solid rgba(255,255,255,.65);
    color:#ffffff;
    background:transparent;
}

.dw-about-cta-secondary:hover{
    transform:translateY(-3px);
    background:#ffffff;
    color:#087f87;
}

/* =====================================
   DECORWE CONTACT HERO
===================================== */

.dw-contact-hero-section{
    padding:70px 0;
    background:linear-gradient(135deg,#f8fcfb 0%,#edf7f6 100%);
    border-top:1px solid #eef2f3;
}

.dw-contact-hero-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.dw-contact-hero-content{
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
    gap:70px;
    align-items:center;
}

.dw-contact-hero-label{
    display:inline-block;
    margin-bottom:14px;
    color:#087f87;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.dw-contact-hero-text h1{
    max-width:650px;
    margin:0 0 22px;
    color:#111827;
    font-size:48px;
    line-height:1.2;
}

.dw-contact-hero-text p{
    max-width:650px;
    margin:0 0 34px;
    color:#5f6869;
    font-size:17px;
    line-height:1.85;
}

.dw-contact-hero-buttons{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.dw-contact-hero-primary,
.dw-contact-hero-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-width:180px;
    padding:14px 24px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:transform .3s ease,
               background .3s ease,
               color .3s ease;
}

.dw-contact-hero-primary{
    background:#0f6f73;
    color:#ffffff;
    box-shadow:0 9px 22px rgba(15,111,115,.20);
}

.dw-contact-hero-primary:hover{
    background:#09575a;
    transform:translateY(-3px);
}

.dw-contact-hero-secondary{
    border:2px solid #0f6f73;
    color:#0f6f73;
    background:#ffffff;
}

.dw-contact-hero-secondary:hover{
    background:#0f6f73;
    color:#ffffff;
    transform:translateY(-3px);
}

.dw-contact-hero-visual{
    display:flex;
    justify-content:center;
}

.dw-contact-hero-card{
    width:100%;
    max-width:430px;
    padding:42px 38px;
    background:#ffffff;
    border:1px solid #e4eeee;
    border-radius:24px;
    box-shadow:0 22px 55px rgba(16,60,64,.10);
}

.dw-contact-hero-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:68px;
    height:68px;
    margin-bottom:24px;
    border-radius:19px;
    background:#eaf6f5;
    color:#087f87;
    font-size:28px;
}

.dw-contact-hero-card h2{
    margin:0 0 14px;
    color:#111827;
    font-size:27px;
    line-height:1.35;
}

.dw-contact-hero-card > p{
    margin:0 0 25px;
    color:#626b70;
    font-size:15px;
    line-height:1.75;
}

.dw-contact-hero-mini-list{
    display:grid;
    gap:13px;
}

.dw-contact-hero-mini-list div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#364647;
    font-size:15px;
    font-weight:500;
}

.dw-contact-hero-mini-list i{
    color:#087f87;
}

/* =====================================
   DECORWE QUICK CONTACT CARDS
===================================== */

.dw-contact-cards-section{
    padding:85px 0;
    background:#ffffff;
}

.dw-contact-cards-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.dw-contact-cards-heading{
    max-width:680px;
    margin:0 auto 45px;
    text-align:center;
}

.dw-contact-cards-heading span{
    display:inline-block;
    margin-bottom:12px;
    color:#087f87;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.dw-contact-cards-heading h2{
    margin:0 0 14px;
    color:#111827;
    font-size:38px;
    line-height:1.3;
}

.dw-contact-cards-heading p{
    margin:0;
    color:#657071;
    font-size:16px;
    line-height:1.75;
}

.dw-contact-cards-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.dw-contact-info-card{
    position:relative;
    min-height:285px;
    padding:32px 26px;
    overflow:hidden;
    background:#ffffff;
    border:1px solid #e4eeee;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(16,60,64,.07);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.dw-contact-info-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#0f7d82;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .3s ease;
}

.dw-contact-info-card:hover{
    transform:translateY(-8px);
    border-color:#c9e3e2;
    box-shadow:0 20px 45px rgba(16,60,64,.12);
}

.dw-contact-info-card:hover::before{
    transform:scaleX(1);
}

.dw-contact-info-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    margin-bottom:23px;
    border-radius:17px;
    background:#eaf6f5;
    color:#087f87;
    font-size:23px;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.dw-contact-info-card:hover .dw-contact-info-icon{
    background:#0f7d82;
    color:#ffffff;
    transform:rotate(-5deg);
}

.dw-contact-info-card h3{
    margin:0 0 14px;
    color:#111827;
    font-size:21px;
    line-height:1.35;
}

.dw-contact-info-card a{
    display:inline-block;
    margin-bottom:14px;
    color:#0b7479;
    font-size:15px;
    font-weight:600;
    line-height:1.55;
    text-decoration:none;
    overflow-wrap:anywhere;
}

.dw-contact-info-card a:hover{
    text-decoration:underline;
}

.dw-contact-info-card p{
    margin:0;
    color:#667172;
    font-size:14px;
    line-height:1.75;
}

.dw-contact-info-primary{
    margin-bottom:12px !important;
    color:#334344 !important;
    font-weight:600;
}

/* =====================================
   DECORWE CONTACT FORM
===================================== */

.dw-contact-form-section{
    padding:90px 0;
    background:#f8fbfb;
}

.dw-contact-form-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.dw-contact-form-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:45px;
    align-items:start;
}

.dw-contact-form-box,
.dw-contact-details-box{
    background:#ffffff;
    padding:40px;
    border-radius:22px;
    border:1px solid #e5efef;
    box-shadow:0 15px 45px rgba(16,60,64,.08);
}

.dw-contact-form-label{
    display:inline-block;
    margin-bottom:12px;
    color:#087f87;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.dw-contact-form-box h2{
    margin:0 0 15px;
    color:#111827;
    font-size:36px;
    line-height:1.3;
}

.dw-contact-form-box > p{
    margin:0 0 30px;
    color:#667172;
    line-height:1.8;
}

.dw-contact-form{
    display:grid;
    gap:18px;
}

.dw-contact-input-group input,
.dw-contact-input-group textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #d9e7e7;
    border-radius:12px;
    font-size:15px;
    font-family:inherit;
    outline:none;
    transition:.3s;
    background:#ffffff;
    box-sizing:border-box;
}

.dw-contact-input-group textarea{
    resize:vertical;
    min-height:150px;
}

.dw-contact-input-group input:focus,
.dw-contact-input-group textarea:focus{
    border-color:#0f7d82;
    box-shadow:0 0 0 4px rgba(15,125,130,.10);
}

.dw-contact-submit-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:220px;
    padding:15px 24px;
    border:none;
    border-radius:30px;
    background:#0f7d82;
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.dw-contact-submit-btn:hover{
    background:#095e61;
    transform:translateY(-3px);
}

/* Right Side */

.dw-contact-details-box h3{
    margin:0 0 15px;
    color:#111827;
    font-size:30px;
}

.dw-contact-details-box > p{
    margin:0 0 30px;
    color:#667172;
    line-height:1.8;
}

.dw-contact-detail-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.dw-contact-detail-item i{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#eaf6f5;
    color:#087f87;
    font-size:20px;
    flex-shrink:0;
}

.dw-contact-detail-item h4{
    margin:0 0 6px;
    color:#111827;
    font-size:18px;
}

.dw-contact-detail-item p,
.dw-contact-detail-item a{
    margin:0;
    color:#667172;
    line-height:1.7;
    text-decoration:none;
    overflow-wrap:anywhere;
}

.dw-contact-detail-item a:hover{
    color:#087f87;
}

/* =====================================
   DECORWE CONTACT FAQ
===================================== */

.dw-contact-faq-section{
    padding:85px 0;
    background:#ffffff;
}

.dw-contact-faq-container{
    width:90%;
    max-width:950px;
    margin:0 auto;
}

.dw-contact-faq-heading{
    max-width:680px;
    margin:0 auto 42px;
    text-align:center;
}

.dw-contact-faq-heading span{
    display:inline-block;
    margin-bottom:12px;
    color:#087f87;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.dw-contact-faq-heading h2{
    margin:0 0 14px;
    color:#111827;
    font-size:38px;
    line-height:1.3;
}

.dw-contact-faq-heading p{
    margin:0;
    color:#657071;
    font-size:16px;
    line-height:1.75;
}

.dw-contact-faq-list{
    display:grid;
    gap:16px;
}

.dw-contact-faq-item{
    overflow:hidden;
    background:#ffffff;
    border:1px solid #dfeaea;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(16,60,64,.06);
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.dw-contact-faq-item:hover{
    border-color:#c2dfde;
    box-shadow:0 12px 30px rgba(16,60,64,.10);
    transform:translateY(-2px);
}

.dw-contact-faq-item[open]{
    border-color:#bcdedd;
}

.dw-contact-faq-item summary{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:22px 60px 22px 24px;
    color:#111827;
    font-size:17px;
    font-weight:600;
    line-height:1.5;
    cursor:pointer;
    list-style:none;
}

.dw-contact-faq-item summary::-webkit-details-marker{
    display:none;
}

.dw-contact-faq-item summary::after{
    content:"+";
    position:absolute;
    top:50%;
    right:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#eaf6f5;
    color:#087f87;
    font-size:21px;
    font-weight:500;
    transform:translateY(-50%);
    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.dw-contact-faq-item[open] summary::after{
    content:"−";
    background:#0f7d82;
    color:#ffffff;
    transform:translateY(-50%) rotate(180deg);
}

.dw-contact-faq-item p{
    margin:0;
    padding:0 60px 23px 24px;
    color:#657071;
    font-size:15px;
    line-height:1.8;
}

/* =====================================
   DECORWE CONTACT FINAL CTA
===================================== */

.dw-contact-final-cta{
    padding:90px 0;
    background:#f2f8f8;
}

.dw-contact-final-cta-container{
    width:90%;
    max-width:1150px;
    margin:0 auto;
}

.dw-contact-final-cta-content{
    position:relative;
    overflow:hidden;
    padding:65px 45px;
    text-align:center;
    background:linear-gradient(135deg, #087f87, #0d656b);
    border-radius:26px;
    box-shadow:0 18px 45px rgba(8,127,135,.20);
}

.dw-contact-final-cta-content::before{
    content:"";
    position:absolute;
    top:-110px;
    left:-90px;
    width:260px;
    height:260px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
}

.dw-contact-final-cta-content::after{
    content:"";
    position:absolute;
    right:-80px;
    bottom:-120px;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
}

.dw-contact-final-cta-content > *{
    position:relative;
    z-index:2;
}

.dw-contact-final-cta-content span{
    display:inline-block;
    margin-bottom:13px;
    color:#d8f4f2;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.dw-contact-final-cta-content h2{
    margin:0 0 16px;
    color:#ffffff;
    font-size:40px;
    line-height:1.25;
}

.dw-contact-final-cta-content p{
    max-width:650px;
    margin:0 auto;
    color:rgba(255,255,255,.86);
    font-size:16px;
    line-height:1.8;
}

.dw-contact-final-cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-top:32px;
}

.dw-contact-final-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:190px;
    padding:15px 24px;
    border:1px solid transparent;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease;
}

.dw-contact-final-cta-btn:hover{
    transform:translateY(-3px);
}

.dw-contact-final-cta-whatsapp{
    background:#ffffff;
    color:#087f87;
    box-shadow:0 9px 22px rgba(0,0,0,.13);
}

.dw-contact-final-cta-whatsapp:hover{
    background:#f3ffff;
    color:#076d74;
    box-shadow:0 12px 26px rgba(0,0,0,.18);
}

.dw-contact-final-cta-email{
    background:transparent;
    color:#ffffff;
    border-color:rgba(255,255,255,.65);
}

.dw-contact-final-cta-email:hover{
    background:rgba(255,255,255,.12);
    border-color:#ffffff;
    color:#ffffff;
}

.dw-contact-final-cta-btn i{
    font-size:18px;
}

/* =====================================
   DECORWE CATEGORIES HERO
===================================== */

.dw-categories-hero{
    position:relative;
    overflow:hidden;
    padding:80px 0;
    background:linear-gradient(135deg,#f5fbfa 0%,#edf7f6 100%);
}

.dw-categories-hero-container{
    width:90%;
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    align-items:center;
    gap:55px;
}

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

.dw-categories-hero-label{
    display:inline-block;
    margin-bottom:14px;
    color:#087f87;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.dw-categories-hero-content h1{
    margin:0 0 18px;
    color:#0d1726;
    font-size:56px;
    line-height:1.12;
    letter-spacing:-1.6px;
}

.dw-categories-hero-content p{
    margin:0 0 30px;
    color:#5f696d;
    font-size:17px;
    line-height:1.75;
}

.dw-categories-hero-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 28px;
    background:#087f87;
    color:#fff;
    border:1px solid #087f87;
    border-radius:12px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(8,127,135,.22);
    transition:.3s;
}

.dw-categories-hero-button:hover{
    background:#066d74;
    color:#fff;
    transform:translateY(-3px);
}

.dw-categories-hero-button i{
    transition:.3s;
}

.dw-categories-hero-button:hover i{
    transform:translateY(2px);
}


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

.dw-categories-hero-image{
    width:100%;
}

.dw-categories-hero-image img{
    display:block;
    width:100%;
    height:470px;
    object-fit:cover;
    object-position:center;
    border-radius:26px;
    box-shadow:0 24px 60px rgba(25,65,66,.15);
}


/* =====================================
   ALL CATEGORIES SECTION
===================================== */

.dw-all-categories{
    padding:75px 0;
    background:#ffffff;
}

.dw-categories-section-heading{
    max-width:700px;
    margin:0 auto 40px;
    text-align:center;
}

.dw-categories-section-heading > span{
    display:inline-block;
    margin-bottom:9px;
    color:#0f6f73;
    font-size:13px;
    font-weight:600;
    letter-spacing:1.3px;
    text-transform:uppercase;
}

.dw-categories-section-heading h2{
    margin:0 0 12px;
    color:#1f2929;
    font-size:38px;
    line-height:1.2;
}

.dw-categories-section-heading p{
    margin:0;
    color:#667171;
    font-size:15px;
    line-height:1.65;
}


/* =====================================
   FOUR COLUMN CATEGORY GRID
===================================== */

.dw-categories-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:22px;
}


/* =====================================
   SQUARE CATEGORY CARD
===================================== */

.dw-category-image-card{
    display:flex;
    flex-direction:column;
    min-width:0;
    overflow:hidden;
    color:inherit;
    background:#ffffff;
    border:1px solid #e4ebeb;
    border-radius:18px;
    text-decoration:none;
    box-shadow:0 9px 26px rgba(25,65,66,.07);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.dw-category-image-card:hover{
    transform:translateY(-6px);
    border-color:rgba(15,111,115,.35);
    box-shadow:0 18px 38px rgba(25,65,66,.13);
}


/* =====================================
   SQUARE IMAGE
===================================== */

.dw-category-image-wrap{
    position:relative;
    width:100%;
    aspect-ratio:1 / 1;
    overflow:hidden;
    background:#f2f6f6;
}

.dw-category-image-wrap::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.10),
        transparent 42%
    );
}

.dw-category-image-wrap img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .5s ease;
}

.dw-category-image-card:hover .dw-category-image-wrap img{
    transform:scale(1.06);
}


/* =====================================
   CARD CONTENT
===================================== */

.dw-category-image-content{
    display:flex;
    flex:1;
    flex-direction:column;
    align-items:flex-start;
    padding:16px 17px 18px;
}

.dw-category-image-content h3{
    margin:0 0 7px;
    color:#202929;
    font-size:18px;
    font-weight:700;
    line-height:1.25;
}

.dw-category-image-content p{
    display:-webkit-box;
    margin:0 0 12px;
    overflow:hidden;
    color:#687373;
    font-size:12.5px;
    line-height:1.5;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

.dw-category-image-content span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:auto;
    color:#0f6f73;
    font-size:12.5px;
    font-weight:600;
}

.dw-category-image-content span i{
    font-size:10px;
    transition:transform .3s ease;
}

.dw-category-image-card:hover
.dw-category-image-content span i{
    transform:translateX(4px);
}

/* =====================================
   STYLE YOUR SPACE
===================================== */

.dw-style-space{
    padding:90px 0;
    background:#f6faf9;
}

.dw-style-heading{
    max-width:720px;
    margin:0 auto 45px;
    text-align:center;
}

.dw-style-heading > span{
    display:inline-block;
    margin-bottom:10px;
    color:#0f6f73;
    font-size:13px;
    font-weight:600;
    letter-spacing:1.5px;
}

.dw-style-heading h2{
    margin:0 0 14px;
    color:#1f2929;
    font-size:40px;
    line-height:1.2;
}

.dw-style-heading p{
    margin:0;
    color:#667171;
    font-size:16px;
    line-height:1.7;
}

.dw-style-grid{
    display:grid;
    grid-template-columns:1.25fr .75fr .75fr;
    grid-template-rows:repeat(2, 250px);
    gap:22px;
}

.dw-style-card{
    position:relative;
    display:block;
    overflow:hidden;
    min-width:0;
    color:#ffffff;
    background:#dfe7e6;
    border-radius:22px;
    text-decoration:none;
    box-shadow:0 14px 35px rgba(25,65,66,.11);
}

.dw-style-large{
    grid-row:1 / span 2;
}

.dw-style-card img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .6s ease;
}

.dw-style-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(6,20,21,.78) 0%,
        rgba(6,20,21,.25) 52%,
        transparent 78%
    );
    transition:background .35s ease;
}

.dw-style-card:hover img{
    transform:scale(1.06);
}

.dw-style-card:hover::after{
    background:linear-gradient(
        to top,
        rgba(6,20,21,.84) 0%,
        rgba(6,20,21,.32) 58%,
        transparent 82%
    );
}

.dw-style-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:28px;
}

.dw-style-overlay > span{
    display:inline-block;
    margin-bottom:8px;
    color:#d6f3f0;
    font-size:12px;
    font-weight:600;
    letter-spacing:1.2px;
    text-transform:uppercase;
}

.dw-style-overlay h3{
    margin:0;
    color:#ffffff;
    font-size:24px;
    line-height:1.25;
}

.dw-style-large .dw-style-overlay{
    padding:36px;
}

.dw-style-large .dw-style-overlay h3{
    max-width:430px;
    font-size:34px;
}

.dw-style-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    color:#ffffff;
    font-size:14px;
    font-weight:600;
}

.dw-style-btn i{
    font-size:12px;
    transition:transform .3s ease;
}

.dw-style-card:hover .dw-style-btn i{
    transform:translateX(5px);
}

/* General Sections */

.section{
    padding:80px 0;
}

.section h2{
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
}

.light{
    background:#f7f7f7;
}

.grid{
    display:grid;
    gap:25px;
}

/* Category Cards */

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

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    text-align:center;
}

.card:hover{
    transform:translateY(-8px);
}

.category-grid .card img{
    width:100%;
    height:240px;
    display:block;
    object-fit:cover;
    transition:.4s;
}

.category-grid .card:hover img{
    transform:scale(1.05);
}

.card h3{
    margin:20px 20px 10px;
    font-size:22px;
}

.card p{
    margin:0 20px 25px;
    color:#666;
}

.card i{
    font-size:42px;
    color:#0f6f73;
    margin:30px 0 20px;
}

/* Products */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    overflow:hidden;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:280px;
    display:block;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:20px;
}

/* About */

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    flex:1;
    min-width:0;
}

.about-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
}

.about-text{
    flex:1;
    max-width:none;
    margin:0;
    text-align:left;
}

.about-text h2{
    text-align:left;
    margin-bottom:25px;
}

.about-text p{
    font-size:18px;
    color:#666;
    margin-bottom:20px;
}

/* Contact */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:25px;
}

.contact-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.contact-card i{
    font-size:42px;
    color:#0f6f73;
    margin-bottom:18px;
}

.contact-card h3{
    margin-bottom:12px;
}

.contact-card p,
.contact-card a{
    color:#666;
    text-decoration:none;
    word-break:break-word;
}

.contact-card a:hover{
    color:#0f6f73;
}

/* =========================
   Premium Footer
========================= */

.site-footer{
    background:#111111;
    color:#ffffff;
    padding:70px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.7fr 1fr 1fr 1.35fr;
    gap:55px;
    align-items:start;
    padding-bottom:50px;
}

.footer-logo{
    width:185px;
    height:auto;
    display:block;
    margin-bottom:20px;
}

.footer-brand p{
    max-width:390px;
    color:#bcbcbc;
    font-size:15px;
    line-height:1.8;
    margin-bottom:24px;
}

.footer-column h3{
    position:relative;
    color:#ffffff;
    font-size:18px;
    margin-bottom:24px;
    padding-bottom:10px;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:35px;
    height:2px;
    border-radius:2px;
    background:#0f858a;
}

.footer-column > a{
    display:block;
    width:max-content;
    max-width:100%;
    color:#c8c8c8;
    text-decoration:none;
    font-size:15px;
    margin-bottom:12px;
    transition:.3s ease;
}

.footer-column > a:hover{
    color:#ffffff;
    transform:translateX(4px);
}

.footer-social-icons{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-social-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.18);
    color:#ffffff;
    text-decoration:none;
    font-size:17px;
    transition:.3s ease;
}

.footer-social-icons a:hover{
    background:#0f858a;
    border-color:#0f858a;
    transform:translateY(-3px);
}

.footer-contact-link{
    display:flex !important;
    align-items:flex-start;
    gap:9px;
    width:100% !important;
    margin-top:15px;
    line-height:1.5;
}

.footer-contact-link i{
    color:#18a1a6;
    margin-top:4px;
    flex-shrink:0;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding-top:20px;
    padding-bottom:20px;
    border-top:1px solid rgba(255,255,255,.12);
}

.footer-bottom p{
    color:#909090;
    font-size:14px;
    margin:0;
}

.footer-heart{
    color:#e65353;
}

/* WhatsApp Button */

.whatsapp{
    position:fixed;
    right:30px;
    bottom:30px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    text-decoration:none;
    z-index:998;
}

/* Tablet and Mobile */

@media(max-width:900px){

    .container{
        width:90%;
    }

.nav{
    padding:12px 0;
}

.logo img{
    height:48px;
}

.menu-toggle{
    display:block;
}

nav{
    display:none;
    position:absolute;
    top:100%;
    left:50%;
    width:100vw;
    max-height:calc(100vh - 72px);
    overflow-y:auto;
    transform:translateX(-50%);
    background:#ffffff;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:15px 5%;
    border-top:1px solid #eeeeee;
    box-shadow:0 15px 25px rgba(0,0,0,.10);
}

nav.active{
    display:flex;
}

nav > a,
.dropdown-toggle{
    width:100%;
    padding:14px 5px;
    font-size:16px;
    text-align:left;
    border-bottom:1px solid #eeeeee;
}

nav > a:not(.header-shop-btn)::after,
.dropdown-toggle::after{
    display:none;
}

.nav-dropdown{
    width:100%;
}

.dropdown-toggle{
    justify-content:space-between;
}

.dropdown-menu{
    position:static;
    width:100%;
    padding:5px 0 8px 14px;
    border:0;
    border-radius:0;
    box-shadow:none;
    background:#f7fbfa;

    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    transition:none;
}

.dropdown-menu::before{
    display:none;
}

.nav-dropdown.active .dropdown-menu{
    display:block;
    transform:none;
}

.dropdown-menu a{
    padding:11px 12px;
    border-bottom:1px solid #e7eeee;
}

.dropdown-menu a:last-child{
    border-bottom:0;
}

.dropdown-menu a:hover{
    padding-left:16px;
}

nav .header-shop-btn{
    width:100%;
    margin-top:15px;
    padding:13px 20px;
    text-align:center;
}

    .hero{
        padding:40px 0 50px;
    }

    .hero-content{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .hero-text h1{
        font-size:36px;
    }

    .hero-text p{
        font-size:16px;
        margin-bottom:25px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-image{
        width:100%;
        max-width:650px;
        margin:auto;
    }

    .section{
        padding:55px 0;
    }

    .section h2{
        font-size:30px;
        margin-bottom:30px;
    }

    .category-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:20px;
    }

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

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

    .about-content{
    grid-template-columns:1fr;
    gap:35px;
}
    .about-text,
    .about-text h2{
        text-align:center;
    }

   .footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:40px;
}

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

.about-hero{
    padding:55px 0;
}

.about-hero-content{
    flex-direction:column;
    gap:35px;
    text-align:center;
}

.about-hero-text h1{
    max-width:750px;
    margin-left:auto;
    margin-right:auto;
    font-size:38px;
}

.about-hero-text p{
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

.about-hero-buttons{
    justify-content:center;
}

.about-hero-image{
    width:100%;
    max-width:700px;
}

.story-section{
    padding:60px 0;
}

.story-content{
    grid-template-columns:1fr;
    gap:35px;
}

.story-image{
    height:400px;
}

.story-text{
    text-align:center;
}

.story-text h2{
    font-size:34px;
}

.story-text p{
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

.dw-mission-section{
    padding:70px 0;
}

.dw-mission-heading{
    margin-bottom:40px;
}

.dw-mission-heading h2{
    font-size:34px;
}

.dw-mission-grid{
    grid-template-columns:1fr;
    max-width:680px;
    margin:0 auto;
}

.dw-mission-card{
    padding:32px 28px;
}

.dw-values-section{
    padding:70px 0;
}

.dw-values-heading{
    margin-bottom:40px;
}

.dw-values-heading h2{
    font-size:34px;
}

.dw-values-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
}

.dw-choose-section{
    padding:70px 0;
}

.dw-choose-heading{
    margin-bottom:40px;
}

.dw-choose-heading h2{
    font-size:34px;
}

.dw-choose-grid{
    grid-template-columns:1fr;
    max-width:720px;
    margin:0 auto;
}

.dw-about-cta-section{
    padding:70px 0;
}

.dw-about-cta-content{
    padding:60px 38px;
}

.dw-about-cta-content h2{
    font-size:36px;
}

.dw-contact-hero-section{
    padding:65px 0;
}

.dw-contact-hero-content{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.dw-contact-hero-text h1,
.dw-contact-hero-text p{
    margin-left:auto;
    margin-right:auto;
}

.dw-contact-hero-text h1{
    font-size:38px;
}

.dw-contact-hero-buttons{
    justify-content:center;
}

.dw-contact-hero-card{
    text-align:left;
}

.dw-contact-cards-section{
    padding:65px 0;
}

.dw-contact-cards-heading{
    margin-bottom:38px;
}

.dw-contact-cards-heading h2{
    font-size:34px;
}

.dw-contact-cards-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.dw-contact-info-card{
    min-height:260px;
}

/* Contact Form - Tablet */

.dw-contact-form-section{
    padding:65px 0;
}

.dw-contact-form-grid{
    grid-template-columns:1fr;
    gap:30px;
}

.dw-contact-form-box,
.dw-contact-details-box{
    padding:34px;
}

.dw-contact-form-box h2{
    font-size:32px;
}

.dw-contact-details-box h3{
    font-size:27px;
}

.dw-contact-details-box{
    width:100%;
}

.dw-contact-detail-item{
    margin-bottom:24px;
}

/* Contact FAQ - Tablet */

.dw-contact-faq-section{
    padding:65px 0;
}

.dw-contact-faq-heading{
    margin-bottom:36px;
}

.dw-contact-faq-heading h2{
    font-size:34px;
}

.dw-contact-faq-item summary{
    padding:20px 58px 20px 22px;
}

.dw-contact-faq-item p{
    padding:0 58px 21px 22px;
}

/* Contact Final CTA - Tablet */

.dw-contact-final-cta{
    padding:70px 0;
}

.dw-contact-final-cta-content{
    padding:55px 35px;
    border-radius:22px;
}

.dw-contact-final-cta-content h2{
    font-size:35px;
}

.dw-contact-final-cta-content p{
    max-width:600px;
}

/* ===========================
   Categories Hero
=========================== */

.dw-categories-hero{
    padding:70px 0;
}

.dw-categories-hero-container{
    grid-template-columns:1fr;
    gap:60px;
    text-align:center;
}

.dw-categories-hero-content{
    margin:0 auto;
}

.dw-categories-hero-content p{
    margin:0 auto 28px;
}

.dw-categories-hero-visual{
    transform:none;
    justify-self:center;
}

.dw-categories-hero-image{
    width:100%;
    max-width:700px;
    margin:0 auto;
}

.dw-categories-hero-image img{
    height:400px;
}


/* =====================================
   ALL CATEGORIES - TABLET
===================================== */

.dw-all-categories{
    padding:65px 0;
}

.dw-categories-section-heading{
    margin-bottom:34px;
}

.dw-categories-section-heading h2{
    font-size:34px;
}

.dw-categories-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:20px;
}

.dw-category-image-content{
    padding:16px;
}

.dw-category-image-content h3{
    font-size:18px;
}

/* =====================================
   STYLE YOUR SPACE - TABLET
===================================== */

.dw-style-space{
    padding:70px 0;
}

.dw-style-heading{
    margin-bottom:36px;
}

.dw-style-heading h2{
    font-size:34px;
}

.dw-style-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    grid-template-rows:none;
    gap:20px;
}

.dw-style-large{
    grid-column:1 / -1;
    grid-row:auto;
    height:400px;
}

.dw-style-card:not(.dw-style-large){
    height:260px;
}

.dw-style-large .dw-style-overlay h3{
    font-size:30px;
}
    
}

/* Small Mobile */

@media(max-width:600px){

 .top-announcement-inner{
    min-height:32px;
    padding:6px 8px;
    gap:7px;
    font-size:9.5px;
}

.top-announcement-inner span{
    gap:3px;
}

.top-announcement-inner i{
    font-size:9px;
}

.top-divider{
    height:11px;
}
    
    .hero-text h1{
        font-size:32px;
    }

    .btn{
        width:100%;
        padding:13px 20px;
        text-align:center;
    }

    .hero-buttons{
        width:100%;
    }

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

    .category-grid .card img{
        height:220px;
    }

    .product-card img{
        height:240px;
    }

    .footer-grid > div{
        text-align:left;
    }

    .footer-logo{
        width:160px;
        margin:0 0 20px;
    }

    .whatsapp{
        right:15px;
        bottom:15px;
        width:52px;
        height:52px;
        font-size:26px;
    }

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

.site-footer{
    padding-top:50px;
    padding-bottom:30px;
}

.footer-brand p{
    max-width:100%;
}

.footer-logo{
    width:165px;
}

.footer-bottom{
    padding-top:18px;
    padding-bottom:18px;
}

.footer-bottom p{
    font-size:13px;
}

.about-hero{
    padding:45px 0;
}

.about-label{
    font-size:12px;
}

.about-hero-text h1{
    font-size:32px;
}

.about-hero-text p{
    font-size:15px;
    line-height:1.7;
}

.about-hero-buttons{
    width:100%;
}

.story-section{
    padding:50px 0;
}

.story-content{
    gap:28px;
}

.story-image{
    height:300px;
    border-radius:18px;
}

.story-text h2{
    font-size:28px;
    line-height:1.35;
}

.story-text p{
    font-size:15px;
    line-height:1.75;
}

.dw-mission-section{
    padding:55px 0;
}

.dw-mission-container{
    width:90%;
}

.dw-mission-heading{
    margin-bottom:32px;
}

.dw-mission-label{
    font-size:11px;
    letter-spacing:1.7px;
}

.dw-mission-heading h2{
    font-size:28px;
    line-height:1.3;
}

.dw-mission-heading p{
    font-size:15px;
    line-height:1.7;
}

.dw-mission-grid{
    gap:18px;
}

.dw-mission-card{
    padding:28px 22px;
    border-radius:17px;
}

.dw-mission-icon{
    width:56px;
    height:56px;
    margin-bottom:19px;
    border-radius:15px;
    font-size:23px;
}

.dw-mission-card h3{
    font-size:19px;
}

.dw-mission-card p{
    font-size:14px;
}

.dw-values-section{
    padding:55px 0;
}

.dw-values-container{
    width:90%;
}

.dw-values-heading{
    margin-bottom:32px;
}

.dw-values-label{
    font-size:11px;
    letter-spacing:1.7px;
}

.dw-values-heading h2{
    font-size:28px;
    line-height:1.3;
}

.dw-values-heading p{
    font-size:15px;
    line-height:1.7;
}

.dw-values-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.dw-values-card{
    padding:28px 22px;
    border-radius:17px;
    text-align:center;
}

.dw-values-icon{
    width:54px;
    height:54px;
    margin:0 auto 18px;
    font-size:22px;
}

.dw-values-card h3{
    font-size:19px;
}

.dw-values-card p{
    font-size:14px;
}

.dw-choose-section{
    padding:55px 0;
}

.dw-choose-container{
    width:90%;
}

.dw-choose-heading{
    margin-bottom:32px;
}

.dw-choose-label{
    font-size:11px;
    letter-spacing:1.7px;
}

.dw-choose-heading h2{
    font-size:28px;
    line-height:1.3;
}

.dw-choose-heading p{
    font-size:15px;
    line-height:1.7;
}

.dw-choose-grid{
    gap:18px;
}

.dw-choose-item{
    grid-template-columns:1fr;
    gap:12px;
    padding:27px 22px;
    text-align:center;
    border-radius:17px;
}

.dw-choose-number{
    font-size:30px;
}

.dw-choose-icon{
    width:52px;
    height:52px;
    margin:0 auto 17px;
    font-size:21px;
}

.dw-choose-content h3{
    font-size:19px;
}

.dw-choose-content p{
    font-size:14px;
}

.dw-about-cta-section{
    padding:55px 0;
}

.dw-about-cta-container{
    width:90%;
}

.dw-about-cta-content{
    padding:48px 22px;
    border-radius:20px;
}

.dw-about-cta-label{
    font-size:11px;
    letter-spacing:1.7px;
}

.dw-about-cta-content h2{
    font-size:28px;
    line-height:1.3;
}

.dw-about-cta-content p{
    margin-bottom:28px;
    font-size:15px;
    line-height:1.7;
}

.dw-about-cta-buttons{
    width:100%;
    gap:12px;
}

.dw-about-cta-primary,
.dw-about-cta-secondary{
    width:100%;
    min-width:0;
    padding:13px 20px;
}

.dw-contact-hero-section{
    padding:50px 0;
}

.dw-contact-hero-container{
    width:90%;
}

.dw-contact-hero-content{
    gap:32px;
}

.dw-contact-hero-label{
    font-size:11px;
    letter-spacing:1.7px;
}

.dw-contact-hero-text h1{
    font-size:31px;
    line-height:1.3;
}

.dw-contact-hero-text p{
    margin-bottom:28px;
    font-size:15px;
    line-height:1.7;
}

.dw-contact-hero-buttons{
    width:100%;
    gap:12px;
}

.dw-contact-hero-primary,
.dw-contact-hero-secondary{
    width:100%;
    min-width:0;
    padding:13px 18px;
}

.dw-contact-hero-card{
    padding:30px 24px;
    border-radius:19px;
}

.dw-contact-hero-icon{
    width:58px;
    height:58px;
    margin-bottom:20px;
    font-size:24px;
}

.dw-contact-hero-card h2{
    font-size:23px;
}

.dw-contact-hero-card > p,
.dw-contact-hero-mini-list div{
    font-size:14px;
}

.dw-contact-cards-section{
    padding:50px 0;
}

.dw-contact-cards-container{
    width:90%;
}

.dw-contact-cards-heading{
    margin-bottom:30px;
}

.dw-contact-cards-heading span{
    font-size:11px;
    letter-spacing:1.7px;
}

.dw-contact-cards-heading h2{
    font-size:29px;
}

.dw-contact-cards-heading p{
    font-size:15px;
    line-height:1.7;
}

.dw-contact-cards-grid{
    grid-template-columns:1fr;
    gap:16px;
}

.dw-contact-info-card{
    min-height:0;
    padding:27px 23px;
    border-radius:18px;
}

.dw-contact-info-icon{
    width:54px;
    height:54px;
    margin-bottom:19px;
    font-size:21px;
}

.dw-contact-info-card h3{
    font-size:20px;
}

.dw-contact-info-card a,
.dw-contact-info-card p{
    font-size:14px;
}

/* Contact Form - Mobile */

.dw-contact-form-section{
    padding:50px 0;
}

.dw-contact-form-container{
    width:90%;
}

.dw-contact-form-grid{
    gap:22px;
}

.dw-contact-form-box,
.dw-contact-details-box{
    padding:27px 22px;
    border-radius:18px;
}

.dw-contact-form-label{
    font-size:11px;
    letter-spacing:1.7px;
}

.dw-contact-form-box h2{
    font-size:28px;
    line-height:1.3;
}

.dw-contact-form-box > p{
    margin-bottom:25px;
    font-size:14px;
    line-height:1.7;
}

.dw-contact-form{
    gap:14px;
}

.dw-contact-input-group input,
.dw-contact-input-group textarea{
    padding:14px 15px;
    border-radius:10px;
    font-size:14px;
}

.dw-contact-input-group textarea{
    min-height:135px;
}

.dw-contact-submit-btn{
    width:100%;
    padding:14px 20px;
}

.dw-contact-details-box h3{
    font-size:25px;
}

.dw-contact-details-box > p{
    margin-bottom:25px;
    font-size:14px;
    line-height:1.7;
}

.dw-contact-detail-item{
    gap:14px;
    margin-bottom:22px;
}

.dw-contact-detail-item i{
    width:46px;
    height:46px;
    border-radius:13px;
    font-size:18px;
}

.dw-contact-detail-item h4{
    font-size:16px;
}

.dw-contact-detail-item p,
.dw-contact-detail-item a{
    font-size:14px;
    word-break:break-word;
}

/* Contact FAQ - Mobile */

.dw-contact-faq-section{
    padding:50px 0;
}

.dw-contact-faq-container{
    width:90%;
}

.dw-contact-faq-heading{
    margin-bottom:30px;
}

.dw-contact-faq-heading span{
    font-size:11px;
    letter-spacing:1.5px;
}

.dw-contact-faq-heading h2{
    font-size:29px;
}

.dw-contact-faq-heading p{
    font-size:14px;
    line-height:1.7;
}

.dw-contact-faq-list{
    gap:13px;
}

.dw-contact-faq-item{
    border-radius:14px;
}

.dw-contact-faq-item summary{
    padding:18px 52px 18px 18px;
    font-size:15px;
    line-height:1.5;
}

.dw-contact-faq-item summary::after{
    right:16px;
    width:29px;
    height:29px;
    font-size:19px;
}

.dw-contact-faq-item p{
    padding:0 18px 19px;
    font-size:14px;
    line-height:1.7;
}

/* Contact Final CTA - Mobile */

.dw-contact-final-cta{
    padding:50px 0;
}

.dw-contact-final-cta-container{
    width:90%;
}

.dw-contact-final-cta-content{
    padding:45px 20px;
    border-radius:18px;
}

.dw-contact-final-cta-content::before{
    top:-125px;
    left:-125px;
}

.dw-contact-final-cta-content::after{
    right:-135px;
    bottom:-145px;
}

.dw-contact-final-cta-content span{
    font-size:11px;
    letter-spacing:1.5px;
}

.dw-contact-final-cta-content h2{
    font-size:29px;
    line-height:1.3;
}

.dw-contact-final-cta-content p{
    font-size:14px;
    line-height:1.7;
}

.dw-contact-final-cta-buttons{
    flex-direction:column;
    gap:12px;
    margin-top:27px;
}

.dw-contact-final-cta-btn{
    width:100%;
    min-width:0;
    padding:14px 18px;
}

/* ===========================
   Categories Hero
=========================== */

.dw-categories-hero{
    padding:55px 0;
}

.dw-categories-hero-container{
    gap:45px;
}

.dw-categories-hero-content h1{
    font-size:34px;
}

.dw-categories-hero-content p{
    font-size:16px;
}

.dw-categories-hero-visual{
    width:310px;
    height:310px;
}

.dw-categories-circle{
    width:250px;
    height:250px;
}

.dw-category-card{
    width:120px;
    padding:12px;
}

.dw-category-card i{
    font-size:22px;
}

.dw-category-card span{
    font-size:13px;
}

.dw-center-card{
    width:145px;
    height:145px;
}

.dw-center-card h3{
    font-size:17px;
}

.dw-categories-hero-image img{
    height:280px;
    border-radius:18px;
}

/* =====================================
   ALL CATEGORIES - MOBILE
===================================== */

.dw-all-categories{
    padding:50px 0;
}

.dw-categories-section-heading{
    margin-bottom:28px;
}

.dw-categories-section-heading > span{
    font-size:11px;
}

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

.dw-categories-section-heading p{
    font-size:14px;
}

.dw-categories-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
}

.dw-category-image-card{
    border-radius:14px;
}

.dw-category-image-content{
    padding:13px;
}

.dw-category-image-content h3{
    margin-bottom:5px;
    font-size:16px;
}

.dw-category-image-content p{
    display:none;
}

.dw-category-image-content span{
    font-size:11px;
}

/* =====================================
   STYLE YOUR SPACE - MOBILE
===================================== */

.dw-style-space{
    padding:55px 0;
}

.dw-style-heading{
    margin-bottom:30px;
}

.dw-style-heading > span{
    font-size:11px;
    letter-spacing:1.2px;
}

.dw-style-heading h2{
    font-size:30px;
}

.dw-style-heading p{
    font-size:14px;
    line-height:1.6;
}

.dw-style-grid{
    grid-template-columns:1fr;
    gap:16px;
}

.dw-style-large,
.dw-style-card:not(.dw-style-large){
    width:100%;
    height:280px;
}

.dw-style-card{
    border-radius:17px;
}

.dw-style-overlay,
.dw-style-large .dw-style-overlay{
    padding:22px;
}

.dw-style-overlay h3,
.dw-style-large .dw-style-overlay h3{
    font-size:23px;
}

.dw-style-btn{
    margin-top:14px;
    font-size:13px;
}
    
}
