:root {
    --ink: #241a12;
    --ink-soft: #3a2a1c;
    --gold: #d9a32b;
    --gold-deep: #a97a17;
    --chilli: #b23a2e;
    --chilli-deep: #8a2a20;
    --cardamom: #4c6b4f;
    --cardamom-deep: #33452f;
    --ivory: #fbf3e3;
    --cream-card: #fffdf8;
    --line: rgba(36, 26, 18, .12);
    --font-display: "Manrope", sans-serif;
    --font-body: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.display-font {
    font-family: var(--font-display);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--chilli);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.eyebrow .ref-tag {
    font-family: 'Inter', monospace;
    letter-spacing: .05em;
    color: var(--ink);
    opacity: .35;
    font-weight: 600;
    font-size: .68rem;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--chilli);
    display: inline-block;
}

.section-title {
    font-weight: 600;
    font-size: clamp(1.9rem, 3.2vw, 2.85rem);
    line-height: 1.12;
    margin-top: .5rem;
    color: var(--ink);
}

.btn-kanso {
    background: var(--chilli);
    border: 1px solid var(--chilli);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .02em;
    padding: .75rem 1.9rem;
    border-radius: 2px;
    transition: .25s ease;
}

.btn-kanso:hover {
    background: var(--chilli-deep);
    border-color: var(--chilli-deep);
    color: #fff;
}

.btn-outline-kanso {
    background: transparent;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    font-weight: 600;
    font-size: .9rem;
    padding: .7rem 1.85rem;
    border-radius: 2px;
    transition: .25s ease;
}

.btn-outline-kanso:hover {
    background: var(--ink);
    color: #fff;
}

.btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--ink);
    font-weight: 700;
    padding: .75rem 1.9rem;
    border-radius: 2px;
}

.btn-gold:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: #fff;
}

/* ---------- TOP BAR ---------- */
.topbar {
    background: var(--ink);
    color: #e8dcc7;
    font-size: .82rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar a {
    color: #e8dcc7;
    text-decoration: none;
}

.topbar a:hover {
    color: var(--gold);
}

.topbar .divider {
    opacity: .3;
    margin: 0 .6rem;
}

/* ---------- MAIN HEADER ---------- */
.main-header {
    background: var(--cream-card);
    padding: .6rem 0;
    border-bottom: 1px solid var(--line);
}

.brand-logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: .92rem;
    color: var(--ink) !important;
    padding: .5rem 1.35rem !important;
    position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--chilli) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 2px;
    box-shadow: 0 18px 40px rgba(36, 26, 18, .18);
    padding: .5rem;
    min-width: 230px;
}

.dropdown-item {
    font-weight: 500;
    font-size: .88rem;
    padding: .6rem .8rem;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.dropdown-item i {
    color: var(--gold-deep);
}

.dropdown-item:hover {
    background: var(--ivory);
    color: var(--chilli);
}

@media (min-width:992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.header-cta {
    background: var(--chilli);
    color: #fff;
    padding: .55rem 1.1rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.header-cta:hover {
    background: var(--chilli-deep);
    color: #fff;
}


.hero-tagline {
    text-align: center;
    color: var(--ivory);
    padding: 1.6rem 1rem .8rem;
}

.hero-tagline .eyebrow {
    justify-content: center;
    color: var(--gold);
}

.hero-tagline .eyebrow::before {
    background: var(--gold);
}

.hero-tagline h1 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 600;
    margin: .4rem 0 0;
}

.hero-tagline h1 span {
    color: var(--gold);
    font-style: italic;
}

#heroCarousel {
    width: 100%;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 75vh;
    min-height: 340px;
    max-height: 640px;
    object-fit: 100% 100%;
    display: block;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(36, 26, 18, .55);
    border-radius: 50%;
    opacity: 1;
}

#heroCarousel .carousel-control-prev {
    left: 20px;
}

#heroCarousel .carousel-control-next {
    right: 20px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: var(--gold);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 1.2rem;
    height: 1.2rem;
}

#heroCarousel .carousel-indicators {
    margin-bottom: 1.1rem;
}

#heroCarousel .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    opacity: .5;
    border: none;
    margin: 0 5px;
}

#heroCarousel .carousel-indicators .active {
    opacity: 1;
    background: var(--gold);
}

@media (max-width:576px) {
    #heroCarousel .carousel-item img {
        height: 25vh;
        min-height: 200px;
    }
}

/* ---------- SPICE HEAP DIVIDER ---------- */
.heap-divider {
    display: block;
    width: 100%;
    height: 44px;
    margin-bottom: -44px;
}

/* ---------- FEATURE STRIP ---------- */
.feature-strip {
    background: var(--cream-card);
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.feature-item .ic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chilli);
    font-size: 1.2rem;
    flex: none;
}

.feature-item strong {
    display: block;
    font-size: .92rem;
}

.feature-item small {
    color: #6b6053;
    font-size: .78rem;
}

/* ---------- ABOUT / WELCOME ---------- */
.about-section {
    padding: 5rem 0;
    background: var(--ivory);
}

.about-photo-wrap {
    position: relative;
}

.about-photo-main {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(36, 26, 18, .3);
}

.about-photo-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -28px;
    left: -28px;
    background: var(--chilli);
    color: #fff;
    border-radius: 4px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 20px 35px -10px rgba(178, 58, 46, .5);
    max-width: 190px;
}

.about-badge .big {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge small {
    font-size: .72rem;
    opacity: .9;
    letter-spacing: .04em;
}

.about-stats {
    border-top: 1px solid var(--line);
    margin-top: 2.2rem;
    padding-top: 1.8rem;
}

.about-stats .stat b {
    font-family: var(--font-display);
    font-size: 1.9rem;
    display: block;
    color: var(--chilli);
}

.about-stats .stat span {
    text-align: center;
    font-size: .78rem;
    color: #000; 
    font-weight: 700;
}

/* ---------- PRODUCT CARDS ---------- */
.products-section {
    padding: 5rem 0;
}

.products-section.on-ivory {
    background: var(--ivory);
}

.products-section.on-cream {
    background: var(--cream-card);
}

.product-card {
    background: var(--cream-card);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px -18px rgba(36, 26, 18, .28);
}

.prod-photo {
    position: relative;
    overflow: hidden;
}

.prod-photo img {
    width: 100%;
    height: 100%;
    object-fit: 100% 100%;
    transition: transform .5s ease;
}

.product-card:hover .prod-photo img {
    transform: scale(1.08);
}

.prod-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    opacity: .82;
}

.prod-body {
    padding: 1rem 1.15rem 1.15rem;
}

.prod-body h6 {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .15rem;
    color: var(--ink);
}

.prod-body .pack {
    font-size: .74rem;
    color: #8a7d6a;
}

.prod-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .7rem;
}

.prod-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--chilli);
}

.prod-price sup {
    font-size: .65em;
}

.prod-tag {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .25rem .55rem;
    border-radius: 20px;
}

.prod-tag.gold {
    background: rgba(217, 163, 43, .16);
    color: var(--gold-deep);
}

.prod-tag.green {
    background: rgba(76, 107, 79, .14);
    color: var(--cardamom-deep);
}

/* ---------- WHY CHOOSE (dark) ---------- */
.why-section {
    background: var(--ink);
    color: #efe6d6;
    padding: 5.5rem 0;
}

.why-section .eyebrow {
    color: var(--gold);
}

.why-section .eyebrow::before {
    background: var(--gold);
}

.why-section .section-title {
    color: #fff;
}

.why-section .lead-text {
    color: #c8bba0;
    max-width: 640px;
}

.why-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 4px;
    padding: 1.8rem 1.5rem;
    height: 100%;
    transition: .25s ease;
}

.why-card:hover {
    background: rgba(217, 163, 43, .09);
    border-color: var(--gold);
}

.why-card .ic {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
}

.why-card h5 {
    font-weight: 700;
    font-size: 1.02rem;
    color: #fff;
}

.why-card p {
    color: #b9ac91;
    font-size: .87rem;
    margin: 0;
}

/* ---------- HOW WE WORK ---------- */
.work-section {
    padding: 5.5rem 0;
    background: var(--ivory);
}

.work-step {
    position: relative;
    padding: 0 1rem;
    text-align: center;
}

.work-step .num {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.4px var(--gold-deep);
    line-height: 1;
    margin-bottom: .6rem;
}

.work-step h5 {
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: .5rem;
}

.work-step p {
    font-size: .85rem;
    color: #6b6053;
}

.work-line {
    display: none;
}

@media (min-width:992px) {
    .work-line {
        display: block;
        position: absolute;
        top: 1.9rem;
        right: -24%;
        width: 48%;
        height: 1px;
        background: repeating-linear-gradient(90deg, var(--gold-deep) 0 8px, transparent 8px 16px);
    }

    .work-col:last-child .work-line {
        display: none;
    }
}

/* ---------- TRUST STRIP ---------- */
.trust-section {
    background: var(--cream-card);
    padding: 4.5rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-badge {
    text-align: center;
    padding: 1rem;
}

.trust-badge .ic {
    font-size: 2.1rem;
    color: var(--chilli);
    margin-bottom: .6rem;
}

.trust-badge h6 {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .25rem;
}

.trust-badge p {
    font-size: .78rem;
    color: #6b6053;
    margin: 0;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
    background: linear-gradient(120deg, var(--chilli), var(--chilli-deep));
    color: #fff;
    padding: 3rem 0;
}

.cta-strip h3 {
    font-weight: 600;
    margin-bottom: .3rem;
}

.cta-strip p {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 0;
    font-size: .92rem;
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--ink);
    color: #c8bba0;
    padding-top: 4.5rem;
}

footer .foot-logo {
    height: 40px;
    margin-bottom: 1rem;
}

footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

footer a {
    color: #c8bba0;
    text-decoration: none;
    font-size: .88rem;
}

footer a:hover {
    color: var(--gold);
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: .65rem;
}

.foot-contact li {
    display: flex;
    gap: .6rem;
    font-size: .86rem;
    align-items: flex-start;
}

.foot-contact i {
    color: var(--gold);
    margin-top: .2rem;
}

.foot-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
}

.foot-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 3rem;
    padding: 1.2rem 0;
    font-size: .8rem;
    color: #8a7d6a;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/*=============================
Products Section
==============================*/

.products-section {
    padding: 90px 0;
    background: #fafafa;
}

/*=============================
Heading
==============================*/


.section-title span {

    color: #ef7b18;

    font-size: 15px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 3px;

}

.section-title h2 {

    margin-top: 12px;

    font-size: 42px;

    font-weight: 700;

    color: #444;

}

.section-title p {

    margin-top: 18px;

    color: #777;

    font-size: 16px;

    max-width: 650px;

    margin-left: auto;

    margin-right: auto;

    line-height: 28px;

}

/*=============================
Grid
==============================*/

.products-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;

}

/*=============================
Card
==============================*/

.product-card {

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    transition: .35s;

    border: 1px solid #ededed;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);

    position: relative;

}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 45px rgba(0, 0, 0, .12);

}

/*=============================
Image
==============================*/

.product-card img {

    width: 100%;

    object-fit: contain;

    transition: .15s;
    padding: 5px;

}

.product-card:hover img {

    transform: scale(1.08);

}

/*=============================
Product Name
==============================*/

.product-card h3 {

    text-align: center;

    font-size: 17px;

    color: #222;

    padding: 0 10px;
    margin-top: 20px;
    margin-bottom: 10px;

    font-weight: 700;

}

/*=============================
Size + Price
==============================*/

.product-meta {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin: 0 25px 22px;

    padding: 6px 15px;

    background: #fff8f1;

    border-radius: 10px;

}

.product-meta span {

    color: #666;

    font-weight: 500;

}

.product-meta strong {

    color: #ef7b18;

    font-size: 20px;

    font-weight: 700;

}

/*=============================
Button
==============================*/

.product-card a {

    display: block;

    margin: 0 25px 25px;

    text-align: center;

    text-decoration: none;

    padding: 10px;

    border-radius: 10px;

    background: #ef7b18;

    color: #fff;

    font-weight: 600;

    transition: .25s;

}

.product-card a:hover {

    background: #4d4d4d;

}

/*=============================
Badge
==============================*/

/* .product-card::before{

    content:"Premium";

    position:absolute;

    top:15px;

    left:-35px;

    width:140px;

    text-align:center;

    background:#ef7b18;

    color:#fff;

    transform:rotate(-45deg);

    font-size:12px;

    padding:6px 0;

    font-weight:600;

} */

.product-card img {
    background: #fffdf9;
}

.product-card {

    border-top: 4px solid #ef7b18;

}

.product-card a:hover {

    letter-spacing: 1px;

}


.product-card {

    cursor: pointer;

}

/*=============================
Responsive
==============================*/

@media(max-width:1200px) {

    .products-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:991px) {

    .section-title h2 {

        font-size: 34px;

    }

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

    }

}

@media(max-width:767px) {

    .products-section {

        padding: 60px 0;

    }

    .section-title {

        margin-bottom: 40px;

    }

    .section-title h2 {

        font-size: 28px;

    }

    .section-title p {

        font-size: 15px;

        line-height: 26px;

    }

    .products-grid {

        grid-template-columns: 1fr;

    }

    .product-card img {

        height: 220px;

        padding: 20px;

    }

    .product-card h3 {

        font-size: 20px;

    }

    .product-meta strong {

        font-size: 20px;

    }

}

.breadcrumb-area {

    padding: 40px 0;

    background: #faf7f2;

    position: relative;

    overflow: hidden;

    border-bottom: 1px solid #eee;

}

.breadcrumb-area::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: url("./kanso/section.png");

    opacity: .87;

}

.breadcrumb-content {

    position: relative;

    z-index: 2;

    text-align: center;

}

.breadcrumb-content ul {

    display: flex;

    justify-content: center;

    gap: 12px;

    list-style: none;

    margin-bottom: 5px;

}

.breadcrumb-content ul li {

    color: #777;

    font-size: 15px;

}

.breadcrumb-content ul li a {

    color: #ef7b18;

    text-decoration: none;

    font-weight: 600;

}

.breadcrumb-content h1 {

    font-size: 35px;

    font-weight: 700;

    color: #444;

    margin-bottom: 5px;

}

.breadcrumb-content p {

    font-size: 16px;

    color: #777;

    max-width: 600px;

    margin: auto;

    line-height: 28px;

}

.section-titlec {
    text-align: center;
    margin-bottom: 20px;
}

.kanso-container {

    width: 92%;

    max-width: 1320px;

    margin: auto;

}


/*=========================
    SECTION
    =========================*/

.kanso-product-section {

    padding: 80px 0;

}


/*=========================
    MAIN WRAPPER
    =========================*/

.kanso-product-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;

}



/*=========================
    LEFT GALLERY
    =========================*/

.kanso-gallery {

    position: sticky;

    top: 30px;

}



/*=========================
    MAIN IMAGE
    =========================*/

.kanso-main-image {

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    box-shadow:

        0 15px 40px rgba(0, 0, 0, .07);

    overflow: hidden;

}



.kanso-main-image img {

    transition: .5s;
    width: 100%;
    cursor: zoom-in;

}


.kanso-main-image:hover img {

    transform: scale(1.08);

}



/*=========================
    THUMBNAILS
    =========================*/

.kanso-thumbnail-gallery {

    display: flex;

    gap: 15px;

    margin-top: 20px;

}


.kanso-thumb {

    width: 85px;

    height: 85px;

    background: #fff;

    border-radius: 15px;

    overflow: hidden;

    cursor: pointer;

    transition: .35s;

    border: 2px solid transparent;

    padding: 8px;

    box-shadow:

        0 10px 25px rgba(0, 0, 0, .05);

}


.kanso-thumb img {

    height: 100%;

    object-fit: contain;

}


.kanso-thumb:hover {

    border-color: #d28725;

    transform: translateY(-5px);

}


.kanso-thumb.active {

    border-color: #d28725;

}



/*=========================
    RIGHT CONTENT
    =========================*/

.kanso-product-content {

    background: #fff;

    border-radius: 24px;

    padding: 45px;

    box-shadow:

        0 18px 50px rgba(0, 0, 0, .07);

}



/*=========================
    CATEGORY
    =========================*/

.kanso-category {

    display: inline-block;

    background: #fff7ea;

    color: #b87812;

    padding: 8px 18px;

    border-radius: 40px;

    font-size: 13px;

    letter-spacing: 1px;

    text-transform: uppercase;

    font-weight: 600;

    margin-bottom: 10px;

}



/*=========================
    TITLE
    =========================*/

.kanso-product-content h1 {

    font-size: 30px;

    font-weight: 700;

    color: #1d1d1d;

    margin-bottom: 5px;

    line-height: 1.25;

}



/*=========================
    RATING
    =========================*/

.kanso-rating {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 28px;

    color: #ffb400;

    font-size: 22px;

}


.kanso-rating span {

    color: #666;

    font-size: 15px;

}



/*=========================
    PRICE
    =========================*/

.kanso-price-box {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 8px;

}


.kanso-price-box h2 {

    color: #c77d19;

    font-size: 42px;

    font-weight: 700;

}


.kanso-price-box del {

    color: #999;

    font-size: 24px;

}


.kanso-discount {

    background: #2e7d32;

    color: #fff;

    padding: 6px 12px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 600;

}



/*=========================
    GST
    =========================*/

.kanso-tax {

    color: #888;

    font-size: 14px;

    margin-bottom: 20px;

}



/*=========================
    STOCK
    =========================*/

.kanso-stock {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #2e7d32;

    font-weight: 600;

    margin-bottom: 28px;

}


.stock-dot {

    width: 12px;

    height: 12px;

    background: #2e7d32;

    border-radius: 50%;

}



/*=========================
    DESCRIPTION
    =========================*/

.kanso-short-description {

    margin-bottom: 35px;

}


.kanso-short-description p {

    color: #666;

    font-size: 16px;

}



/*=========================
    FEATURES
    =========================*/

.kanso-feature-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 35px;

}


.kanso-feature-list div {

    background: #fafafa;

    border: 1px solid #ececec;

    padding: 15px;

    border-radius: 12px;

    color: #444;

    font-size: 15px;

    transition: .35s;

}


.kanso-feature-list div:hover {

    background: #fff8ef;

    border-color: #d28725;

}



/*=========================
    WEIGHT
    =========================*/

.kanso-weight {

    margin-bottom: 35px;

}


.kanso-weight label {

    display: block;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 12px;

}


.kanso-weight select {

    width: 100%;

    height: 56px;

    border: 1px solid #ddd;

    border-radius: 12px;

    padding: 0 18px;

    background: #fff;

    transition: .35s;

    font-size: 15px;

}


.kanso-weight select:focus {

    border-color: #d28725;

}

.kanso-buy-btn {

    width: 100%;

    height: 60px;

    border: none;

    border-radius: 14px;

    background: linear-gradient(135deg, #d78b28, #b96d12);

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

    box-shadow: 0 12px 25px rgba(183, 109, 18, .28);

    position: relative;

    overflow: hidden;

}

.kanso-buy-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 20px 40px rgba(183, 109, 18, .35);

}

.kanso-buy-btn:active {

    transform: scale(.98);

}



/*==============================
TRUST BOXES
==============================*/

.kanso-trust {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 35px;

}

.kanso-trust div {

    background: #fafafa;

    border: 1px solid #ececec;

    border-radius: 15px;

    padding: 18px;

    text-align: center;

    font-size: 14px;

    color: #000;

    transition: .35s;

}

.kanso-trust div:hover {

    transform: translateY(-6px);

    background: #fff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);

}



/*==============================
POPUP OVERLAY
==============================*/

.kanso-popup-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .55);

    display: flex;

    align-items: center;

    justify-content: center;

    visibility: hidden;

    opacity: 0;

    transition: .35s;

    z-index: 99999;

    backdrop-filter: blur(8px);

}

.kanso-popup-overlay.active {

    visibility: visible;

    opacity: 1;

}



/*==============================
POPUP
==============================*/

.kanso-popup {

    width: 520px;

    max-width: 92%;

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    position: relative;

    transform: translateY(30px);

    transition: .35s;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);

}

.kanso-popup-overlay.active .kanso-popup {

    transform: translateY(0);

}



/*==============================
CLOSE BUTTON
==============================*/

.popup-close {

    position: absolute;

    right: 20px;

    top: 18px;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background: #f5f5f5;

    cursor: pointer;

    font-size: 24px;

    transition: .3s;

}

.popup-close:hover {

    background: #d78b28;

    color: #fff;

}



/*==============================
POPUP TITLE
==============================*/

.kanso-popup h2 {

    font-size: 30px;

    margin-bottom: 10px;

    color: #222;

}

.kanso-popup p {

    color: #666;

    margin-bottom: 25px;

}



/*==============================
FORM
==============================*/

#whatsappForm {

    display: flex;

    flex-direction: column;

    gap: 18px;

}



/*==============================
INPUTS
==============================*/

#whatsappForm input,
#whatsappForm select,
#whatsappForm textarea {

    width: 100%;

    border: 1px solid #ddd;

    border-radius: 12px;

    padding: 10px 18px;

    background: #fff;

    transition: .3s;

    font-size: 15px;

}

#whatsappForm textarea {

    resize: none;

    min-height: 130px;

}

#whatsappForm input:focus,
#whatsappForm select:focus,
#whatsappForm textarea:focus {

    border-color: #d78b28;

    box-shadow: 0 0 0 4px rgba(215, 139, 40, .12);

}



/*==============================
READ ONLY FIELD
==============================*/

#productName {

    background: #f8f8f8;

}



/*==============================
SUBMIT BUTTON
==============================*/

.submit-btn {

    height: 58px;

    border: none;

    border-radius: 14px;

    background: #25D366;

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

}

.submit-btn:hover {

    background: #1eba57;

    transform: translateY(-2px);

}



/*==============================
SCROLLBAR
==============================*/

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-thumb {

    background: #d78b28;

    border-radius: 20px;

}

::-webkit-scrollbar-track {

    background: #eee;

}



/*==============================
TABLET
==============================*/

@media(max-width:992px) {

    .kanso-product-wrapper {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .kanso-gallery {

        position: relative;

        top: 0;

    }

    .kanso-product-content {

        padding: 35px;

    }

    .kanso-product-content h1 {

        font-size: 30px;

    }

    .kanso-price-box h2 {

        font-size: 28px;

    }

}



/*==============================
MOBILE
==============================*/

@media(max-width:768px) {

    .kanso-product-section {

        padding: 50px 0;

    }

    .kanso-product-content {

        padding: 25px;

        border-radius: 18px;

    }

    .kanso-main-image {

        padding: 20px;

    }

    .kanso-feature-list {

        grid-template-columns: 1fr;

    }

    .kanso-trust {

        grid-template-columns: 1fr;

    }

    .kanso-product-content h1 {

        font-size: 28px;

    }

    .kanso-price-box {

        flex-wrap: wrap;

        gap: 10px;

    }

    .kanso-price-box h2 {

        font-size: 30px;

    }

    .kanso-popup {

        padding: 25px;

        border-radius: 18px;

    }

    .kanso-popup h2 {

        font-size: 24px;

    }

}



/*==============================
SMALL MOBILE
==============================*/

@media(max-width:480px) {

    .kanso-container {

        width: 94%;

    }

    .kanso-thumbnail-gallery {

        justify-content: center;

        flex-wrap: wrap;

    }

    .kanso-thumb {

        width: 70px;

        height: 70px;

    }

    .kanso-category {

        font-size: 11px;

    }

    .kanso-buy-btn {

        height: 55px;

        font-size: 16px;

    }

    .submit-btn {

        height: 55px;

        font-size: 16px;

    }

}

.btn-ripple {

    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, .35);

    transform: scale(0);

    animation: ripple .6s linear;

    pointer-events: none;

}

@keyframes ripple {

    to {

        transform: scale(4);

        opacity: 0;

    }

}

.btn-ripple {

    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, .35);

    transform: scale(0);

    animation: ripple .6s linear;

    pointer-events: none;

}

@keyframes ripple {

    to {

        transform: scale(4);

        opacity: 0;

    }

}

.kanso-container{
    width:92%;
    max-width:1320px;
    margin:auto;
}

/*==================================================
                SECTION
==================================================*/

.kanso-contact-section{

    padding:90px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.kanso-contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1.08fr;

    gap:70px;

    align-items:center;

}

/*==================================================
                LEFT SIDE
==================================================*/

.kanso-contact-info{

    position:relative;

}

.kanso-contact-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:50px;

    background:#fff5e8;

    color:#b56b0b;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.kanso-contact-info h2{

    font-size: 32px;

    line-height:1.25;

    color:#000;

    margin-bottom:10px;

    font-weight:700;

}

.kanso-contact-text{

    color:#666;

    font-size:17px;

    line-height:1.8;

    margin-bottom:40px;

}

/*==================================================
                CONTACT CARDS
==================================================*/

.kanso-contact-card{

    display:flex;

    align-items:flex-start;

    gap:22px;

    background:#ffffff;

    padding:28px;

    border-radius:22px;

    margin-bottom:22px;

    border:1px solid #eeeeee;

    transition:.35s;

    box-shadow:

    0 12px 40px rgba(0,0,0,.05);

}

.kanso-contact-card:hover{

    transform:translateY(-8px);

    border-color:#d99b34;

    box-shadow:

    0 25px 60px rgba(0,0,0,.08);

}

.kanso-contact-icon{

    width:68px;

    height:68px;

    min-width:68px;

    border-radius:18px;

    background:linear-gradient(135deg,#e59b2c,#c97c0c);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:24px;

    transition:.35s;

}

.kanso-contact-card:hover .kanso-contact-icon{

    transform:rotate(-8deg) scale(1.08);

}

.kanso-contact-content{

    flex:1;

}

.kanso-contact-content h5{

    font-size:22px;
font-weight: 700;
    margin-bottom:12px;

    color:#000;

}

.kanso-contact-content p{

    color:#000;

    line-height:1.8;

    font-size:15px;

}

.kanso-contact-content a{

    display:block;

    color:#000;

    margin-bottom:8px;

    transition:.3s;

    font-size:15px;

}

.kanso-contact-content a:hover{

    color:#d48a22;

    padding-left:8px;

}

/*==================================================
                SOCIAL
==================================================*/

.kanso-social{

    display:flex;

    gap:16px;

    margin-top:35px;

}

.kanso-social a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    color:#000;

    border:1px solid #ececec;

    transition:.35s;

    font-size:18px;

    box-shadow:

    0 10px 30px rgba(0,0,0,.05);

}

.kanso-social a:hover{

    background:#d58d27;

    color:#ffffff;

    transform:translateY(-6px);

}

/*==================================================
                RIGHT FORM
==================================================*/

.kanso-contact-form-box{

    background:#ffffff;

    border-radius:28px;

    padding: 30px 40px;

    border:1px solid #eeeeee;

    box-shadow:

    0 30px 80px rgba(0,0,0,.06);

    position:relative;

}

.kanso-contact-form-box::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:#fff4e2;

    border-radius:50%;

    top:-90px;

    right:-90px;

    opacity:.7;

}

.kanso-contact-form-box::after{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    background:#fff7ef;

    border-radius:50%;

    bottom:-70px;

    left:-70px;

}

.kanso-contact-form-box>*{

    position:relative;

    z-index:2;

}

.kanso-contact-form-box h2{

    font-size:30px;

    font-weight: 700;
    color:#000;

    margin:18px 0 15px;

}

.kanso-contact-form-box p{

    color:#666;

    margin-bottom:35px;

    line-height:1.8;

}

/*==================================================
                FORM GRID
==================================================*/

.kanso-form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}
/*==================================================
                INPUT BOX
==================================================*/

.kanso-input-box{

    position:relative;

    margin-bottom:25px;

}

.kanso-input-box input,
.kanso-input-box textarea{

    width:100%;

    background:#ffffff;

    border:1px solid #e7e7e7;

    border-radius:16px;

    padding:18px 20px;

    font-size:15px;

    color:#222;

    transition:.35s;

}

.kanso-input-box textarea{

    resize:none;

    min-height:170px;

}

.kanso-input-box input:focus,
.kanso-input-box textarea:focus{

    border-color:#d58b28;

    box-shadow:0 0 0 5px rgba(213,139,40,.12);

}

.kanso-input-box label{

    position:absolute;

    left:20px;

    top:18px;

    color:#888;

    background:#fff;

    padding:0 6px;

    pointer-events:none;

    transition:.35s;

    font-size:15px;

}

.kanso-input-box input:focus+label,
.kanso-input-box input:valid+label,
.kanso-input-box textarea:focus+label,
.kanso-input-box textarea:valid+label{

    top:-10px;

    font-size:12px;

    color:#d58b28;

    font-weight:600;

}

/*==================================================
                BUTTON
==================================================*/

.kanso-contact-btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:16px;

    background:linear-gradient(135deg,#df9b38,#c7770d);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    overflow:hidden;

    position:relative;

    box-shadow:0 18px 40px rgba(199,119,13,.28);

}

.kanso-contact-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 28px 55px rgba(199,119,13,.35);

}

.kanso-contact-btn i{

    transition:.35s;

}

.kanso-contact-btn:hover i{

    transform:translateX(8px);

}

/*==================================================
                SECTION ANIMATION
==================================================*/

.kanso-contact-info,
.kanso-contact-form-box{

    animation:fadeUp .9s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(45px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:991px){

.kanso-contact-wrapper{

grid-template-columns:1fr;

gap:55px;

}

.kanso-contact-info h2{

font-size:30px;

}

.kanso-contact-form-box{

padding:40px;

}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:768px){

.kanso-contact-section{

padding:70px 0;

}

.kanso-form-grid{

grid-template-columns:1fr;

}

.kanso-contact-info h2{

font-size:30px;

}

.kanso-contact-form-box h2{

font-size:30px;

}

.kanso-contact-form-box{

padding:30px;

border-radius:22px;

}

.kanso-contact-card{

padding: 10px 20px;

gap:18px;

}

.kanso-contact-icon{

width:60px;

height:60px;

min-width:60px;

font-size:20px;

}

.kanso-contact-content h5{

font-size:20px;

}

}

/*==================================================
                SMALL MOBILE
==================================================*/

@media(max-width:576px){

.kanso-container{

width:94%;

}

.kanso-contact-section{

padding:55px 0;

}

.kanso-contact-info h2{

font-size:28px;

}

.kanso-contact-text{

font-size:15px;

}

.kanso-contact-form-box{

padding:24px;

}

.kanso-contact-form-box h2{

font-size:26px;

}

.kanso-contact-form-box p{

font-size:14px;

}

.kanso-contact-card{

border-radius:18px;

}

.kanso-contact-btn{

height:56px;

font-size:16px;

}

.kanso-social{

justify-content:center;

}

.kanso-social a{

width:48px;

height:48px;

}

}

/*==================================================
                PREMIUM HOVER
==================================================*/

.kanso-contact-form-box:hover{

    transform:translateY(-6px);

    transition:.4s;

    box-shadow:0 35px 90px rgba(0,0,0,.08);

}

.kanso-contact-card:hover .kanso-contact-content h5{

    color:#d58b28;

}

/*==================================================
                INPUT PLACEHOLDER
==================================================*/

.kanso-input-box input::placeholder,
.kanso-input-box textarea::placeholder{

    color:transparent;

}

/*==================================================
                SELECTION
==================================================*/

::selection{

    background:#d58b28;

    color:#fff;

}

/*==================================================
                SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#d58b28;

    border-radius:30px;

}

::-webkit-scrollbar-track{

    background:#f5f5f5;

}

/* =========================================
   PREMIUM ABOUT US SECTION
========================================= */

.lux-about-section {
    position: relative;
    padding: 110px 7%;
    background: #ffffff;
    overflow: hidden;
}

.lux-about-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 90px;
}

/* =========================================
   IMAGE AREA
========================================= */

.lux-about-image-wrap {
    position: relative;
    padding: 0 35px 35px 0;
}

.lux-about-image {
    position: relative; 
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}

.lux-about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 55%,
        rgba(0,0,0,0.18)
    );
}

.lux-about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.lux-about-image:hover img {
    transform: scale(1.05);
}

/* Decorative Border */

.lux-about-image-wrap::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: 0;
    bottom: 0;
    border-right: 1px solid #c9a45c;
    border-bottom: 1px solid #c9a45c;
}

/* =========================================
   EXPERIENCE BADGE
========================================= */

.lux-about-experience {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: 185px;
    height: 125px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    z-index: 3;
}

.lux-experience-number {
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    color: #b28a45;
}

.lux-experience-text {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   CONTENT
========================================= */

.lux-about-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #b28a45;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.lux-about-label::before {
    content: "";
    width: 35px;
    height: 1px;
    background: #b28a45;
}

.lux-about-content h2 {
    margin: 0 0 25px;
    color: #1d1d1d;
    font-size: 35px;
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -1.2px;
}

.lux-about-content h2 span {
    display: block;
    color: #b28a45;
    font-weight: 500;
    font-style: italic;
}

.lux-about-intro {
    margin: 0 0 18px;
    color: #333;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
}

.lux-about-description {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.9;
}

/* =========================================
   FEATURES
========================================= */

.lux-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 35px 0;
}

.lux-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.lux-feature-icon {
    min-width: 48px;
    height: 48px;
    border: 1px solid #dfc99e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b28a45;
    font-size: 17px;
    transition: 0.3s ease;
}

.lux-about-feature:hover .lux-feature-icon {
    background: #b28a45;
    color: #fff;
}

.lux-about-feature h4 {
    margin: 0 0 5px;
    color: #222;
    font-size: 14px;
    font-weight: 600;
}

.lux-about-feature p {
    margin: 0;
    color: #888;
    font-size: 12px;
    line-height: 1.6;
}

/* =========================================
   BUTTON
========================================= */

.lux-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 25px;
    background: #1d1d1d;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.lux-about-btn i {
    font-size: 12px;
    transition: transform 0.35s ease;
}

.lux-about-btn:hover {
    background: #b28a45;
    color: #fff;
}

.lux-about-btn:hover i {
    transform: translateX(5px);
}

/* =========================================
   STATS
========================================= */

.lux-about-stats {
    max-width: 1250px;
    margin: 90px auto 0;
    padding-top: 45px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lux-stat-item {
    text-align: center;
    flex: 1;
}

.lux-stat-item strong {
    display: block;
    color: #b28a45;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.lux-stat-item span {
    display: block;
    margin-top: 7px;
    color: #777;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.lux-stat-divider {
    width: 1px;
    height: 45px;
    background: #dedede;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .lux-about-section {
        padding: 80px 5%;
    }

    .lux-about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .lux-about-image {
        height: 500px;
    }

    .lux-about-content h2 {
        font-size: 42px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .lux-about-section {
        padding: 65px 20px;
    }

    .lux-about-container {
        gap: 45px;
    }

    .lux-about-image-wrap {
        padding-right: 20px;
        padding-bottom: 25px;
    }

    .lux-about-image {
        height: 420px;
    }

    .lux-about-experience {
        width: 155px;
        height: 100px;
        bottom: 45px;
    }

    .lux-experience-number {
        font-size: 32px;
    }

    .lux-experience-text {
        font-size: 10px;
    }

    .lux-about-content h2 {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .lux-about-intro {
        font-size: 15px;
    }

    .lux-about-features {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .lux-about-stats {
        margin-top: 60px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
    }

    .lux-stat-divider {
        display: none;
    }

    .lux-stat-item strong {
        font-size: 27px;
    }

}

/* =========================================================
   PREMIUM HOW WE WORK
========================================================= */

.premium-workflow-section {
    position: relative;
    padding: 50px 6%;
    background: #faf9f6;
    overflow: hidden;
}


/* ---------------------------------------------------------
   BACKGROUND DECORATION
--------------------------------------------------------- */

.premium-workflow-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
    border: 1px solid rgba(178, 138, 69, 0.10);
    border-radius: 50%;
}

.premium-workflow-section::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    bottom: -350px;
    right: -350px;
    border: 1px solid rgba(178, 138, 69, 0.08);
    border-radius: 50%;
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.premium-workflow-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.premium-workflow-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;

    color: #b28a45;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.premium-workflow-eyebrow::before,
.premium-workflow-eyebrow::after {
    content: "";
    width: 30px;
    height: 1px;
    background: #b28a45;
}

.premium-workflow-heading h2 {
    margin: 0;
    color: #202020;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.premium-workflow-heading h2 span {
    color: #b28a45;
    font-style: italic;
    font-weight: 500;
}

.premium-workflow-heading p {
    max-width: 570px;
    margin: 20px auto 0;

    color: #777;
    font-size: 14px;
    line-height: 1.9;
}


/* ---------------------------------------------------------
   WORKFLOW CONTAINER
--------------------------------------------------------- */

.premium-workflow {
    position: relative;
    z-index: 2;

    max-width: 1050px;
    margin: auto;
}


/* ---------------------------------------------------------
   CENTER LINE
--------------------------------------------------------- */

.premium-workflow::before {
    content: "";
    position: absolute;

    top: 0;
    bottom: 0;
    left: 50%;

    width: 1px;

    background: linear-gradient(
        to bottom,
        transparent,
        #d8bd8a 8%,
        #d8bd8a 92%,
        transparent
    );

    transform: translateX(-50%);
}


/* ---------------------------------------------------------
   STEP
--------------------------------------------------------- */

.premium-work-step {
    position: relative;

    width: 100%;
    min-height: 180px;

    display: flex;
    align-items: center;

    margin-bottom: 25px;
}


/* ---------------------------------------------------------
   LEFT / RIGHT ALIGNMENT
--------------------------------------------------------- */

.premium-work-left {
    justify-content: flex-start;
    padding-right: 50%;
}

.premium-work-right {
    justify-content: flex-end;
    padding-left: 50%;
}


/* ---------------------------------------------------------
   CONTENT BOX
--------------------------------------------------------- */

.premium-work-content {
    position: relative;

    width: 430px;
    padding: 28px 32px;

    background: rgba(255,255,255,0.86);

    border: 1px solid #ece7dc;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.045);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.premium-work-left .premium-work-content {
    margin-right: 35px;
}

.premium-work-right .premium-work-content {
    margin-left: 35px;
}


/* ---------------------------------------------------------
   CONTENT HOVER
--------------------------------------------------------- */

.premium-work-content:hover {
    transform: translateY(-7px);

    border-color: #d6bd8c;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.09);
}


/* ---------------------------------------------------------
   SMALL LABEL
--------------------------------------------------------- */

.premium-work-small {
    display: block;

    margin-bottom: 9px;

    color: #b28a45;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* ---------------------------------------------------------
   TITLE
--------------------------------------------------------- */

.premium-work-content h3 {
    margin: 0 0 10px;

    color: #242424;

    font-size: 20px;
    font-weight: 600;
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.premium-work-content p {
    margin: 0;

    color: #7b7b7b;

    font-size: 13px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   NUMBER
--------------------------------------------------------- */

.premium-work-number {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    background: #faf9f6;

    border: 1px solid #c9a45c;

    color: #b28a45;

    font-size: 17px;
    font-weight: 600;

    letter-spacing: 1px;

    z-index: 5;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}


/* ---------------------------------------------------------
   NUMBER HOVER
--------------------------------------------------------- */

.premium-work-step:hover .premium-work-number {
    background: #b28a45;
    color: #ffffff;

    box-shadow:
        0 0 0 8px rgba(178,138,69,0.10);
}


/* ---------------------------------------------------------
   CONNECTOR DOT
--------------------------------------------------------- */

.premium-work-content::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 10px;
    height: 10px;

    border: 2px solid #b28a45;

    background: #faf9f6;

    border-radius: 50%;

    transform: translateY(-50%);
}

.premium-work-left .premium-work-content::after {
    right: -41px;
}

.premium-work-right .premium-work-content::after {
    left: -41px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .premium-workflow-section {
        padding: 40px 5%;
    }

    .premium-workflow-heading {
        margin-bottom: 65px;
    }

    .premium-workflow-heading h2 {
        font-size: 44px;
    }

    .premium-work-content {
        width: 360px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .premium-workflow-section {
        padding: 40px 10px;
    }

    .premium-workflow-heading {
        margin-bottom: 55px;
    }

    .premium-workflow-heading h2 {
        font-size: 36px;
    }

    .premium-workflow-heading p {
        font-size: 13px;
    }


    /* Move line to left */

    .premium-workflow::before {
        left: 25px;
        transform: none;
    }


    .premium-work-step {
        min-height: auto;
        margin-bottom: 35px;

        padding: 0 0 0 65px !important;

        display: block;
    }


    .premium-work-left,
    .premium-work-right {
        justify-content: flex-start;
    }


    .premium-work-content {
        width: 100%;
        margin: 0 !important;
        padding: 24px 22px;
    }


    .premium-work-number {
        left: 25px;
        top: 35px;

        width: 50px;
        height: 50px;

        transform: translate(-50%, -50%);

        font-size: 13px;
    }


    .premium-work-content::after {
        display: none;
    }


    .premium-work-content h3 {
        font-size: 17px;
    }


    .premium-work-content p {
        font-size: 12px;
    }

}