/* ==========================================
        PERSONALISE PAGE
========================================== */

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

.personal-hero {

    position: relative;

    width: 100%;

    height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    box-sizing: border-box;

}


/* Background */

.personal-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background: url("../ASSETS/IMAGES/banners/personalise-banner.jpg") center center/cover no-repeat;

    transform: scale(1);

    animation: heroZoom 18s ease-in-out infinite alternate;

    z-index: 0;

}

/* Overlay */

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(38, 10, 22, .72) 0%,
            rgba(65, 18, 36, .45) 45%,
            rgba(65, 18, 36, .15) 75%,
            rgba(0, 0, 0, .05) 100%);

    z-index: 1;

}

/* Content */

.hero-content {

    position: relative;

    z-index: 2;

    width: 700px;

    margin-left: 8%;

}
/* Tag */

.hero-tag {

    display: inline-block;

    padding: 14px 28px;

    border-radius: 50px;

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

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

    backdrop-filter: blur(10px);

    color: #F4D77A;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-weight: 600;

    margin-bottom: 30px;

}

/* Heading */

.hero-content h1 {

    font-family: "Cinzel", serif;

    font-size: 4.5rem;

    line-height: 1.1;

    color: #F8E4A8;

    margin-bottom: 25px;

}
/* Paragraph */

.hero-content p {

    color: white;

    font-size: 1.15rem;

    line-height: 1.9;

    margin-bottom: 40px;

    max-width: 600px;

}

/* Buttons */

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.primary-btn {

    background: #C5A24A;

    color: #3A0F20;

    padding: 18px 40px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 700;

    transition: .35s;

}

.primary-btn:hover {

    transform: translateY(-5px);

}

.secondary-btn {

    border: 2px solid white;

    color: white;

    padding: 18px 40px;

    border-radius: 50px;

    text-decoration: none;

    transition: .35s;

}

.secondary-btn:hover {

    background: white;

    color: #3A0F20;

}

/* Background Zoom */

@keyframes heroZoom {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.12);

    }

}

/* Desktop */

@media (min-width:1600px) {

    .hero-content {

        max-width: 820px;

    }

    .hero-content h1 {

        font-size: 6rem;

    }

}

/* Tablet */

@media(max-width:992px) {

    .personal-hero {

        height: auto;

        min-height: 700px;

        padding: 120px 30px 80px;

    }

    .hero-content {

        margin: auto;

        text-align: center;

    }

    .hero-content h1 {

        font-size: 3rem;

    }

    .hero-buttons {

        justify-content: center;

    }

}
/* ==========================================
        PERSONALISATION SECTION
========================================== */

.personal-section {

    padding: 100px 0;

    background: #fff;

}

.custom-box {

    max-width: 950px;

    margin: 50px auto 0;

    background: #fff;

    padding: 45px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

}

.custom-field {

    display: flex;

    flex-direction: column;

}

.custom-field label {

    font-weight: 600;

    color: #5b1f1f;

    margin-bottom: 10px;

}

.custom-field select,

.custom-field textarea {

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 10px;

    font-size: 16px;

    outline: none;

    transition: .3s;

}

.custom-field select:focus,

.custom-field textarea:focus {

    border-color: #8b1e3f;

    box-shadow: 0 0 10px rgba(139, 30, 63, .15);

}

.full-width {

    grid-column: 1 / -1;

}

.custom-field textarea {

    min-height: 140px;

    resize: vertical;

}

.custom-btn {

    grid-column: 1 / -1;

    padding: 16px;

    border: none;

    border-radius: 12px;

    background: #8b1e3f;

    color: #fff;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}

.custom-btn:hover {

    background: #6f1631;

    transform: translateY(-3px);

}
/* ==========================================
        DESIGN PREVIEW
========================================== */

.design-preview {

    padding: 100px 0;

    background: #ffffff;

}

.preview-card {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

    margin-top: 50px;

}

.preview-image img {

    width: 100%;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

}

.preview-content h3 {

    font-size: 34px;

    color: #8b1e3f;

    margin-bottom: 20px;

}

.preview-content p {

    font-size: 18px;

    line-height: 1.8;

    color: #555;

    margin-bottom: 30px;

}

.price-box {

    display: inline-block;

    padding: 18px 30px;

    background: #8b1e3f;

    color: #fff;

    border-radius: 12px;

    font-size: 20px;

    font-weight: 600;

}

.price-box span {

    display: block;

    margin-top: 8px;

    font-size: 28px;

    color: #F4D58D;

}
/* ==========================================
BUTTON EFFECT
========================================== */

.custom-btn {

    transition: .35s;

}

.custom-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(139, 30, 63, .25);

}
/* ========================= */

.why-personalise,
.personal-process,
.personal-testimonials {

    padding: 100px 0;

    background: #faf7f2;

}

.why-grid,
.process-grid,
.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 30px;

    margin-top: 50px;

}

.why-card,
.process-card,
.testimonial-card {

    background: #fff;

    padding: 35px;

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    transition: .35s;

}

.why-card:hover,
.process-card:hover,
.testimonial-card:hover {

    transform: translateY(-10px);

}

.why-card i {

    font-size: 45px;

    color: #8b1e3f;

    margin-bottom: 20px;

}

.process-card h3 {

    width: 60px;

    height: 60px;

    margin: auto;

    background: #8b1e3f;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 20px;

}

.testimonial-card {

    font-size: 18px;

    line-height: 1.8;

}
/* =========================================================
   CUSTOM REQUEST CONFIRMATION
   ========================================================= */

.custom-request-confirmation {

    padding: 90px 0;

    background:
        linear-gradient(135deg,
            #fffaf2,
            #f7eee1);

}


.request-success-card {

    max-width: 850px;

    margin: 0 auto;

    padding: 55px 60px;

    text-align: center;

    background: #ffffff;

    border-radius: 24px;

    border: 1px solid rgba(107, 30, 53, 0.12);

    box-shadow:
        0 20px 60px rgba(74, 16, 36, 0.12);

}


.success-icon {

    width: 75px;

    height: 75px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #6B1E35;

    color: #C5A24A;

    font-size: 30px;

}


.success-tag {

    margin-bottom: 12px;

    color: #C5A24A;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.request-success-card h2 {

    margin-bottom: 18px;

    color: #6B1E35;

    font-family: Georgia, serif;

    font-size: 38px;

}


.success-message {

    max-width: 680px;

    margin: 25px auto;

    color: #5a4a4a;

    line-height: 1.8;

    font-size: 16px;

}


/* REQUEST ID */

.request-id-box {

    margin: 30px auto;

    padding: 22px;

    max-width: 400px;

    background: #f8f0e5;

    border: 1px solid #C5A24A;

    border-radius: 15px;

}


.request-id-box span {

    display: block;

    margin-bottom: 8px;

    color: #705d5d;

    font-size: 14px;

}


.request-id-box strong {

    color: #6B1E35;

    font-size: 25px;

    letter-spacing: 1px;

}


/* NEXT STEP */

.next-step-box {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin: 35px 0;

    padding: 25px;

    text-align: left;

    background: #fffaf4;

    border-left: 4px solid #C5A24A;

    border-radius: 12px;

}


.next-step-icon {

    min-width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #6B1E35 ;

    color: #ffff ;

    font-size: 20px;

}


.next-step-box h3 {

    margin-bottom: 8px;

    color: #6B1E35;

}


.next-step-box p {

    margin: 0;

    color: #5a4a4a;

    line-height: 1.7;

}


/* BUTTONS */

.confirmation-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 30px;

}


.confirmation-buttons a {

    text-decoration: none;

}


.artisan-note {

    margin-top: 30px;

    color: #8a7777;

    font-size: 14px;

}


/* MOBILE */

@media (max-width: 700px) {

    .request-success-card {

        padding: 40px 22px;

    }


    .request-success-card h2 {

        font-size: 30px;

    }


    .next-step-box {

        flex-direction: column;

        text-align: center;

        align-items: center;

    }

}


/* =========================================
   VIEW MY CUSTOM REQUESTS
   SAME STYLE AS VISIT OUR STORE
   ========================================= */

.view-custom-requests-link {
    position: fixed;
    left: 0;
    bottom: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 18px 38px;

    background: #e3bd5f;
    color: #3A0F20 !important;

    border: none;
    border-radius: 0 50px 50px 0;

    font-size: 16px;
    font-weight: 700;

    line-height: 1;
    text-decoration: none;

    box-shadow: 0 6px 18px rgba(58, 15, 32, 0.15);

    z-index: 9999;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* Icon */

.view-custom-requests-link i {
    color: #3A0F20 !important;
    font-size: 15px;
}


/* Hover */

.view-custom-requests-link:hover {
    background: #e3bd5f;
    color: #3A0F20  !important;

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(58, 15, 32, 0.22);
}


/* Arrow */

.view-custom-requests-link i:last-child {
    transition: transform 0.35s ease;
}


/* Arrow movement */

.view-custom-requests-link:hover i:last-child {
    transform: translateX(5px);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .view-custom-requests-link {
        bottom: 20px;

        padding: 15px 24px;

        font-size: 14px;
    }

}


/* ==========================================================
   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 ATELIER - NEW PERSONALISE HERO
   ========================================================== */


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

.personal-hero-content {

    position: relative;

    z-index: 3;

    width: min(620px, 48%);

    margin-left: 8%;

    padding-top: 20px;

    color: #F6F0E6;

}


/* =========================
   ATELIER LABEL
   ========================= */

.atelier-label {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #C5A24A;

    font-family: "Cinzel", serif;

    font-size: 14px;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 24px;

}


/* =========================
   MAIN HEADING
   ========================= */

.personal-hero-content h1 {

    margin: 0;

    font-family: "Cinzel", Georgia, serif;

    font-size: clamp(3.5rem, 5.5vw, 5.8rem);

    line-height: 0.98;

    font-weight: 500;

    letter-spacing: 1px;

    color: #F6F0E6;

    text-transform: uppercase;

}


/* Gold second line */

.personal-hero-content h1 span {

    display: block;

    color: #C5A24A;

    margin-top: 8px;

}


/* =========================
   DECORATIVE DIVIDER
   ========================= */

.atelier-divider {

    display: flex;

    align-items: center;

    gap: 12px;

    width: 280px;

    margin: 28px 0;

    color: #C5A24A;

    font-size: 13px;

}


.atelier-divider span {

    display: block;

    height: 1px;

    flex: 1;

    background: linear-gradient(90deg,
            transparent,
            #C5A24A);

}


.atelier-divider span:last-child {

    background: linear-gradient(90deg,
            #C5A24A,
            transparent);

}


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

.personal-hero-content p {

    margin: 0 0 34px;

    max-width: 430px;

    color: rgba(246, 240, 230, 0.92);

    font-size: 18px;

    line-height: 1.8;

    letter-spacing: 0.5px;

}


/* =========================
   ACTIONS
   ========================= */

.atelier-actions {

    display: flex;

    align-items: center;

    gap: 30px;

}


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

.atelier-primary {

    display: inline-flex;

    align-items: center;

    gap: 24px;

    padding: 17px 27px;

    min-width: 220px;

    justify-content: center;

    background: #C5A24A;

    color: #3A0F20;

    border: 1px solid #D7B85C;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    clip-path: polygon(10px 0,
            calc(100% - 10px) 0,
            100% 10px,
            100% calc(100% - 10px),
            calc(100% - 10px) 100%,
            10px 100%,
            0 calc(100% - 10px),
            0 10px);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

}


.atelier-primary span {

    font-size: 22px;

    line-height: 1;

    transition: transform .35s ease;

}


.atelier-primary:hover {

    background: #D7B85C;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .3);

}


.atelier-primary:hover span {

    transform: translateX(6px);

}


/* =========================
   SECONDARY LINK
   ========================= */

.atelier-secondary {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 7px;

    color: #F6F0E6;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 12px;

    letter-spacing: 2px;

}


.atelier-secondary::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 1px;

    background: #C5A24A;

    transform: scaleX(.45);

    transform-origin: left;

    transition: transform .35s ease;

}


.atelier-secondary:hover::after {

    transform: scaleX(1);

}


.atelier-secondary span {

    color: #C5A24A;

    font-size: 18px;

    transition: transform .35s ease;

}


.atelier-secondary:hover span {

    transform: translateX(5px);

}


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

@media (max-width: 992px) {

    .personal-hero-content {

        width: 58%;

        margin-left: 6%;

    }


    .personal-hero-content h1 {

        font-size: clamp(3rem, 7vw, 4.5rem);

    }


    .atelier-label {

        font-size: 12px;

        letter-spacing: 3px;

    }


    .personal-hero-content p {

        font-size: 16px;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 768px) {

    .personal-hero-content {

        width: 86%;

        margin-left: 7%;

        padding-top: 10px;

    }


    .atelier-label {

        font-size: 10px;

        letter-spacing: 2.5px;

        margin-bottom: 18px;

    }


    .personal-hero-content h1 {

        font-size: clamp(2.6rem, 10vw, 4rem);

        line-height: 1;

    }


    .atelier-divider {

        width: 190px;

        margin: 20px 0;

    }


    .personal-hero-content p {

        font-size: 15px;

        line-height: 1.65;

        margin-bottom: 25px;

    }


    .atelier-actions {

        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

    }


    .atelier-primary {

        min-width: 190px;

        padding: 15px 22px;

    }

}


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

@media (max-width: 480px) {

    .personal-hero-content {

        width: 88%;

        margin-left: 6%;

    }


    .personal-hero-content h1 {

        font-size: 2.5rem;

    }


    .personal-hero-content p {

        font-size: 14px;

    }


    .atelier-primary {

        width: 190px;

    }

}

/* ==========================================================
   SUTRIKA ATELIER — CINEMATIC HERO ENTRANCE
   Premium page-load animation
   ========================================================== */


/* ----------------------------------------------------------
   1. HERO CONTENT — INITIAL STATE
---------------------------------------------------------- */

.personal-hero-content {
    animation: atelierContentReveal 1s ease-out forwards;
}


/* ----------------------------------------------------------
   2. ATELIER LABEL — APPEARS FIRST
---------------------------------------------------------- */

.atelier-label {
    opacity: 0;
    animation:
        atelierLabelReveal 0.8s ease-out 0.15s forwards;
}


/* ----------------------------------------------------------
   3. MAIN HEADING — ELEGANT REVEAL
---------------------------------------------------------- */

.personal-hero-content h1 {
    opacity: 0;
    animation:
        atelierHeadingReveal 1.1s cubic-bezier(.22, .61, .36, 1) 0.35s forwards;
}


/* ----------------------------------------------------------
   4. GOLD DIVIDER
---------------------------------------------------------- */

.atelier-divider {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;

    animation:
        atelierDividerReveal 0.8s ease-out 0.75s forwards;
}


/* ----------------------------------------------------------
   5. DESCRIPTION
---------------------------------------------------------- */

.personal-hero-content p {
    opacity: 0;

    animation:
        atelierTextReveal 0.9s ease-out 0.9s forwards;
}


/* ----------------------------------------------------------
   6. BUTTONS — LAST TO APPEAR
---------------------------------------------------------- */

.atelier-actions {
    opacity: 0;

    animation:
        atelierActionsReveal 0.9s ease-out 1.15s forwards;
}


/* ----------------------------------------------------------
   7. PRIMARY BUTTON — VERY SUBTLE FLOAT
---------------------------------------------------------- */

.atelier-primary {
    animation:
        atelierButtonFloat 4s ease-in-out 2.2s infinite;
}


/* ==========================================================
   KEYFRAMES
   ========================================================== */


/* Main content */

@keyframes atelierContentReveal {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Atelier label */

@keyframes atelierLabelReveal {

    from {
        opacity: 0;
        transform: translateY(18px);
        letter-spacing: 7px;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 4px;
    }

}


/* Main heading */

@keyframes atelierHeadingReveal {

    from {
        opacity: 0;
        transform: translateY(38px);
        filter: blur(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

}


/* Divider */

@keyframes atelierDividerReveal {

    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }

}


/* Description */

@keyframes atelierTextReveal {

    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Buttons */

@keyframes atelierActionsReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Button breathing */

@keyframes atelierButtonFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

}


/* ==========================================================
   8. EXTRA CINEMATIC BACKGROUND MOVEMENT
   ========================================================== */

.personal-hero::before {
    animation:
        heroZoom 18s ease-in-out infinite alternate,
        atelierBackgroundDrift 14s ease-in-out infinite alternate;
}


@keyframes atelierBackgroundDrift {

    0% {
        background-position: 50% 50%;
    }

    100% {
        background-position: 53% 48%;
    }

}


/* ==========================================================
   9. ACCESSIBILITY
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .personal-hero::before,
    .personal-hero-content,
    .atelier-label,
    .personal-hero-content h1,
    .atelier-divider,
    .personal-hero-content p,
    .atelier-actions,
    .atelier-primary {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

}













/* ==========================================================
   SUTRIKA PERSONALISE — FINAL DESKTOP HERO
   FULL SCREEN + PROPER CONTENT FIT
   ========================================================== */

@media (min-width: 993px) {

    /* =========================================
       FULL DESKTOP BANNER
       ========================================= */

    .personal-hero {
        position: relative;

        width: 100%;
        height: 100vh !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex;
        align-items: center;

        overflow: hidden;
        box-sizing: border-box;
    }


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

    .personal-hero-content {

        position: relative;
        z-index: 3;

        width: 500px !important;
        max-width: 42% !important;

        margin-left: 8% !important;

        padding: 0 !important;

        box-sizing: border-box;

        transform: translateY(20px);
    }


    /* =========================================
       SMALL LABEL
       ========================================= */

    .atelier-label {

        font-size: 11px !important;

        letter-spacing: 3px !important;

        margin-bottom: 16px !important;

        line-height: 1.2;
    }


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

    .personal-hero-content h1 {

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

        line-height: 0.96 !important;

        letter-spacing: 0.5px;

        margin: 0 !important;
    }


    /* GOLD TITLE LINE */

    .personal-hero-content h1 span {

        margin-top: 4px !important;
    }


    /* =========================================
       DIVIDER
       ========================================= */

    .atelier-divider {

        width: 230px !important;

        margin: 20px 0 !important;
    }


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

    .personal-hero-content p {

        max-width: 390px !important;

        font-size: 15px !important;

        line-height: 1.55 !important;

        letter-spacing: 0.3px;

        margin: 0 0 24px !important;
    }


    /* =========================================
       BUTTON AREA
       ========================================= */

    .atelier-actions {

        display: flex;

        align-items: center;

        gap: 20px !important;
    }


    /* =========================================
       START DESIGNING
       ========================================= */

    .atelier-primary {

        min-width: 195px !important;

        padding: 14px 22px !important;

        font-size: 11px !important;

        letter-spacing: 1.3px;
    }


    .atelier-primary span {

        font-size: 19px !important;
    }


    /* =========================================
       EXPLORE COLLECTION
       ========================================= */

    .atelier-secondary {

        font-size: 10px !important;

        letter-spacing: 1.5px;
    }


    .atelier-secondary span {

        font-size: 16px !important;
    }
}


/* ==========================================================
   LARGE DESKTOP
   ========================================================== */

@media (min-width: 1400px) {

    .personal-hero-content {

        width: 540px !important;

        max-width: 43% !important;

        margin-left: 8% !important;
    }

    .personal-hero-content h1 {

        font-size: clamp(3.2rem, 4vw, 4.7rem) !important;
    }

    .personal-hero-content p {

        max-width: 410px !important;

        font-size: 15.5px !important;
    }
}


/* ==========================================================
   EXTRA LARGE SCREEN
   ========================================================== */

@media (min-width: 1700px) {

    .personal-hero-content {

        width: 570px !important;

        max-width: 42% !important;
    }

    .personal-hero-content h1 {

        font-size: 4.8rem !important;
    }
}










/* ==========================================================
   SUTRIKA PERSONALISE — TABLET HERO + CONTENT FIX
   SAME COMPACT RESPONSIVE STYLE AS HOME PAGE
   ========================================================== */

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

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

    .personal-hero {

        width: 100% !important;

        height: 420px !important;

        min-height: 420px !important;

        max-height: 420px !important;

        padding: 0 !important;

        margin: 0 !important;

        display: flex !important;

        align-items: center !important;

        overflow: hidden !important;

        box-sizing: border-box !important;

    }


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

    .personal-hero-content {

        width: 58% !important;

        max-width: 58% !important;

        margin-left: 6% !important;

        padding: 0 !important;

        padding-top: 0 !important;

        position: relative !important;

        z-index: 3 !important;

        transform: none !important;

    }


    /* ==================================================
       ATELIER LABEL
       ================================================== */

    .atelier-label {

        font-size: 9px !important;

        letter-spacing: 2.5px !important;

        margin-bottom: 12px !important;

        line-height: 1.2 !important;

    }


    /* ==================================================
       MAIN HEADING
       ================================================== */

    .personal-hero-content h1 {

        font-size: clamp(2.2rem,
                5.5vw,
                3.4rem) !important;

        line-height: 0.98 !important;

        letter-spacing: 0.3px !important;

        margin: 0 !important;

    }


    /* GOLD TITLE */

    .personal-hero-content h1 span {

        margin-top: 5px !important;

    }


    /* ==================================================
       DIVIDER
       ================================================== */

    .atelier-divider {

        width: 180px !important;

        margin: 15px 0 !important;

    }


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

    .personal-hero-content p {

        max-width: 310px !important;

        font-size: 11px !important;

        line-height: 1.55 !important;

        letter-spacing: 0.2px !important;

        margin: 0 0 17px !important;

    }


    /* ==================================================
       BUTTON AREA
       ================================================== */

    .atelier-actions {

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        gap: 15px !important;

        flex-wrap: nowrap !important;

    }


    /* ==================================================
       START DESIGNING BUTTON
       ================================================== */

    .atelier-primary {

        min-width: 155px !important;

        padding: 10px 16px !important;

        font-size: 9px !important;

        letter-spacing: 1px !important;

    }


    .atelier-primary span {

        font-size: 16px !important;

    }


    /* ==================================================
       EXPLORE COLLECTION
       ================================================== */

    .atelier-secondary {

        font-size: 8px !important;

        letter-spacing: 1.3px !important;

        padding-bottom: 5px !important;

    }


    .atelier-secondary span {

        font-size: 14px !important;

    }


    /* ==================================================
       HERO BACKGROUND
       Slightly reposition image for tablet
       ================================================== */

    .personal-hero::before {

        background-position: 58% center !important;

    }


    /* ==================================================
       PERSONALISE CONTENT SECTION
       ================================================== */

    .personal-section {

        padding: 60px 0 !important;

    }


    .personal-section .section-tag {

        font-size: 11px !important;

    }


    .personal-section h2 {

        font-size: 32px !important;

        line-height: 1.15 !important;

        margin-bottom: 20px !important;

    }


    /* ==================================================
       CUSTOM DESIGN BOX
       ================================================== */

    .custom-box {

        max-width: 90% !important;

        margin: 30px auto 0 !important;

        padding: 30px !important;

        gap: 18px !important;

    }


    .custom-field label {

        font-size: 14px !important;

    }


    .custom-field select,
    .custom-field textarea {

        padding: 12px !important;

        font-size: 14px !important;

    }


    .custom-field textarea {

        min-height: 110px !important;

    }


    .custom-btn {

        padding: 13px !important;

        font-size: 15px !important;

    }


    /* ==================================================
       DESIGN PREVIEW
       ================================================== */

    .design-preview {

        padding: 65px 0 !important;

    }


    .preview-card {

        gap: 30px !important;

        margin-top: 30px !important;

    }


    .preview-content h3 {

        font-size: 27px !important;

        margin-bottom: 14px !important;

    }


    .preview-content p {

        font-size: 14px !important;

        line-height: 1.65 !important;

        margin-bottom: 20px !important;

    }


    .price-box {

        padding: 14px 22px !important;

        font-size: 17px !important;

    }


    .price-box span {

        font-size: 23px !important;

    }


    /* ==================================================
       WHY / PROCESS / TESTIMONIAL SECTIONS
       ================================================== */

    .why-personalise,
    .personal-process,
    .personal-testimonials {

        padding: 65px 0 !important;

    }


    .why-grid,
    .process-grid,
    .testimonial-grid {

        gap: 20px !important;

        margin-top: 30px !important;

    }


    .why-card,
    .process-card,
    .testimonial-card {

        padding: 25px !important;

    }


    .why-card i {

        font-size: 35px !important;

        margin-bottom: 15px !important;

    }


    .process-card h3 {

        width: 50px !important;

        height: 50px !important;

        margin-bottom: 15px !important;

    }


    .testimonial-card {

        font-size: 15px !important;

        line-height: 1.65 !important;

    }

}


/* ==========================================================
   SMALL TABLET — 601px TO 768px
   EXTRA COMPACT
   ========================================================== */

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

    .personal-hero {

        height: 405px !important;

        min-height: 405px !important;

        max-height: 405px !important;

    }


    .personal-hero-content {

        width: 60% !important;

        max-width: 60% !important;

        margin-left: 6% !important;

    }


    .personal-hero-content h1 {

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

    }


    .personal-hero-content p {

        max-width: 285px !important;

        font-size: 10px !important;

    }


    .atelier-divider {

        width: 155px !important;

        margin: 12px 0 !important;

    }


    .atelier-primary {

        min-width: 145px !important;

        padding: 9px 13px !important;

        font-size: 8px !important;

    }


    .atelier-secondary {

        font-size: 7px !important;

    }


    .personal-section {

        padding: 50px 0 !important;

    }


    .personal-section h2 {

        font-size: 28px !important;

    }

}































/* ==========================================================
   SUTRIKA PERSONALISE
   FINAL MOBILE DESIGN
   LANDSCAPE HERO + COMPLETE MOBILE RESPONSIVE LAYOUT
   ========================================================== */

@media (max-width: 600px) {

    /* ======================================================
       GLOBAL MOBILE RESET
       ====================================================== */

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box !important;
    }

    img {
        max-width: 100% !important;
    }


    /* ======================================================
       PERSONALISE HERO
       LANDSCAPE MOBILE BANNER
       ====================================================== */

    .personal-hero {

        position: relative !important;

        width: 100% !important;

        /*
           Landscape mobile hero.
           Around 375 x 235 on iPhone SE.
        */
        height: 235px !important;
        min-height: 235px !important;
        max-height: 235px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;

        overflow: hidden !important;

        box-sizing: border-box !important;
    }


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

    .personal-hero::before {

        content: "" !important;

        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        background-image:
            url("../ASSETS/IMAGES/banners/personalise-banner.jpg") !important;

        background-repeat: no-repeat !important;

        /*
           Keep the banner cinematic instead of
           turning it into a portrait crop.
        */
        background-size: cover !important;

        background-position: center center !important;

        transform: scale(1.02) !important;

        animation: none !important;

        z-index: 0 !important;
    }


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

    .personal-hero .hero-overlay {

        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        background:
            linear-gradient(90deg,
                rgba(45, 8, 25, 0.82) 0%,
                rgba(69, 15, 36, 0.68) 38%,
                rgba(69, 15, 36, 0.30) 68%,
                rgba(0, 0, 0, 0.05) 100%) !important;

        z-index: 1 !important;
    }


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

    .personal-hero-content {

        position: relative !important;

        z-index: 3 !important;

        width: 57% !important;
        max-width: 57% !important;

        margin-left: 5% !important;

        margin-right: 0 !important;

        padding: 0 !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: flex-start !important;

        justify-content: center !important;

        text-align: left !important;

        transform: none !important;

        box-sizing: border-box !important;
    }


    /* ======================================================
       ATELIER LABEL
       ====================================================== */

    .personal-hero-content .atelier-label {

        display: inline-flex !important;

        align-items: center !important;

        width: auto !important;

        margin: 0 0 7px 0 !important;

        padding: 4px 7px !important;

        font-family: "Cinzel", Georgia, serif !important;

        font-size: 6.5px !important;

        line-height: 1.2 !important;

        letter-spacing: 1.5px !important;

        white-space: nowrap !important;

        color: #F4D77A !important;

        background: rgba(255, 255, 255, 0.10) !important;

        border: 1px solid rgba(244, 215, 122, 0.40) !important;

        border-radius: 30px !important;

        backdrop-filter: blur(6px) !important;

        margin-bottom: 7px !important;
    }


    /* ======================================================
       MAIN HERO HEADING
       ====================================================== */

    .personal-hero-content h1 {

        width: 100% !important;

        max-width: 190px !important;

        margin: 0 !important;

        padding: 0 !important;

        font-family: "Cinzel", Georgia, serif !important;

        font-size: 22px !important;

        line-height: 0.98 !important;

        font-weight: 500 !important;

        letter-spacing: 0 !important;

        text-transform: none !important;

        color: #F6F0E6 !important;
    }


    /* GOLD SECOND LINE */

    .personal-hero-content h1 span {

        display: block !important;

        margin-top: 3px !important;

        color: #D9B75B !important;
    }


    /* ======================================================
       DECORATIVE DIVIDER
       ====================================================== */

    .personal-hero-content .atelier-divider {

        display: flex !important;

        align-items: center !important;

        justify-content: flex-start !important;

        gap: 6px !important;

        width: 105px !important;

        height: 10px !important;

        margin: 8px 0 !important;

        color: #C5A24A !important;

        font-size: 7px !important;

        transform-origin: left center !important;
    }


    .personal-hero-content .atelier-divider span {

        display: block !important;

        flex: 1 !important;

        width: auto !important;

        height: 1px !important;

        background:
            linear-gradient(90deg,
                transparent,
                #C5A24A) !important;
    }


    .personal-hero-content .atelier-divider span:last-child {

        background:
            linear-gradient(90deg,
                #C5A24A,
                transparent) !important;
    }


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

    .personal-hero-content p {

        width: 100% !important;

        max-width: 170px !important;

        margin: 0 0 9px 0 !important;

        padding: 0 !important;

        color: rgba(246, 240, 230, 0.92) !important;

        font-family: "Poppins", sans-serif !important;

        font-size: 8px !important;

        line-height: 1.35 !important;

        letter-spacing: 0.15px !important;
    }


    /* ======================================================
       HERO BUTTON AREA
       BOTH BUTTONS ON SAME LINE
       ====================================================== */

    .personal-hero-content .atelier-actions {

        width: 100% !important;

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        justify-content: flex-start !important;

        flex-wrap: nowrap !important;

        gap: 7px !important;

        margin: 0 !important;

        padding: 0 !important;
    }


    /* ======================================================
       START DESIGNING
       ====================================================== */

    .personal-hero-content .atelier-primary {

        display: inline-flex !important;

        align-items: center !important;

        justify-content: center !important;

        gap: 7px !important;

        width: auto !important;

        min-width: 92px !important;

        max-width: 105px !important;

        padding: 7px 9px !important;

        margin: 0 !important;

        background: #C5A24A !important;

        color: #3A0F20 !important;

        border: 1px solid #D7B85C !important;

        border-radius: 4px !important;

        clip-path: none !important;

        text-decoration: none !important;

        text-transform: uppercase !important;

        font-family: "Poppins", sans-serif !important;

        font-size: 6.5px !important;

        font-weight: 700 !important;

        letter-spacing: 0.6px !important;

        line-height: 1 !important;

        white-space: nowrap !important;

        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18) !important;

        animation: none !important;
    }


    .personal-hero-content .atelier-primary span {

        font-size: 11px !important;

        line-height: 1 !important;
    }


    /* ======================================================
       EXPLORE COLLECTION
       ====================================================== */

    .personal-hero-content .atelier-secondary {

        display: inline-flex !important;

        align-items: center !important;

        gap: 5px !important;

        width: auto !important;

        min-width: 0 !important;

        padding: 5px 0 !important;

        margin: 0 !important;

        color: #F6F0E6 !important;

        font-family: "Poppins", sans-serif !important;

        font-size: 6px !important;

        font-weight: 600 !important;

        letter-spacing: 0.7px !important;

        line-height: 1 !important;

        white-space: nowrap !important;
    }


    .personal-hero-content .atelier-secondary span {

        color: #C5A24A !important;

        font-size: 11px !important;
    }


    /* ======================================================
       DISABLE LARGE HERO ANIMATIONS ON PHONE
       Keeps mobile clean and stable.
       ====================================================== */

    .personal-hero-content,
    .personal-hero-content .atelier-label,
    .personal-hero-content h1,
    .personal-hero-content .atelier-divider,
    .personal-hero-content p,
    .personal-hero-content .atelier-actions,
    .personal-hero-content .atelier-primary {

        animation: none !important;

        opacity: 1 !important;

        transform: none !important;

        filter: none !important;
    }


    /* ======================================================
       MAIN PERSONALISATION SECTION
       ====================================================== */

    .personal-section {

        width: 100% !important;

        padding: 48px 14px !important;

        margin: 0 !important;

        background: #fff !important;

        box-sizing: border-box !important;
    }


    .personal-section .container {

        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto !important;

        padding: 0 !important;
    }


    /* ======================================================
       SECTION TITLE
       ====================================================== */

    .personal-section .section-title {

        width: 100% !important;

        margin-bottom: 25px !important;

        text-align: center !important;
    }


    .personal-section .section-title p {

        margin: 0 0 7px !important;

        font-size: 9px !important;

        letter-spacing: 1.5px !important;

        color: #C5A24A !important;
    }


    .personal-section .section-title h2 {

        margin: 0 !important;

        font-family: "Cinzel", Georgia, serif !important;

        font-size: 25px !important;

        line-height: 1.15 !important;

        color: #6B1E35 !important;
    }


    .personal-section .gold-line {

        width: 55px !important;

        height: 2px !important;

        margin: 10px auto 0 !important;

        background: #C5A24A !important;
    }


    /* ======================================================
       CUSTOM DESIGN BOX
       SINGLE COLUMN ON MOBILE
       ====================================================== */

    .custom-box {

        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto !important;

        padding: 20px 16px !important;

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 16px !important;

        background: #fff !important;

        border-radius: 16px !important;

        box-shadow:
            0 10px 30px rgba(74, 16, 36, 0.09) !important;
    }


    .custom-field {

        width: 100% !important;

        min-width: 0 !important;
    }


    .custom-field label {

        margin-bottom: 6px !important;

        color: #5B1F1F !important;

        font-size: 12px !important;

        font-weight: 600 !important;
    }


    .custom-field select,
    .custom-field textarea {

        width: 100% !important;

        max-width: 100% !important;

        padding: 11px 12px !important;

        border: 1px solid #DED6CE !important;

        border-radius: 9px !important;

        background: #FFFCF8 !important;

        color: #4A3030 !important;

        font-family: "Poppins", sans-serif !important;

        font-size: 13px !important;

        line-height: 1.4 !important;

        outline: none !important;
    }


    .custom-field textarea {

        min-height: 105px !important;

        resize: vertical !important;
    }


    .custom-field select:focus,
    .custom-field textarea:focus {

        border-color: #8B1E3F !important;

        box-shadow:
            0 0 0 3px rgba(139, 30, 63, 0.08) !important;
    }


    .full-width {

        grid-column: 1 !important;
    }


    /* ======================================================
       SUBMIT BUTTON
       ====================================================== */

    .custom-btn {

        grid-column: 1 !important;

        width: 100% !important;

        padding: 12px !important;

        border: none !important;

        border-radius: 9px !important;

        background: #6B1E35 !important;

        color: #fff !important;

        font-family: "Poppins", sans-serif !important;

        font-size: 13px !important;

        font-weight: 600 !important;

        cursor: pointer !important;

        box-shadow:
            0 8px 18px rgba(107, 30, 53, 0.18) !important;
    }


    /* ======================================================
       DESIGN PREVIEW
       ====================================================== */

    .design-preview {

        width: 100% !important;

        padding: 48px 14px !important;

        background: #fff !important;
    }


    .preview-card {

        display: flex !important;

        flex-direction: column !important;

        gap: 24px !important;

        margin-top: 25px !important;
    }


    .preview-image {

        width: 100% !important;
    }


    .preview-image img {

        width: 100% !important;

        height: auto !important;

        max-height: 300px !important;

        object-fit: cover !important;

        border-radius: 15px !important;
    }


    .preview-content {

        width: 100% !important;

        text-align: center !important;
    }


    .preview-content h3 {

        font-size: 23px !important;

        line-height: 1.2 !important;

        margin-bottom: 10px !important;
    }


    .preview-content p {

        font-size: 13px !important;

        line-height: 1.65 !important;

        margin-bottom: 18px !important;
    }


    .price-box {

        padding: 12px 20px !important;

        border-radius: 10px !important;

        font-size: 15px !important;
    }


    .price-box span {

        margin-top: 5px !important;

        font-size: 21px !important;
    }


    /* ======================================================
       WHY / PROCESS / TESTIMONIAL SECTIONS
       ====================================================== */

    .why-personalise,
    .personal-process,
    .personal-testimonials {

        width: 100% !important;

        padding: 48px 14px !important;

        margin: 0 !important;

        box-sizing: border-box !important;
    }


    .why-personalise .container,
    .personal-process .container,
    .personal-testimonials .container {

        width: 100% !important;

        max-width: 100% !important;

        padding: 0 !important;

        margin: 0 auto !important;
    }


    .why-grid,
    .process-grid,
    .testimonial-grid {

        width: 100% !important;

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 15px !important;

        margin-top: 25px !important;
    }


    .why-card,
    .process-card,
    .testimonial-card {

        width: 100% !important;

        padding: 22px 18px !important;

        margin: 0 !important;

        border-radius: 14px !important;

        text-align: center !important;

        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.07) !important;

        transform: none !important;
    }


    .why-card i {

        font-size: 30px !important;

        margin-bottom: 12px !important;

        color: #8B1E3F !important;
    }


    .why-card h3,
    .process-card h4,
    .testimonial-card h4 {

        font-size: 16px !important;

        line-height: 1.3 !important;

        margin-bottom: 8px !important;

        color: #6B1E35 !important;
    }


    .why-card p,
    .process-card p {

        font-size: 11px !important;

        line-height: 1.6 !important;

        margin: 0 !important;

        color: #625656 !important;
    }


    /* ======================================================
       PROCESS NUMBER
       ====================================================== */

    .process-card h3 {

        width: 44px !important;

        height: 44px !important;

        margin: 0 auto 12px !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        border-radius: 50% !important;

        background: #6B1E35 !important;

        color: #C5A24A !important;

        font-size: 16px !important;
    }


    /* ======================================================
       TESTIMONIALS
       ====================================================== */

    .testimonial-card {

        font-size: 13px !important;

        line-height: 1.65 !important;
    }


    .testimonial-card p {

        margin: 10px 0 !important;
    }


    /* ======================================================
       CUSTOM REQUEST CONFIRMATION
       ====================================================== */

    .custom-request-confirmation {

        width: 100% !important;

        padding: 48px 14px !important;
    }


    .request-success-card {

        width: 100% !important;

        max-width: 100% !important;

        margin: 0 auto !important;

        padding: 28px 18px !important;

        border-radius: 17px !important;
    }


    .success-icon {

        width: 58px !important;

        height: 58px !important;

        font-size: 22px !important;

        margin-bottom: 16px !important;
    }


    .success-tag {

        font-size: 10px !important;

        letter-spacing: 1.3px !important;
    }


    .request-success-card h2 {

        font-size: 23px !important;

        line-height: 1.25 !important;

        margin-bottom: 12px !important;
    }


    .success-message {

        font-size: 12px !important;

        line-height: 1.65 !important;

        margin: 18px auto !important;
    }


    .request-id-box {

        width: 100% !important;

        max-width: 100% !important;

        padding: 15px !important;

        margin: 20px auto !important;
    }


    .request-id-box span {

        font-size: 10px !important;
    }


    .request-id-box strong {

        font-size: 19px !important;
    }


    .next-step-box {

        width: 100% !important;

        margin: 20px 0 !important;

        padding: 18px !important;

        gap: 12px !important;

        flex-direction: column !important;

        align-items: center !important;

        text-align: center !important;
    }


    .next-step-icon {

        min-width: 44px !important;

        width: 44px !important;

        height: 44px !important;

        font-size: 17px !important;
    }


    .next-step-box h3 {

        font-size: 16px !important;

        margin-bottom: 6px !important;
    }


    .next-step-box p {

        font-size: 11px !important;

        line-height: 1.6 !important;
    }


    .confirmation-buttons {

        width: 100% !important;

        flex-direction: column !important;

        align-items: stretch !important;

        gap: 10px !important;

        margin-top: 20px !important;
    }


    .confirmation-buttons a {

        width: 100% !important;

        text-align: center !important;

        padding: 12px 16px !important;

        font-size: 12px !important;
    }


    .artisan-note {

        font-size: 10px !important;

        line-height: 1.5 !important;

        margin-top: 20px !important;
    }


    /* ======================================================
       VIEW CUSTOM REQUESTS
       ====================================================== */

    .view-custom-requests-link {

        left: 0 !important;

        bottom: 12px !important;

        padding: 11px 15px !important;

        gap: 7px !important;

        font-size: 10px !important;

        border-radius: 0 25px 25px 0 !important;
    }


    .view-custom-requests-link i {

        font-size: 10px !important;
    }


    /* ======================================================
       BACK TO TOP
       ====================================================== */

    .sutrika-back-to-top {

        right: 12px !important;

        bottom: 12px !important;

        width: 40px !important;

        height: 40px !important;

        font-size: 16px !important;
    }

}


/* ==========================================================
   VERY SMALL PHONES
   350px AND BELOW
   ========================================================== */

@media (max-width: 350px) {

    .personal-hero {

        height: 225px !important;

        min-height: 225px !important;

        max-height: 225px !important;
    }


    .personal-hero-content {

        width: 59% !important;

        max-width: 59% !important;

        margin-left: 4.5% !important;
    }


    .personal-hero-content .atelier-label {

        font-size: 5.7px !important;

        letter-spacing: 1.2px !important;

        padding: 3px 5px !important;

        margin-bottom: 5px !important;
    }


    .personal-hero-content h1 {

        max-width: 165px !important;

        font-size: 19px !important;
    }


    .personal-hero-content .atelier-divider {

        width: 90px !important;

        margin: 6px 0 !important;
    }


    .personal-hero-content p {

        max-width: 150px !important;

        font-size: 6.8px !important;

        line-height: 1.3 !important;

        margin-bottom: 7px !important;
    }


    .personal-hero-content .atelier-actions {

        gap: 5px !important;
    }


    .personal-hero-content .atelier-primary {

        min-width: 82px !important;

        padding: 6px 7px !important;

        font-size: 5.7px !important;
    }


    .personal-hero-content .atelier-secondary {

        font-size: 5.5px !important;
    }


    .personal-hero-content .atelier-secondary span {

        font-size: 9px !important;
    }


    .personal-section,
    .why-personalise,
    .personal-process,
    .personal-testimonials,
    .design-preview,
    .custom-request-confirmation {

        padding-left: 10px !important;

        padding-right: 10px !important;
    }


    .personal-section .section-title h2 {

        font-size: 22px !important;
    }


    .custom-box {

        padding: 17px 13px !important;
    }
}


/* ==========================================================
   LANDSCAPE PHONE
   EXTRA WIDE MOBILE SCREEN
   ========================================================== */

@media (max-width: 900px) and (orientation: landscape) {

    .personal-hero {

        height: 230px !important;

        min-height: 230px !important;

        max-height: 230px !important;
    }


    .personal-hero-content {

        width: 52% !important;

        max-width: 52% !important;

        margin-left: 5% !important;
    }


    .personal-hero-content h1 {

        font-size: 23px !important;

        max-width: 230px !important;
    }


    .personal-hero-content p {

        font-size: 8px !important;

        max-width: 200px !important;
    }
}