/* ===============================
   ARTISAN PAGE
=================================*/


.artisan-section {
    background: #f8f3eb;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title p {
    color: #C5A24A;
    font-size: 18px;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 42px;
    color: #4A1024;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: #C5A24A;
    margin: 20px auto;
}

/* Cards */

.artisan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 35px;
}

.artisan-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    gap: 25px;
    padding: 20px;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

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

.artisan-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink:0;
}
.artisan-content {
    flex: 1;
}

.artisan-content h3 {
    font-size: 28px;
    color: #4A1024;
    margin-bottom: 10px;
}

.artisan-content p:first-of-type {
    color: #8B6A22;
    font-weight: 600;
    margin-bottom: 8px;
}

.artisan-content span {
    display: block;
    color: #666;
    margin-bottom: 15px;
}

.artisan-content p:last-of-type {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.artisan-content a {
    display: inline-block;
    background: #6B1E35;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    transition: .3s;
}

.artisan-content a:hover {
    background: #C5A24A;
    color: #4A1024;
}

/* Mobile */

@media(max-width:768px) {

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

    .artisan-card {
        flex-direction: column;
        text-align: center;
    }

    .artisan-card img {
        width: 100%;
        height: 320px;
    }

    .artisan-hero h1 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 32px;
    }

}

/* ==========================================
        PREMIUM ARTISAN HERO
========================================== */

.artisan-hero {

    width: 100%;

    height: calc(100vh - 90px);

    min-height: auto;

    margin: 0;

    padding: 0;

    overflow: hidden;

}


/* SLIDER */

.artisan-slider {

    width: 100%;
    height: 100%;
    position: relative;

}


.artisan-slide {

    position: absolute;
    inset: 0;

    opacity: 0;

    transition: opacity 1.5s ease;

}


.artisan-slide.active {

    opacity: 1;
    z-index: 2;

}


/* IMAGE */

.artisan-slide img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    animation: heroZoom 10s ease-in-out infinite;

}


@keyframes heroZoom {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

    100% {

        transform: scale(1);

    }

}


/* OVERLAY */

.artisan-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(110deg,
            rgba(42, 25, 18, .78),
            rgba(120, 85, 45, .45),
            rgba(0, 0, 0, .18));

}


/* HERO CONTENT */

.artisan-hero-content {

    position: absolute;

    top: 45%;

    left: 8%;

    transform: translateY(-50%);

    max-width: 650px;

    color: white;

    z-index: 5;

    animation: heroText 1.2s ease;

}


@keyframes heroText {

    from {

        opacity: 0;

        transform: translate(-40px, -50%);

    }

    to {

        opacity: 1;

        transform: translate(0, -50%);

    }

}


/* TAG */

.hero-tag {

    display: inline-block;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .25);

    padding: 10px 22px;

    border-radius: 50px;

    margin-bottom: 25px;

    letter-spacing: 1px;

}


/* HEADING */

.artisan-hero-content h1 {

    font-size: 56px;

    line-height: 1.1;

    margin-bottom: 22px;

    font-family: "Playfair Display", serif;

}


.artisan-hero-content h3 {

    font-size: 19px;

    line-height: 1.6;

    font-weight: 400;

    margin-bottom: 25px;

    color: #F6F2EB;

}


/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-bottom: 20px;

}


.primary-btn {

    background: #B8863B;

    color: white;

    padding: 16px 38px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}


.primary-btn:hover {

    background: #D5A75C;

    transform: translateY(-5px);

}


.secondary-btn {

    padding: 16px 38px;

    border: 2px solid rgba(255, 255, 255, .9);

    color: white;

    border-radius: 50px;

    text-decoration: none;

    transition: .35s;

}


.secondary-btn:hover {

    background: white;

    color: #4A1024;

}


/* STATS */

.hero-stats {

    display: flex;

    gap: 28px;

    margin-top: 20px;

}


.hero-stats h2 {

    color: #F3D37B;

    font-size: 20px;

    margin-bottom: 8px;

}


.hero-stats p {

    color: white;

    opacity: .9;

}


/* SCROLL */

.scroll-indicator {

    position: absolute;

    left: 50%;

    bottom: 30px;

    transform: translateX(-50%);

    text-align: center;

    color: white;

    z-index: 10;

    animation: bounce 2s infinite;

}


.scroll-indicator span {

    display: block;

    font-size: 15px;

    letter-spacing: 1px;

}


.scroll-indicator i {

    margin-top: 8px;

    font-size: 24px;

}


@keyframes bounce {

    0%,
    100% {

        transform: translate(-50%, 0);

    }

    50% {

        transform: translate(-50%, 10px);

    }

}


/* DESKTOP */

@media(min-width:1600px) {

    .artisan-hero-content h1 {

        font-size: 78px;

    }

}


/* TABLET */

@media(max-width:992px) {

    .artisan-hero {

        height: 650px;

    }

    .artisan-hero-content {

        left: 6%;
        max-width: 90%;

    }

    .artisan-hero-content h1 {

        font-size: 52px;

    }

    .hero-stats {

        gap: 35px;

    }

}


/* MOBILE */

@media(max-width:768px) {

    .artisan-hero {

        height: 520px;

        min-height: 520px;

    }

    .artisan-hero-content {

        left: 25px;
        right: 25px;

    }

    .hero-tag {

        font-size: 13px;

    }

    .artisan-hero-content h1 {

        font-size: 36px;

    }

    .artisan-hero-content h3 {

        font-size: 16px;

        line-height: 1.6;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-stats {

        display: none;

    }

    .scroll-indicator {

        display: none;

    }

}
/* =========================================
   ARTISAN HERO FULL VIEW FIX ONLY
========================================= */

.artisan-hero {

    height: calc(100vh - 80px);

    min-height: 720px;

}


/* Keep image properly filled */

.artisan-slide img {

    height: 100%;

    width: 100%;

    object-fit: cover;

}


/* Keep content vertically balanced */

.artisan-hero-content {

    top: 50%;

}


/* Remove any extra gap */

.artisan-slider {

    height: 100%;

}
/* =========================================
   ARTISAN HERO VISIBILITY + DESKTOP LOOK
========================================= */


/* Hero tag visibility */

.hero-tag {

    background: rgba(255, 255, 255, 0.22);

    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.45);

    backdrop-filter: blur(8px);

    text-shadow:

        0 2px 8px rgba(0, 0, 0, 0.5);

}





/* Make hero more desktop cinematic */

.artisan-hero {

    width: 100%;

    height: calc(100vh - 80px);

    min-height: 768px;

}





/* Improve heading visibility */

.artisan-hero-content h1 {

    text-shadow:

        0 4px 20px rgba(0, 0, 0, 0.65);

}





/* Artisan cards premium color effect */

.artisan-card {

    position: relative;

    border: 1px solid rgba(197, 162, 74, 0.25);

    overflow: hidden;

}





/* Color splash effect */

.artisan-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    top: -90px;

    right: -90px;

    background:

        radial-gradient(circle,

            rgba(197, 162, 74, 0.35),

            transparent 70%);

    transition: .5s;

}





.artisan-card:hover::before {

    transform: scale(1.5);

}





/* View Collection button upgrade */

.artisan-content a {


    background:

        linear-gradient(135deg,

            #6B1E35,

            #9B3A55);


    box-shadow:

        0 8px 20px rgba(107, 30, 53, 0.25);

}





.artisan-content a:hover {


    background:

        linear-gradient(135deg,

            #C5A24A,

            #E2C06B);


    color: #4A1024;

    transform: translateY(-4px);

}

/* ==========================================================
   SUTRIKA - BACK TO TOP BUTTON
========================================================== */

.sutrika-back-to-top {

    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 52px;
    height: 52px;

    border: 1px solid #C5A24A;

    border-radius: 50%;

    background: #4A1024;

    color: #C5A24A;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity .35s ease,
        visibility .35s ease,
        transform .35s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease;

    z-index: 9999;

}


/* Show button */

.sutrika-back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* Hover */

.sutrika-back-to-top:hover {

    background: #C5A24A;

    color: #4A1024;

    transform: translateY(-5px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .22);

}


/* Mobile */

@media (max-width: 768px) {

    .sutrika-back-to-top {

        right: 18px;
        bottom: 18px;

        width: 46px;
        height: 46px;

        font-size: 19px;

    }

}

/* ==========================================================
   SUTRIKA ARTISAN HERO — TABLET RESPONSIVE FIX
   SAME COMPACT HERO STYLE AS HOME + COLLECTION
   ========================================================== */

@media (min-width: 601px) and (max-width: 1024px) {

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

    .artisan-hero {

        width: 100% !important;

        height: 420px !important;

        min-height: 420px !important;

        max-height: 420px !important;

        margin: 0 !important;

        padding: 0 !important;

        overflow: hidden !important;

    }


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

    .artisan-slider {

        width: 100% !important;

        height: 100% !important;

        position: relative !important;

    }


    /* =========================================
       ARTISAN IMAGE
       ========================================= */

    .artisan-slide img {

        width: 100% !important;

        height: 100% !important;

        object-fit: cover !important;

        object-position: center center !important;

    }


    /* =========================================
       OVERLAY
       ========================================= */

    .artisan-overlay {

        background:
            linear-gradient(90deg,
                rgba(42, 25, 18, 0.82) 0%,
                rgba(80, 45, 30, 0.55) 38%,
                rgba(0, 0, 0, 0.12) 100%) !important;

    }


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

    .artisan-hero-content {

        top: 50% !important;

        left: 7% !important;

        right: auto !important;

        transform: translateY(-50%) !important;

        width: 46% !important;

        max-width: 46% !important;

        padding: 0 !important;

        z-index: 5 !important;

    }


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

    .hero-tag {

        padding: 6px 12px !important;

        margin-bottom: 12px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;

        letter-spacing: 0.7px !important;

        border-radius: 30px !important;

    }


    /* =========================================
       MAIN TITLE
       ========================================= */

    .artisan-hero-content h1 {

        font-size: clamp(2rem,
                4vw,
                3rem) !important;

        line-height: 1.05 !important;

        margin-bottom: 12px !important;

    }


    /* =========================================
       DESCRIPTION
       ========================================= */

    .artisan-hero-content h3 {

        max-width: 330px !important;

        font-size: 11px !important;

        line-height: 1.5 !important;

        margin-bottom: 16px !important;

    }


    /* =========================================
       BUTTONS
       ========================================= */

    .hero-buttons {

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        gap: 10px !important;

        margin-bottom: 10px !important;

    }


    /* =========================================
       PRIMARY BUTTON
       ========================================= */

    .primary-btn {

        padding: 10px 18px !important;

        min-width: 125px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;

        border-radius: 30px !important;

    }


    /* =========================================
       SECONDARY BUTTON
       ========================================= */

    .secondary-btn {

        padding: 9px 16px !important;

        min-width: 120px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;

        border-width: 1px !important;

        border-radius: 30px !important;

    }


    /* =========================================
       STATS
       ========================================= */

    .hero-stats {

        gap: 18px !important;

        margin-top: 10px !important;

    }


    .hero-stats h2 {

        font-size: 15px !important;

        margin-bottom: 4px !important;

    }


    .hero-stats p {

        font-size: 9px !important;

        margin: 0 !important;

    }


    /* =========================================
       SCROLL INDICATOR
       ========================================= */

    .scroll-indicator {

        bottom: 12px !important;

    }


    .scroll-indicator span {

        font-size: 9px !important;

    }


    .scroll-indicator i {

        font-size: 15px !important;

        margin-top: 4px !important;

    }

}








































































































/* ===============================
   ARTISAN PAGE
=================================*/


.artisan-section {
    background: #f8f3eb;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title p {
    color: #C5A24A;
    font-size: 18px;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 42px;
    color: #4A1024;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: #C5A24A;
    margin: 20px auto;
}

/* Cards */

.artisan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 35px;
}

.artisan-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    gap: 25px;
    padding: 20px;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

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

.artisan-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.artisan-content {
    flex: 1;
}

.artisan-content h3 {
    font-size: 28px;
    color: #4A1024;
    margin-bottom: 10px;
}

.artisan-content p:first-of-type {
    color: #8B6A22;
    font-weight: 600;
    margin-bottom: 8px;
}

.artisan-content span {
    display: block;
    color: #666;
    margin-bottom: 15px;
}

.artisan-content p:last-of-type {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.artisan-content a {
    display: inline-block;
    background: #6B1E35;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    transition: .3s;
}

.artisan-content a:hover {
    background: #C5A24A;
    color: #4A1024;
}

/* Mobile */

@media(max-width:768px) {

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

    .artisan-card {
        flex-direction: column;
        text-align: center;
    }

    .artisan-card img {
        width: 100%;
        height: 320px;
    }

    .artisan-hero h1 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 32px;
    }

}

/* ==========================================
        PREMIUM ARTISAN HERO
========================================== */

.artisan-hero {

    width: 100%;

    height: calc(100vh - 90px);

    min-height: auto;

    margin: 0;

    padding: 0;

    overflow: hidden;

}


/* SLIDER */

.artisan-slider {

    width: 100%;
    height: 100%;
    position: relative;

}


.artisan-slide {

    position: absolute;
    inset: 0;

    opacity: 0;

    transition: opacity 1.5s ease;

}


.artisan-slide.active {

    opacity: 1;
    z-index: 2;

}


/* IMAGE */

.artisan-slide img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    animation: heroZoom 10s ease-in-out infinite;

}


@keyframes heroZoom {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

    100% {

        transform: scale(1);

    }

}


/* OVERLAY */

.artisan-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(110deg,
            rgba(42, 25, 18, .78),
            rgba(120, 85, 45, .45),
            rgba(0, 0, 0, .18));

}


/* HERO CONTENT */

.artisan-hero-content {

    position: absolute;

    top: 45%;

    left: 8%;

    transform: translateY(-50%);

    max-width: 650px;

    color: white;

    z-index: 5;

    animation: heroText 1.2s ease;

}


@keyframes heroText {

    from {

        opacity: 0;

        transform: translate(-40px, -50%);

    }

    to {

        opacity: 1;

        transform: translate(0, -50%);

    }

}


/* TAG */

.hero-tag {

    display: inline-block;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .25);

    padding: 10px 22px;

    border-radius: 50px;

    margin-bottom: 25px;

    letter-spacing: 1px;

}


/* HEADING */

.artisan-hero-content h1 {

    font-size: 56px;

    line-height: 1.1;

    margin-bottom: 22px;

    font-family: "Playfair Display", serif;

}


.artisan-hero-content h3 {

    font-size: 19px;

    line-height: 1.6;

    font-weight: 400;

    margin-bottom: 25px;

    color: #F6F2EB;

}


/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-bottom: 20px;

}


.primary-btn {

    background: #B8863B;

    color: white;

    padding: 16px 38px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}


.primary-btn:hover {

    background: #D5A75C;

    transform: translateY(-5px);

}


.secondary-btn {

    padding: 16px 38px;

    border: 2px solid rgba(255, 255, 255, .9);

    color: white;

    border-radius: 50px;

    text-decoration: none;

    transition: .35s;

}


.secondary-btn:hover {

    background: white;

    color: #4A1024;

}


/* STATS */

.hero-stats {

    display: flex;

    gap: 28px;

    margin-top: 20px;

}


.hero-stats h2 {

    color: #F3D37B;

    font-size: 20px;

    margin-bottom: 8px;

}


.hero-stats p {

    color: white;

    opacity: .9;

}


/* SCROLL */

.scroll-indicator {

    position: absolute;

    left: 50%;

    bottom: 30px;

    transform: translateX(-50%);

    text-align: center;

    color: white;

    z-index: 10;

    animation: bounce 2s infinite;

}


.scroll-indicator span {

    display: block;

    font-size: 15px;

    letter-spacing: 1px;

}


.scroll-indicator i {

    margin-top: 8px;

    font-size: 24px;

}


@keyframes bounce {

    0%,
    100% {

        transform: translate(-50%, 0);

    }

    50% {

        transform: translate(-50%, 10px);

    }

}


/* DESKTOP */

@media(min-width:1600px) {

    .artisan-hero-content h1 {

        font-size: 78px;

    }

}


/* TABLET */

@media(max-width:992px) {

    .artisan-hero {

        height: 650px;

    }

    .artisan-hero-content {

        left: 6%;
        max-width: 90%;

    }

    .artisan-hero-content h1 {

        font-size: 52px;

    }

    .hero-stats {

        gap: 35px;

    }

}


/* MOBILE */

@media(max-width:768px) {

    .artisan-hero {

        height: 520px;

        min-height: 520px;

    }

    .artisan-hero-content {

        left: 25px;
        right: 25px;

    }

    .hero-tag {

        font-size: 13px;

    }

    .artisan-hero-content h1 {

        font-size: 36px;

    }

    .artisan-hero-content h3 {

        font-size: 16px;

        line-height: 1.6;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-stats {

        display: none;

    }

    .scroll-indicator {

        display: none;

    }

}

/* =========================================
   ARTISAN HERO FULL VIEW FIX ONLY
========================================= */

.artisan-hero {

    height: calc(100vh - 80px);

    min-height: 720px;

}


/* Keep image properly filled */

.artisan-slide img {

    height: 100%;

    width: 100%;

    object-fit: cover;

}


/* Keep content vertically balanced */

.artisan-hero-content {

    top: 50%;

}


/* Remove any extra gap */

.artisan-slider {

    height: 100%;

}

/* =========================================
   ARTISAN HERO VISIBILITY + DESKTOP LOOK
========================================= */


/* Hero tag visibility */

.hero-tag {

    background: rgba(255, 255, 255, 0.22);

    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.45);

    backdrop-filter: blur(8px);

    text-shadow:

        0 2px 8px rgba(0, 0, 0, 0.5);

}





/* Make hero more desktop cinematic */

.artisan-hero {

    width: 100%;

    height: calc(100vh - 80px);

    min-height: 768px;

}





/* Improve heading visibility */

.artisan-hero-content h1 {

    text-shadow:

        0 4px 20px rgba(0, 0, 0, 0.65);

}





/* Artisan cards premium color effect */

.artisan-card {

    position: relative;

    border: 1px solid rgba(197, 162, 74, 0.25);

    overflow: hidden;

}





/* Color splash effect */

.artisan-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    top: -90px;

    right: -90px;

    background:

        radial-gradient(circle,

            rgba(197, 162, 74, 0.35),

            transparent 70%);

    transition: .5s;

}





.artisan-card:hover::before {

    transform: scale(1.5);

}





/* View Collection button upgrade */

.artisan-content a {


    background:

        linear-gradient(135deg,

            #6B1E35,

            #9B3A55);


    box-shadow:

        0 8px 20px rgba(107, 30, 53, 0.25);

}





.artisan-content a:hover {


    background:

        linear-gradient(135deg,

            #C5A24A,

            #E2C06B);


    color: #4A1024;

    transform: translateY(-4px);

}

/* ==========================================================
   SUTRIKA - BACK TO TOP BUTTON
========================================================== */

.sutrika-back-to-top {

    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 52px;
    height: 52px;

    border: 1px solid #C5A24A;

    border-radius: 50%;

    background: #4A1024;

    color: #C5A24A;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity .35s ease,
        visibility .35s ease,
        transform .35s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease;

    z-index: 9999;

}


/* Show button */

.sutrika-back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* Hover */

.sutrika-back-to-top:hover {

    background: #C5A24A;

    color: #4A1024;

    transform: translateY(-5px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .22);

}


/* Mobile */

@media (max-width: 768px) {

    .sutrika-back-to-top {

        right: 18px;
        bottom: 18px;

        width: 46px;
        height: 46px;

        font-size: 19px;

    }

}

/* ==========================================================
   SUTRIKA ARTISAN HERO — TABLET RESPONSIVE FIX
   SAME COMPACT HERO STYLE AS HOME + COLLECTION
   ========================================================== */

@media (min-width: 601px) and (max-width: 1024px) {

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

    .artisan-hero {

        width: 100% !important;

        height: 420px !important;

        min-height: 420px !important;

        max-height: 420px !important;

        margin: 0 !important;

        padding: 0 !important;

        overflow: hidden !important;

    }


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

    .artisan-slider {

        width: 100% !important;

        height: 100% !important;

        position: relative !important;

    }


    /* =========================================
       ARTISAN IMAGE
       ========================================= */

    .artisan-slide img {

        width: 100% !important;

        height: 100% !important;

        object-fit: cover !important;

        object-position: center center !important;

    }


    /* =========================================
       OVERLAY
       ========================================= */

    .artisan-overlay {

        background:
            linear-gradient(90deg,
                rgba(42, 25, 18, 0.82) 0%,
                rgba(80, 45, 30, 0.55) 38%,
                rgba(0, 0, 0, 0.12) 100%) !important;

    }


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

    .artisan-hero-content {

        top: 50% !important;

        left: 7% !important;

        right: auto !important;

        transform: translateY(-50%) !important;

        width: 46% !important;

        max-width: 46% !important;

        padding: 0 !important;

        z-index: 5 !important;

    }


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

    .hero-tag {

        padding: 6px 12px !important;

        margin-bottom: 12px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;

        letter-spacing: 0.7px !important;

        border-radius: 30px !important;

    }


    /* =========================================
       MAIN TITLE
       ========================================= */

    .artisan-hero-content h1 {

        font-size: clamp(2rem,
                4vw,
                3rem) !important;

        line-height: 1.05 !important;

        margin-bottom: 12px !important;

    }


    /* =========================================
       DESCRIPTION
       ========================================= */

    .artisan-hero-content h3 {

        max-width: 330px !important;

        font-size: 11px !important;

        line-height: 1.5 !important;

        margin-bottom: 16px !important;

    }


    /* =========================================
       BUTTONS
       ========================================= */

    .hero-buttons {

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        gap: 10px !important;

        margin-bottom: 10px !important;

    }


    /* =========================================
       PRIMARY BUTTON
       ========================================= */

    .primary-btn {

        padding: 10px 18px !important;

        min-width: 125px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;

        border-radius: 30px !important;

    }


    /* =========================================
       SECONDARY BUTTON
       ========================================= */

    .secondary-btn {

        padding: 9px 16px !important;

        min-width: 120px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;

        border-width: 1px !important;

        border-radius: 30px !important;

    }


    /* =========================================
       STATS
       ========================================= */

    .hero-stats {

        gap: 18px !important;

        margin-top: 10px !important;

    }


    .hero-stats h2 {

        font-size: 15px !important;

        margin-bottom: 4px !important;

    }


    .hero-stats p {

        font-size: 9px !important;

        margin: 0 !important;

    }


    /* =========================================
       SCROLL INDICATOR
       ========================================= */

    .scroll-indicator {

        bottom: 12px !important;

    }


    .scroll-indicator span {

        font-size: 9px !important;

    }


    .scroll-indicator i {

        font-size: 15px !important;

        margin-top: 4px !important;

    }

}



/* ==========================================================
   SUTRIKA ARTISAN — COMPLETE MOBILE PHONE FIX
   Target: 375px–600px phones
   Keeps desktop/tablet styling unchanged.
   ========================================================== */

@media (max-width: 600px) {

    /* ---------- PAGE SAFETY ---------- */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* ---------- HEADER ---------- */
    .header {
        width: 100%;
        min-height: 64px;
    }

    .header .container {
        width: 100%;
        max-width: 100%;
        padding: 0 14px;
        box-sizing: border-box;
    }

    .navbar {
        min-height: 64px;
        gap: 8px;
    }

    .logo {
        min-width: 0;
        gap: 7px;
    }

    .logo img {
        width: 34px;
        height: 34px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .logo-text {
        min-width: 0;
    }

    .logo-text h2 {
        font-size: 15px;
        line-height: 1;
        margin: 0;
    }

    .logo-text p {
        max-width: 125px;
        font-size: 6px;
        line-height: 1.25;
        margin: 3px 0 0;
    }

    .nav-icons {
        gap: 8px;
        margin-left: auto;
    }

    .nav-icons a {
        font-size: 13px;
    }

    .menu-toggle {
        display: flex;
        width: 34px;
        height: 34px;
        padding: 0;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        flex-shrink: 0;
    }

    /* ---------- HERO: REAL RECTANGULAR BANNER ---------- */
    .artisan-hero {
        width: 100% !important;
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .artisan-slider {
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
    }

    .artisan-slide {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .artisan-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        animation: heroZoom 10s ease-in-out infinite;
    }

    /* Slightly stronger readable overlay on small screens */
    .artisan-overlay {
        inset: 0 !important;
        background:
            linear-gradient(90deg,
                rgba(35, 17, 15, 0.82) 0%,
                rgba(55, 27, 22, 0.57) 48%,
                rgba(0, 0, 0, 0.12) 100%) !important;
    }

    /* ---------- HERO CONTENT INSIDE THE RECTANGLE ---------- */
    .artisan-hero-content {
        top: 50% !important;
        left: 18px !important;
        right: 18px !important;
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
        transform: translateY(-50%) !important;
        text-align: left;
    }

    .hero-tag {
        display: inline-block;
        max-width: 100%;
        box-sizing: border-box;
        padding: 5px 10px !important;
        margin-bottom: 8px !important;
        font-size: 8px !important;
        line-height: 1.2 !important;
        letter-spacing: .5px !important;
        border-radius: 20px !important;
        white-space: normal;
    }

    .artisan-hero-content h1 {
        max-width: 285px;
        margin: 0 0 8px !important;
        font-size: 25px !important;
        line-height: 1.05 !important;
        letter-spacing: .2px;
    }

    .artisan-hero-content h3 {
        max-width: 275px !important;
        margin: 0 0 11px !important;
        font-size: 9px !important;
        line-height: 1.4 !important;
    }

    /* Buttons remain side-by-side so the banner doesn't become tall */
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: wrap;
        gap: 7px !important;
        margin: 0 0 7px !important;
    }

    .primary-btn,
    .secondary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 0 !important;
        padding: 7px 12px !important;
        font-size: 8px !important;
        line-height: 1.1 !important;
        border-radius: 22px !important;
        box-sizing: border-box;
    }

    .secondary-btn {
        border-width: 1px !important;
    }

    /* Compact stats instead of removing useful content */
    .hero-stats {
        display: flex !important;
        gap: 12px !important;
        margin-top: 5px !important;
    }

    .hero-stats>div {
        min-width: 0;
    }

    .hero-stats h2 {
        margin: 0 0 2px !important;
        font-size: 12px !important;
        line-height: 1.1;
    }

    .hero-stats p {
        margin: 0 !important;
        font-size: 7px !important;
        line-height: 1.1;
    }

    /* Hide only the scroll prompt; the banner itself remains */
    .scroll-indicator {
        display: none !important;
    }

    /* ---------- ARTISAN SECTION ---------- */
    .artisan-section {
        width: 100%;
        padding: 48px 14px !important;
        box-sizing: border-box;
    }

    .artisan-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .section-title {
        margin-bottom: 30px !important;
    }

    .section-title p {
        margin: 0 0 8px;
        font-size: 11px !important;
        letter-spacing: 1.3px !important;
    }

    .section-title h2 {
        margin: 0;
        font-size: 28px !important;
        line-height: 1.15;
    }

    .gold-line {
        width: 55px !important;
        height: 2px !important;
        margin: 13px auto !important;
    }

    /* ---------- ARTISAN CARDS ---------- */
    .artisan-grid {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .artisan-card {
        width: 100%;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        align-items: stretch !important;
        text-align: center;
        border-radius: 18px !important;
        overflow: hidden;
    }

    .artisan-card img {
        width: 100% !important;
        height: 235px !important;
        min-height: 235px;
        object-fit: cover !important;
        object-position: center;
        border-radius: 0 !important;
        display: block;
    }

    .artisan-content {
        width: 100%;
        box-sizing: border-box;
        padding: 20px 17px 22px !important;
    }

    .artisan-content h3 {
        margin: 0 0 8px !important;
        font-size: 21px !important;
        line-height: 1.25;
    }

    .artisan-content p:first-of-type {
        margin: 0 0 7px !important;
        font-size: 13px;
    }

    .artisan-content span {
        margin-bottom: 10px !important;
        font-size: 12px;
    }

    .artisan-content p:last-of-type {
        margin: 0 0 16px !important;
        font-size: 13px;
        line-height: 1.6;
    }

    .artisan-content a {
        padding: 10px 19px !important;
        font-size: 12px;
        border-radius: 25px;
    }

    /* ---------- FOOTER ---------- */
    .footer {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .footer .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-column p,
    .footer-column li,
    .footer-column a {
        font-size: 13px;
        line-height: 1.65;
    }

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

    .social-icons {
        justify-content: center;
        gap: 12px;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 7px !important;
        text-align: center;
        padding-bottom: 18px;
    }

    /* ---------- BACK TO TOP ---------- */
    .sutrika-back-to-top {
        right: 14px !important;
        bottom: 14px !important;
        width: 42px !important;
        height: 42px !important;
        font-size: 17px !important;
    }
}


/* ==========================================================
   EXTRA SMALL PHONES
   ========================================================== */

@media (max-width: 390px) {

    .artisan-hero {
        height: 285px !important;
        min-height: 285px !important;
        max-height: 285px !important;
    }

    .artisan-hero-content {
        left: 15px !important;
        right: 15px !important;
    }

    .artisan-hero-content h1 {
        max-width: 260px;
        font-size: 23px !important;
    }

    .artisan-hero-content h3 {
        max-width: 255px !important;
        font-size: 8px !important;
    }

    .hero-tag {
        font-size: 7px !important;
        padding: 4px 8px !important;
    }

    .primary-btn,
    .secondary-btn {
        padding: 6px 10px !important;
        font-size: 7px !important;
    }

    .hero-stats {
        gap: 9px !important;
    }

    .hero-stats h2 {
        font-size: 11px !important;
    }

    .hero-stats p {
        font-size: 6.5px !important;
    }

    .artisan-section {
        padding: 40px 12px !important;
    }

    .section-title h2 {
        font-size: 25px !important;
    }

    .artisan-card img {
        height: 215px !important;
        min-height: 215px;
    }

    .artisan-content {
        padding: 18px 14px 20px !important;
    }

    .artisan-content h3 {
        font-size: 19px !important;
    }
}


/* ==========================================================
   VERY SMALL PHONES
   ========================================================== */

@media (max-width: 340px) {

    .logo-text p {
        display: none;
    }

    .artisan-hero {
        height: 270px !important;
        min-height: 270px !important;
        max-height: 270px !important;
    }

    .artisan-hero-content h1 {
        font-size: 21px !important;
    }

    .artisan-hero-content h3 {
        display: none;
    }

    .hero-stats {
        display: none !important;
    }
}
