/* =========================================
   ROOT MIRACLE
   PREMIUM HAIR CARE WEBSITE
========================================= */


/* =========================================
   VARIABLES
========================================= */

:root {
    --black: #111111;
    --soft-black: #1b1b1b;

    --white: #ffffff;
    --off-white: #f8f8f5;

    --light-gray: #eeeeea;
    --gray: #737373;

    --turquoise: #079bb3;
    --dark-turquoise: #057b8e;

    --soft-turquoise: #e9f7f8;

    --border: #ddddda;
}


/* =========================================
   RESET
========================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}


img {
    display: block;
    width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input {
    font: inherit;
}


button {
    cursor: pointer;
}


/* =========================================
   ANNOUNCEMENT BAR
========================================= */

.announcement-bar {
    min-height: 40px;

    background:
        linear-gradient(
            90deg,
            #090909,
            #181818,
            #090909
        );

    color: var(--white);

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

    padding: 8px 20px;

    text-align: center;

    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}


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

.main-header {
    min-height: 90px;

    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

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

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(7, 155, 179, 0.12);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.035);

    position: sticky;
    top: 0;

    z-index: 1000;
}


/* =========================================
   ROOT MIRACLE OFFICIAL LOGO
========================================= */

.site-logo {
    width: 145px;
    height: 82px;

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

    flex-shrink: 0;

    overflow: hidden;
}

.site-logo-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}

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

.main-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}


.main-nav a {
    position: relative;

    padding: 33px 0;

    font-size: 12px;

    letter-spacing: 1.7px;

    font-weight: 700;

    text-transform: uppercase;
}


.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 23px;

    width: 0;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--turquoise),
            #58d3df
        );

    transition: width 0.3s ease;
}


.main-nav a:hover::after {
    width: 100%;
}


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

.header-actions {
    display: flex;
    align-items: center;

    gap: 4px;
}


.icon-button,
.cart-button {
    width: 43px;
    height: 43px;

    border: none;
    border-radius: 50%;

    background: transparent;

    position: relative;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.icon-button:hover,
.cart-button:hover {
    background: var(--soft-turquoise);

    transform: translateY(-2px);
}


.cart-count {
    position: absolute;

    top: 0;
    right: -1px;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

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

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--turquoise),
            var(--dark-turquoise)
        );

    color: white;

    font-size: 10px;
}


/* =========================================
   NEW PREMIUM HERO
========================================= */

.hero {
    min-height: 760px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    position: relative;
    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(21, 196, 216, 0.20),
            transparent 28%
        ),
        radial-gradient(
            circle at 75% 90%,
            rgba(21, 196, 216, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071719 0%,
            #0a282c 45%,
            #07596a 100%
        );
}


/* DECORATIVE ORBS */

.hero-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.hero-orb-one {
    width: 480px;
    height: 480px;

    top: -270px;
    left: -150px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.hero-orb-two {
    width: 650px;
    height: 650px;

    right: -350px;
    bottom: -390px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);
}


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

.hero-copy {
    padding:
        100px
        7%
        90px
        10%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;

    z-index: 5;
}

.hero-eyebrow {
    margin-bottom: 22px;

    color: #26bfd1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;
}

.hero-copy h1 {
    max-width: 690px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            60px,
            6.2vw,
            96px
        );

    font-weight: 400;

    line-height: 0.96;

    letter-spacing: -3px;

    color: #ffffff;
}

.hero-copy h1 span {
    display: block;

    margin-top: 8px;

    color: #19b8cc;
}

.hero-lead {
    max-width: 580px;

    margin-top: 30px;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size: 17px;

    line-height: 1.9;
}


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

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 38px;
}

.hero-btn {
    min-height: 56px;

    padding: 0 30px;

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

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;

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

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn-primary {
    background:
        linear-gradient(
            135deg,
            #17b8ca,
            #0694a8
        );

    color: white;

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.18);
}

.hero-btn-primary:hover {
    background: #ffffff;

    color: #091b1e;
}

.hero-btn-secondary {
    border:
        1px solid
        rgba(255, 255, 255, 0.35);

    color: white;

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

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
    background: white;

    color: #091b1e;
}


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

.hero-highlights {
    max-width: 650px;

    margin-top: 62px;

    padding-top: 25px;

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

    gap: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.13);
}

.hero-highlights div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.hero-highlights strong {
    color: white;

    font-size: 11px;

    letter-spacing: 2px;
}

.hero-highlights span {
    color:
        rgba(255, 255, 255, 0.48);

    font-size: 12px;
}


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

.hero-visual {
    min-height: 760px;

    position: relative;

    z-index: 2;
}


/* MODEL */

.hero-model {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 82%;

    overflow: hidden;
}

.hero-model::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #0a282c 0%,
            rgba(10, 40, 44, 0.48) 20%,
            transparent 55%
        );
}

.hero-model img {
    width: 100%;
    height: 100%;

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

    transition:
        transform
        1.2s
        ease;
}

.hero:hover .hero-model img {
    transform: scale(1.025);
}


/* =========================================
   COLLECTION FLOATING CARD
========================================= */

.hero-collection-card {
    width: 52%;
    min-width: 390px;

    position: absolute;

    left: -5%;
    bottom: 36px;

    z-index: 6;

    padding: 18px 20px 15px;

    border-radius: 22px;

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

    box-shadow:
        0 30px 70px
        rgba(
            0,
            0,
            0,
            0.25
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-collection-heading {
    display: flex;

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

    gap: 15px;

    margin-bottom: 5px;
}

.hero-collection-heading span {
    color: #079bb3;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero-collection-heading strong {
    color: #111111;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;

    font-weight: 500;
}

.hero-collection-card img {
    width: 100%;
    height: 155px;

    object-fit: contain;

    mix-blend-mode: multiply;
}


/* =========================================
   4 IN 1 BADGE
========================================= */

.hero-four-badge {
    position: absolute;

    top: 54px;
    left: 0;

    z-index: 7;

    width: 118px;
    height: 118px;

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

    border-radius: 50%;

    color: white;

    background:
        rgba(
            5,
            18,
            20,
            0.80
        );

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

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.20);
}

.hero-four-badge > strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 62px;

    line-height: 1;
}

.hero-four-badge div {
    display: flex;
    flex-direction: column;

    margin-left: 2px;
}

.hero-four-badge span:first-child {
    color: #20bdd0;

    font-size: 10px;
    font-weight: 800;
}

.hero-four-badge span:last-child {
    font-size: 27px;
    font-weight: 800;

    line-height: 1;
}

/* =========================================
   BENEFITS
========================================= */

.benefits {
    display: grid;

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

    border-top:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

    background: white;
}


.benefit {
    padding:
        48px
        35px;

    border-right:
        1px solid
        var(--border);

    position: relative;

    overflow: hidden;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


.benefit:last-child {
    border-right: none;
}


.benefit::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    right: -60px;
    top: -60px;

    background:
        rgba(7, 155, 179, 0.15);

    transition:
        transform 0.4s ease;
}


.benefit:hover::before {
    transform: scale(5);
}


.benefit:hover {
    background:
        var(--black);

    color:
        var(--white);
}


.benefit span,
.benefit h3,
.benefit p {
    position: relative;
    z-index: 2;
}


.benefit span {
    display: inline-block;

    color:
        var(--turquoise);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 25px;
}


.benefit h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;

    margin-bottom: 8px;
}


.benefit p {
    color:
        var(--gray);

    font-size: 14px;
}


.benefit:hover p {
    color: #cccccc;
}


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

.shop-section,
.routine-section {
    padding:
        110px
        6%;
}


.section-heading {
    max-width: 720px;

    margin:
        0
        auto
        65px;

    text-align: center;
}


.section-heading h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            40px,
            5vw,
            61px
        );

    line-height: 1.1;

    font-weight: 500;
}


.section-heading > p:last-child {
    color:
        var(--gray);

    margin-top:
        18px;

    font-size:
        16px;
}


/* =========================================
   SHOP BY HAIR TYPE
========================================= */

.hair-types {
    padding: 110px 6%;
    background: #f7f7f5;
}

.hair-type-grid {
    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.hair-type-card {
    height: 520px;

    position: relative;
    overflow: hidden;

    background: #111;
}

.hair-type-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.hair-type-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(0, 0, 0, 0.78) 100%
        );
}

.hair-type-card:hover img {
    transform: scale(1.07);
    filter: brightness(0.88);
}

.hair-type-overlay {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    color: white;

    z-index: 2;
}

.hair-type-overlay span {
    display: block;

    color: var(--turquoise);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 8px;
}

.hair-type-overlay h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 39px;
    font-weight: 500;

    line-height: 1;

    margin-bottom: 12px;
}

.hair-type-overlay p {
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    opacity: 0.85;

    transform: translateY(8px);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.hair-type-card:hover .hair-type-overlay p {
    transform: translateY(0);
    opacity: 1;
}


/* =========================================
   HOME PRODUCT CAROUSEL
========================================= */

.home-products-carousel {
    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 55px 1fr 55px;

    gap: 18px;
    align-items: center;
}

.home-product-track {
    display: flex;
    flex-wrap: nowrap;

    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scrollbar-width: none;

    padding: 12px 2px 35px;
}

.home-product-track::-webkit-scrollbar {
    display: none;
}

.home-product-track .product-card {
    flex: 0 0 310px;
    min-width: 310px;
}

.home-carousel-arrow {
    width: 50px;
    height: 50px;

    border: 1px solid #d7d7d7;
    border-radius: 50%;

    background: #ffffff;
    color: #111111;

    font-size: 22px;
    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.home-carousel-arrow:hover {
    background: #111111;
    color: #ffffff;
    transform: scale(1.06);
}


/* =========================================
   CHECKOUT PAGE
========================================= */

.checkout-page {
    min-height: 100vh;

    padding:
        80px
        6%
        120px;

    background:
        linear-gradient(
            180deg,
            #f8fbfb,
            #ffffff
        );
}


.checkout-heading {
    max-width: 760px;

    margin:
        0 auto
        65px;

    text-align: center;
}

.checkout-heading h1 {
    margin-top: 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            48px,
            6vw,
            76px
        );

    font-weight: 400;

    line-height: 1;
}

.checkout-heading > p:last-child {
    max-width: 580px;

    margin:
        22px auto 0;

    color: #777777;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   CHECKOUT LAYOUT
========================================= */

.checkout-layout {
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(350px, 0.65fr);

    gap: 55px;

    align-items: start;
}


/* =========================================
   CHECKOUT FORM
========================================= */

.checkout-form-section {
    min-width: 0;
}


.checkout-block {
    margin-bottom: 28px;

    padding: 38px;

    border:
        1px solid
        #e3e3e3;

    background: #ffffff;
}


.checkout-block-heading {
    display: flex;

    gap: 18px;

    margin-bottom: 32px;
}

.checkout-block-heading > span {
    color: var(--turquoise);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.checkout-block-heading h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px;

    font-weight: 500;

    margin-bottom: 6px;
}

.checkout-block-heading p {
    color: #888888;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   FORM FIELDS
========================================= */

.form-grid {
    display: grid;

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

    gap: 22px;
}


.form-group {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.form-group-full {
    grid-column: 1 / -1;
}


.form-group label {
    color: #333333;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.form-group label span {
    color: #aaaaaa;

    font-weight: 500;

    text-transform: none;

    letter-spacing: 0;
}


.form-group input,
.form-group select {
    width: 100%;

    height: 54px;

    padding: 0 15px;

    border:
        1px solid
        #d8d8d8;

    background: #ffffff;

    color: #111111;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.form-group input:focus,
.form-group select:focus {
    border-color:
        var(--turquoise);

    box-shadow:
        0 0 0 3px
        rgba(7, 155, 179, 0.09);
}


/* =========================================
   PAYMENT PLACEHOLDER
========================================= */

.payment-placeholder {
    min-height: 110px;

    padding: 24px;

    display: flex;

    align-items: center;

    gap: 18px;

    border:
        1px dashed
        #cccccc;

    background: #fafafa;
}


.payment-lock {
    width: 48px;
    height: 48px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: #ffffff;
}


.payment-placeholder strong {
    display: block;

    margin-bottom: 6px;
}


.payment-placeholder p {
    color: #888888;

    font-size: 12px;

    line-height: 1.6;
}


.place-order-button {
    width: 100%;

    min-height: 60px;

    border: none;

    background:
        linear-gradient(
            135deg,
            var(--turquoise),
            var(--dark-turquoise)
        );

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.place-order-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(7, 155, 179, 0.18);
}


/* =========================================
   ORDER SUMMARY
========================================= */

.checkout-summary {
    position: sticky;

    top: 120px;

    padding: 32px;

    border:
        1px solid
        #e2e2e2;

    background: #ffffff;
}


.checkout-summary-header {
    padding-bottom: 22px;

    border-bottom:
        1px solid
        #eeeeee;
}


.checkout-summary-header h2 {
    margin-top: 6px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;

    font-weight: 500;
}


.checkout-items {
    max-height: 430px;

    overflow-y: auto;
}


.checkout-item {
    display: grid;

    grid-template-columns:
        75px
        1fr;

    gap: 15px;

    padding: 20px 0;

    border-bottom:
        1px solid
        #eeeeee;
}


.checkout-item-image {
    width: 75px;
    height: 90px;

    background: #f4f8f8;

    overflow: hidden;
}


.checkout-item-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.checkout-item-info h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.2;
}


.checkout-item-info p {
    margin-top: 7px;

    color: #777777;

    font-size: 12px;
}


.checkout-empty {
    padding: 45px 0;

    text-align: center;
}


.checkout-empty p {
    margin-bottom: 12px;

    color: #777777;
}


.checkout-empty a {
    color: var(--turquoise);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================================
   CHECKOUT TOTALS
========================================= */

.checkout-totals {
    padding-top: 20px;
}


.checkout-totals > div {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 14px;

    font-size: 13px;
}


.checkout-totals span {
    color: #666666;
}


.checkout-totals strong {
    text-align: right;
}


.checkout-total {
    margin-top: 20px !important;

    padding-top: 20px;

    border-top:
        1px solid
        #dddddd;

    font-size: 17px !important;
}


.checkout-total span,
.checkout-total strong {
    color: #111111;
}


.checkout-security {
    margin-top: 25px;

    padding-top: 20px;

    display: flex;

    gap: 10px;

    border-top:
        1px solid
        #eeeeee;

    color: #888888;
}


.checkout-security p {
    font-size: 11px;

    line-height: 1.6;
}


/* =========================================
   OBAH INGREDIENTS
========================================= */

.obah-ingredients-section {
    padding: 120px 6%;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(25, 166, 184, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f8fcfc,
            #eef7f7
        );
}


.obah-ingredients-heading {
    max-width: 900px;

    margin: 0 auto 70px;

    text-align: center;
}


.obah-ingredients-heading .section-label {
    color: var(--turquoise);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.8px;

    margin-bottom: 16px;
}


.obah-ingredients-heading h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            46px,
            6vw,
            76px
        );

    line-height: 1;

    font-weight: 500;

    margin-bottom: 22px;

    color: #102b2f;
}


.obah-ingredients-heading > p:last-child {
    max-width: 650px;

    margin: 0 auto;

    color: #667275;

    font-size: 16px;

    line-height: 1.8;
}


/* GRID */

.obah-ingredients-grid {
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

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

    gap: 26px;
}

/* CARD */

.obah-ingredient-card > img {
    width: 100%;
    height: 260px;

    display: block;

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

    transition:
        transform 0.5s ease;
}


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

    box-shadow:
        0 30px 75px
        rgba(0, 45, 50, 0.13);
}


/* IMAGE */

.obah-ingredient-card > img {
    width: 100%;
    height: 360px;

    display: block;

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

    transition:
        transform 0.5s ease;
}


.obah-ingredient-card:hover > img {
    transform: scale(1.035);
}


/* CONTENT */

.obah-ingredient-content {
    position: relative;

    padding:
        26px
        28px
        30px;
}


.obah-ingredient-content > span {
    display: inline-flex;

    width: 42px;
    height: 42px;

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

    margin-bottom: 20px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--turquoise),
            #0c7d88
        );

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:
        0 8px 20px
        rgba(14, 139, 153, 0.20);
}


.obah-ingredient-content h3 {
    margin-bottom: 18px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            30px,
            3vw,
            42px
        );

    font-weight: 500;

    line-height: 1.05;

    color: #102b2f;
}


.obah-ingredient-content p {
    color: #667275;

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 16px;
}


.obah-ingredient-content p:last-child {
    margin-bottom: 0;
}


/* ACCENT LINE */

.obah-ingredient-content::before {
    content: "";

    position: absolute;

    top: 0;
    left: 38px;

    width: 74px;
    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--turquoise),
            transparent
        );
}


/* =========================================
   PRODUCT WISHLIST HEART
========================================= */

.product-card {
    position: relative;
}

.product-wishlist {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: white;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

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

    transition: transform 0.2s ease;
}

.product-wishlist:hover {
    transform: scale(1.12);
}

.product-wishlist.active {
    color: #079bb5;
}


/* TABLET */

@media (max-width: 900px) {

    .obah-ingredients-section {
        padding: 90px 5%;
    }

    .obah-ingredients-grid {
        grid-template-columns: 1fr;
    }

    .obah-ingredient-card > img {
        height: 330px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .obah-ingredients-section {
        padding:
            75px
            20px;
    }

    .obah-ingredients-heading {
        margin-bottom: 50px;
    }

    .obah-ingredients-heading h2 {
        font-size: 44px;
    }

    .obah-ingredient-card {
        border-radius: 22px;
    }

    .obah-ingredient-card > img {
        height: 270px;
    }

    .obah-ingredient-content {
        padding:
            28px
            24px
            32px;
    }

    .obah-ingredient-content::before {
        left: 24px;
    }

}


/* TABLET */

@media (max-width: 1100px) {

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

}


/* MOBILE */

@media (max-width: 650px) {

    .logo {
        width: 150px;
        height: 62px;
    }

    .brand-logo-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .site-logo {
    width: 110px;
    height: 62px;
    }

    .site-logo-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

}


/* =========================================
   OUR STORY
========================================= */

.story-section {
    padding: 120px 6%;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7fbfb
        );
}


.story-container {
    max-width: 1380px;

    margin: 0 auto;
}


.story-heading {
    max-width: 900px;

    margin-bottom: 70px;
}


.story-heading h2 {
    margin-top: 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            52px,
            6vw,
            88px
        );

    line-height: 0.98;

    font-weight: 400;
}


.story-heading h2 span {
    display: block;

    color: var(--turquoise);
}


/* =========================================
   PARENT COMPANY
========================================= */

.parent-company {
    margin-top: 55px;

    padding: 38px 42px;

    display: grid;

    grid-template-columns:
        150px
        1fr;

    gap: 38px;

    align-items: center;

    border-top:
        1px solid
        #dddddd;

    border-bottom:
        1px solid
        #dddddd;

    background: #ffffff;
}


.parent-company-logo {
    display: flex;

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


.parent-company-logo img {
    width: 110px;
    height: auto;

    display: block;
}


.parent-company-content h3 {
    margin:
        8px 0
        12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;

    font-weight: 500;
}


.parent-company-content p:last-child {
    max-width: 720px;

    color: #666666;

    font-size: 14px;

    line-height: 1.8;
}


/* MOBILE */

@media (max-width: 650px) {

    .parent-company {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .parent-company-logo img {
        width: 90px;
    }

}


/* INTRO */

.story-content {
    display: grid;

    gap: 34px;
}


.story-intro {
    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    gap: 70px;

    padding:
        45px 0
        55px;

    border-top:
        1px solid #dddddd;

    border-bottom:
        1px solid #dddddd;
}


.story-intro p {
    color: #666666;

    font-size: 16px;

    line-height: 1.8;
}


.story-intro .story-lead {
    color: #111111;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            26px,
            3vw,
            40px
        );

    line-height: 1.25;
}


/* =========================================
   OBAH PHILOSOPHY
========================================= */

.obah-philosophy {
    max-width: 1350px;

    margin: 80px auto;

    padding: 70px 7%;

    display: grid;

    grid-template-columns:
        380px
        1fr;

    gap: 80px;

    align-items: center;

    background: #07383d;

    color: #ffffff;
}


.obah-visual {
    text-align: center;
}


.obah-number {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: 30px;

    font-weight: 800;

    letter-spacing: 5px;
}


.obah-image {
    width: 100%;
    max-width: 320px;

    display: block;

    margin: 0 auto;

    object-fit: contain;

    border-radius: 28px;

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

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.obah-image:hover {
    transform: translateY(-6px) scale(1.02);

    box-shadow:
        0 26px 55px rgba(0, 0, 0, 0.28);
}


.obah-content .section-label {
    color: var(--turquoise);
}


.obah-content h2 {
    margin:
        14px 0
        30px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 54px;

    font-weight: 500;

    line-height: 1.05;
}


.obah-content p {
    max-width: 760px;

    margin-bottom: 20px;

    color: rgba(
        255,
        255,
        255,
        0.82
    );

    font-size: 16px;

    line-height: 1.8;
}


.obah-content strong {
    color: #ffffff;
}


/* MOBILE */

@media (max-width: 800px) {

    .obah-philosophy {
        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            55px
            30px;
    }

    .obah-image {
        max-width: 280px;
    }

    .obah-content h2 {
        font-size: 42px;
    }

}


/* ROUTINE */

.story-routine {
    padding:
        55px
        0;

    max-width: 900px;
}


.story-routine h3 {
    margin:
        10px 0
        18px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            34px,
            4vw,
            54px
        );

    font-weight: 400;
}


.story-routine p:last-child {
    color: #666666;

    font-size: 16px;

    line-height: 1.85;
}


/* TEXTURES */

.story-textures {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 45px;

    padding:
        45px
        0;

    border-top:
        1px solid #dddddd;
}


.story-quote {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            24px,
            3vw,
            38px
        );

    line-height: 1.3;

    color: #111111;
}


.story-signature {
    align-self: end;

    color: #777777;

    font-size: 15px;

    line-height: 1.8;
}


.story-signature strong {
    display: block;

    margin-top: 8px;

    color: var(--turquoise);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    font-weight: 500;
}


/* =========================================
   SHOP
========================================= */

.shop-section {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fafafa
        );
}


.product-grid {
    display: grid;

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

    gap: 25px;

    max-width:
        1450px;

    margin: auto;
}


.product-card {
    background:
        var(--white);

    border:
        1px solid
        var(--border);

    overflow: hidden;

    position: relative;

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


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

    border-color:
        rgba(
            7,
            155,
            179,
            0.4
        );

    box-shadow:
        0
        30px
        60px
        rgba(
            0,
            0,
            0,
            0.09
        );
}


/* =========================================
   PRODUCT IMAGE PLACEHOLDER
========================================= */
/* =========================================
   REAL PRODUCT IMAGES
========================================= */

.product-image {
    height: 390px;

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

    overflow: hidden;

    position: relative;

    background:
        radial-gradient(
            circle at center,
            rgba(7, 155, 179, 0.12),
            transparent 58%
        ),
        linear-gradient(
            145deg,
            #f8fbfb,
            #eaf5f6
        );
}


.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}


.product-card:hover .product-image img {
    transform: scale(1.045);

    filter:
        brightness(1.03);
}

/* =========================================
   REAL PRODUCT IMAGES
========================================= */

.product-image {
    height: 390px;

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

    overflow: hidden;

    position: relative;

    background:
        radial-gradient(
            circle at center,
            rgba(7, 155, 179, 0.12),
            transparent 58%
        ),
        linear-gradient(
            145deg,
            #f8fbfb,
            #eaf5f6
        );
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.045);
    filter: brightness(1.03);
}

.product-image-placeholder {
    height: 390px;

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

    overflow: hidden;

    position: relative;

    background:
        radial-gradient(
            circle at center,
            rgba(
                7,
                155,
                179,
                0.08
            ),
            transparent 48%
        ),

        linear-gradient(
            145deg,
            #fafafa,
            #eeeeee
        );
}


.product-image-placeholder::after {
    content: "";

    width: 160px;
    height: 160px;

    border:
        1px solid
        rgba(
            7,
            155,
            179,
            0.12
        );

    border-radius: 50%;

    position: absolute;
}


.product-image-placeholder span {
    position: relative;

    z-index: 2;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #999;
}


/* =========================================
   PRODUCT INFORMATION
========================================= */

.product-info {
    padding: 27px;
}


.product-category {
    color:
        var(--turquoise);

    font-size:
        10px;

    letter-spacing:
        2.5px;

    font-weight:
        800;

    margin-bottom:
        10px;
}


.product-info h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        23px;

    line-height:
        1.2;

    min-height:
        55px;
}


.product-description {
    margin-top:
        12px;

    color:
        var(--gray);

    font-size:
        14px;

    min-height:
        68px;
}


.product-price {
    margin-top:
        16px;

    font-size:
        19px;

    font-weight:
        800;
}


.add-to-cart {
    width: 100%;

    min-height: 49px;

    margin-top: 18px;

    border:
        1px solid
        var(--black);

    background:
        var(--black);

    color:
        var(--white);

    font-size:
        10px;

    letter-spacing:
        2px;

    text-transform:
        uppercase;

    font-weight:
        800;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.add-to-cart:hover {
    background:
        linear-gradient(
            135deg,
            var(--turquoise),
            var(--dark-turquoise)
        );

    border-color:
        var(--turquoise);

    transform:
        translateY(-2px);
}


/* =========================================
   4 IN 1
========================================= */

.four-in-one {
    min-height:
        620px;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    align-items:
        center;

    background:
        linear-gradient(
            135deg,
            #090909,
            #1b1b1b
        );

    color:
        var(--white);

    overflow:
        hidden;
}


.four-content {
    padding:
        100px
        10%;
}


.four-content h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            50px,
            6vw,
            80px
        );

    font-weight:
        500;

    line-height:
        1;

    max-width:
        650px;
}


.four-content > p:not(.section-label) {
    max-width:
        650px;

    margin-top:
        30px;

    color:
        #c8c8c8;

    line-height:
        1.9;
}


.text-link {
    margin-top:
        35px;

    display:
        inline-block;

    padding-bottom:
        6px;

    border-bottom:
        1px solid
        var(--turquoise);

    color:
        var(--white);

    font-size:
        11px;

    letter-spacing:
        2px;

    text-transform:
        uppercase;
}


.four-number {
    height: 100%;

    min-height: 620px;

    background:
        linear-gradient(
            135deg,
            #0cb0c6,
            #057d91
        );

    display: flex;

    justify-content:
        center;

    align-items:
        center;

    overflow:
        hidden;

    position:
        relative;
}


.four-number::before {
    content: "";

    width: 500px;
    height: 500px;

    border-radius: 50%;

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

    position:
        absolute;
}


.four-number > span {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            220px,
            25vw,
            410px
        );

    line-height:
        0.8;

    position:
        relative;

    z-index:
        2;
}


.four-number > div {
    display:
        flex;

    flex-direction:
        column;

    margin-left:
        15px;

    position:
        relative;

    z-index:
        2;
}


.four-number strong:first-child {
    font-size:
        28px;

    letter-spacing:
        6px;
}


.four-number strong:last-child {
    font-size:
        120px;

    line-height:
        0.9;
}

/* =========================================
   ROUTINE
========================================= */

.routine-section {
    background:
        linear-gradient(
            135deg,
            #eaf6f7,
            #dff0f2
        );
}


.routine-grid {
    max-width: 1450px;

    margin: 60px auto 0;

    display: grid;

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

    gap: 0;

    border-top:
        1px solid
        #dfe5e5;

    border-left:
        1px solid
        #dfe5e5;
}


.routine-step {
    min-height: 360px;

    padding:
        42px
        32px;

    display: flex;
    flex-direction: column;

    border-right:
        1px solid
        #dfe5e5;

    border-bottom:
        1px solid
        #dfe5e5;

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

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.routine-step:hover {
    background: #ffffff;

    transform: translateY(-5px);

    box-shadow:
        0
        18px
        40px
        rgba(0, 0, 0, 0.07);

    z-index: 2;
}


.routine-step > span {
    color:
        var(--turquoise);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 32px;
}


.routine-step h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;

    font-weight: 500;

    line-height: 1.1;

    margin-bottom: 18px;
}


.routine-step p {
    color: #666666;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 30px;
}


.routine-step small {
    margin-top: auto;

    padding-top: 18px;

    border-top:
        1px solid
        #e5e5e5;

    color:
        var(--turquoise);

    font-size: 9px;

    font-weight: 800;

    line-height: 1.6;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* TABLET */

@media (max-width: 1000px) {

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

}


/* MOBILE */

@media (max-width: 650px) {

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

    .routine-step {
        min-height: auto;
    }

}


/* =========================================
   COLLECTION BANNER
========================================= */

.collection-banner {
    display:
        grid;

    grid-template-columns:
        1.2fr 0.8fr;

    min-height:
        620px;
}


.collection-image {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8f8f8
        );

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    padding:
        60px;

    position:
        relative;

    overflow:
        hidden;
}


.collection-image::before {
    content: "";

    width:
        550px;

    height:
        550px;

    position:
        absolute;

    border-radius:
        50%;

    background:
        rgba(
            7,
            155,
            179,
            0.07
        );

    filter:
        blur(
            20px
        );
}


.collection-image img {
    max-width:
        1000px;

    mix-blend-mode:
        multiply;

    position:
        relative;

    z-index:
        2;

    transition:
        transform
        0.5s
        ease;
}


.collection-image:hover img {
    transform:
        scale(1.03);
}


.collection-content {
    background:
        linear-gradient(
            135deg,
            #e7f7f8,
            #d9f0f3
        );

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    padding:
        80px
        12%;
}


.collection-content h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            45px,
            5vw,
            67px
        );

    font-weight:
        500;

    line-height:
        1.05;
}


.collection-content > p:not(.section-label) {
    color:
        #555;

    margin:
        25px
        0
        35px;

    line-height:
        1.8;
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter {
    background:
        linear-gradient(
            120deg,
            #0ba8bd,
            #057b8e
        );

    color:
        var(--white);

    padding:
        90px
        8%;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        80px;

    align-items:
        center;

    position:
        relative;

    overflow:
        hidden;
}


.newsletter::after {
    content: "";

    position:
        absolute;

    width:
        350px;

    height:
        350px;

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

    border-radius:
        50%;

    right:
        -120px;

    bottom:
        -180px;
}


.newsletter .section-label {
    color:
        #072d34;
}


.newsletter h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            38px,
            5vw,
            58px
        );

    line-height:
        1.1;

    font-weight:
        500;
}


.newsletter > div > p:last-child {
    margin-top:
        18px;
}


.newsletter-form {
    display:
        flex;

    position:
        relative;

    z-index:
        2;
}


.newsletter-form input {
    flex:
        1;

    min-height:
        59px;

    padding:
        0
        22px;

    border:
        none;

    outline:
        none;

    background:
        rgba(
            255,
            255,
            255,
            0.95
        );
}


.newsletter-form button {
    min-width:
        165px;

    border:
        none;

    background:
        var(--black);

    color:
        var(--white);

    text-transform:
        uppercase;

    letter-spacing:
        1.5px;

    font-size:
        10px;

    font-weight:
        800;

    transition:
        background 0.25s ease;
}


.newsletter-form button:hover {
    background:
        #303030;
}


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

.footer {
    background:
        linear-gradient(
            145deg,
            #080808,
            #171717
        );

    color:
        var(--white);

    padding:
        85px
        7%
        30px;

    display:
        grid;

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

    column-gap:
        80px;
}


.footer-brand {
    max-width:
        350px;
}


.footer-logo {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        33px;

    letter-spacing:
        3px;
}


.footer-brand p {
    margin-top:
        20px;

    color:
        #aaa;

    line-height:
        1.8;
}


.footer-column {
    display:
        flex;

    flex-direction:
        column;

    gap:
        12px;
}


.footer-column h4 {
    color:
        var(--turquoise);

    margin-bottom:
        12px;

    text-transform:
        uppercase;

    letter-spacing:
        2px;

    font-size:
        10px;
}


.footer-column a {
    color:
        #bcbcbc;

    font-size:
        14px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-column a:hover {
    color:
        var(--white);

    transform:
        translateX(3px);
}


.footer-bottom {
    grid-column:
        1 / -1;

    margin-top:
        70px;

    padding-top:
        28px;

    border-top:
        1px solid
        #333;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    color:
        #888;

    font-size:
        12px;
}


.social-links {
    display:
        flex;

    gap:
        25px;
}


.social-links a {
    transition:
        color 0.2s ease;
}


.social-links a:hover {
    color:
        var(--turquoise);
}


/* =========================================
   SHOP PAGE
========================================= */

.active-nav {
    color: var(--turquoise);
}


/* SHOP HERO */

.shop-hero {
    min-height: 420px;

    padding: 90px 7%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(7, 155, 179, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(7, 155, 179, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f9fdfd,
            #eaf6f7
        );
}

.shop-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border: 1px solid rgba(7, 155, 179, 0.10);

    top: -240px;
    right: -100px;
}

.shop-hero .section-label {
    margin-bottom: 18px;
}

.shop-hero h1 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(52px, 6vw, 82px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;

    color: var(--black);
}

.shop-hero h1 span {
    display: block;

    color: var(--turquoise);
}

.shop-hero > p:last-child {
    max-width: 650px;

    margin-top: 24px;

    color: #666666;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   SHOP FILTERS
========================================= */

.shop-filters {
    padding: 30px 6%;

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

    flex-wrap: wrap;

    gap: 10px;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;

    position: sticky;
    top: 90px;

    z-index: 50;
}

.filter-btn {
    min-height: 43px;

    padding: 0 20px;

    border:
        1px solid
        #d5d5d5;

    border-radius: 50px;

    background: #ffffff;

    color: #333333;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);

    border-color: var(--turquoise);

    color: var(--turquoise);
}

.filter-btn.active {
    background:
        linear-gradient(
            135deg,
            var(--turquoise),
            var(--dark-turquoise)
        );

    border-color: var(--turquoise);

    color: #ffffff;

    box-shadow:
        0 8px 20px
        rgba(7, 155, 179, 0.18);
}


/* =========================================
   SHOP CATALOG
========================================= */

.shop-catalog {
    padding: 70px 6% 120px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8faf9
        );
}

.shop-catalog .product-grid {
    max-width: 1450px;

    margin: 0 auto;
}


/* =========================================
   COFFEE CREAM PLACEHOLDER
========================================= */

.product-coming-image {
    display: flex;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle at center,
            rgba(7, 155, 179, 0.13),
            transparent 55%
        ),
        linear-gradient(
            145deg,
            #f8fbfb,
            #e8f4f5
        );
}

.coming-soon-product {
    width: 75%;

    padding: 55px 25px;

    text-align: center;

    border:
        1px solid
        rgba(7, 155, 179, 0.25);

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

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.coming-soon-product span {
    display: block;

    color: var(--turquoise);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.coming-soon-product strong {
    display: block;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;

    font-weight: 400;

    margin-bottom: 12px;
}

.coming-soon-product p {
    color: #777777;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.add-to-cart:disabled {
    cursor: not-allowed;

    background: #d8d8d8;

    border-color: #d8d8d8;

    color: #777777;
}

.add-to-cart:disabled:hover {
    transform: none;

    background: #d8d8d8;

    border-color: #d8d8d8;
}


/* =========================================
   PRODUCT FRONT / BACK TOGGLE
========================================= */

.product-flip {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-flip .product-face {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 24px;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.product-flip .product-front {
    opacity: 1;
    z-index: 1;
}

.product-flip .product-back {
    opacity: 0;
    z-index: 2;
}

.product-flip.show-back .product-front {
    opacity: 0;
    transform: scale(0.98);
}

.product-flip.show-back .product-back {
    opacity: 1;
    transform: scale(1);
}

.flip-toggle {
    position: absolute;
    top: 14px;
    right: 14px;

    z-index: 5;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);
    color: #111111;

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

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

    cursor: pointer;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.flip-toggle:hover {
    transform: scale(1.08);
    background: #ffffff;
}

.product-flip.show-back .flip-toggle {
    transform: rotate(180deg);
}


/* =========================================
   FEATURED PRODUCTS CAROUSEL
========================================= */

.featured-products {
    padding: 110px 6%;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f6fbfb
        );
}

.featured-carousel-wrapper {
    max-width: 1450px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 55px 1fr 55px;

    gap: 18px;

    align-items: center;
}

.featured-carousel {
    display: flex;
    flex-wrap: nowrap;

    gap: 22px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 10px 2px 30px;
}

.featured-carousel::-webkit-scrollbar {
    display: none;
}

.featured-card {
    flex: 0 0 300px;

    background: #ffffff;

    border: 1px solid #e2e2e2;

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

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

    box-shadow:
        0
        24px
        50px
        rgba(
            0,
            0,
            0,
            0.08
        );
}

.featured-image {
    height: 360px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f9fcfc,
            #eaf5f6
        );
}

.featured-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.45s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.04);
}

.featured-info {
    padding: 24px;
}

.featured-info span {
    color: var(--turquoise);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.featured-info h3 {
    margin-top: 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;

    line-height: 1.15;

    font-weight: 500;
}

.featured-info a {
    display: inline-block;

    margin-top: 18px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    border-bottom:
        1px solid
        var(--turquoise);

    padding-bottom: 4px;
}

.carousel-arrow {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    border:
        1px solid
        #d3d3d3;

    background: #ffffff;

    font-size: 22px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.carousel-arrow:hover {
    background: var(--black);

    color: white;

    transform: scale(1.05);
}

.featured-footer {
    margin-top: 45px;

    text-align: center;
}


/* =========================================
   SHOPPING CART DRAWER
========================================= */

.cart-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 1998;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


.cart-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: min(440px, 100%);
    height: 100vh;

    background: #ffffff;

    transform: translateX(100%);

    transition:
        transform 0.35s ease;

    z-index: 1999;

    display: flex;
    flex-direction: column;

    box-shadow:
        -20px 0 60px
        rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
    transform: translateX(0);
}


.cart-header {
    padding: 28px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:
        1px solid #e7e7e7;
}

.cart-eyebrow {
    color: var(--turquoise);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 5px;
}

.cart-header h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;

    font-weight: 500;
}

.cart-close {
    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #f4f4f4;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.cart-close:hover {
    background: var(--black);
    color: #ffffff;
}


.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 10px 30px;
}


.cart-item {
    display: grid;

    grid-template-columns:
        90px 1fr auto;

    gap: 16px;

    align-items: center;

    padding: 22px 0;

    border-bottom:
        1px solid #eeeeee;
}

.cart-item-image {
    width: 90px;
    height: 110px;

    background: #f5f8f8;

    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.cart-item-info h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 500;

    margin-bottom: 8px;
}

.cart-item-price {
    color: #777777;

    font-size: 13px;
}


.cart-quantity {
    margin-top: 12px;

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

    border:
        1px solid #dddddd;
}

.cart-quantity button {
    width: 34px;
    height: 34px;

    border: none;

    background: #ffffff;

    cursor: pointer;
}

.cart-quantity span {
    min-width: 35px;

    text-align: center;

    font-size: 13px;
}


.cart-remove {
    border: none;

    background: transparent;

    color: #999999;

    font-size: 18px;

    cursor: pointer;

    transition: color 0.2s ease;
}

.cart-remove:hover {
    color: #111111;
}


.cart-empty {
    padding: 60px 30px;

    text-align: center;

    color: #777777;
}

.cart-empty p {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;

    color: #222222;

    margin-bottom: 8px;
}

.cart-empty span {
    font-size: 13px;
}


.cart-footer {
    padding: 25px 30px 30px;

    border-top:
        1px solid #e7e7e7;

    background: #ffffff;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 12px;
}

.cart-subtotal span {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.cart-subtotal strong {
    font-size: 18px;
}


.cart-note {
    margin-bottom: 20px;

    color: #888888;

    font-size: 11px;
}


.cart-checkout-button,
.cart-continue-button {
    width: 100%;

    min-height: 52px;

    border: none;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;
}


.cart-checkout-button {
    background:
        linear-gradient(
            135deg,
            var(--turquoise),
            var(--dark-turquoise)
        );

    color: #ffffff;
}


.cart-continue-button {
    margin-top: 10px;

    background: #111111;

    color: #ffffff;
}


/* =========================================
   ORDER REVIEW
========================================= */

.order-review {
    margin-top: 28px;
    padding: 38px;

    border: 1px solid #e3e3e3;

    background: #ffffff;

    display: none;
}

.order-review.active {
    display: block;
}

.order-review-heading {
    display: flex;
    gap: 18px;

    margin-bottom: 30px;
}

.order-review-heading > span {
    color: var(--turquoise);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.order-review-heading h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px;

    font-weight: 500;

    margin-bottom: 6px;
}

.order-review-heading p {
    color: #888888;

    font-size: 13px;

    line-height: 1.6;
}


.review-section {
    padding: 22px 0;

    border-top: 1px solid #eeeeee;
}

.review-section:first-of-type {
    border-top: none;
}

.review-section h3 {
    margin-bottom: 12px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.review-section p {
    margin-bottom: 6px;

    color: #666666;

    font-size: 14px;

    line-height: 1.6;
}


.review-product {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 10px 0;

    border-bottom: 1px solid #f0f0f0;
}

.review-product:last-child {
    border-bottom: none;
}

.review-product span {
    color: #555555;

    font-size: 13px;
}

.review-product strong {
    font-size: 13px;
}


.place-order-final-button {
    width: 100%;

    min-height: 58px;

    margin-top: 25px;

    border: none;

    background:
        linear-gradient(
            135deg,
            var(--turquoise),
            var(--dark-turquoise)
        );

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.place-order-final-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(7, 155, 179, 0.18);
}


/* =========================================
   ORDER CONFIRMATION PAGE
========================================= */

.confirmation-page {
    min-height: 100vh;

    padding:
        90px
        6%
        120px;

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

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(7, 155, 179, 0.10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f8fbfb,
            #ffffff
        );
}


.confirmation-card {
    width: min(900px, 100%);

    padding: 55px;

    text-align: center;

    background: #ffffff;

    border:
        1px solid
        #e3e3e3;

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, 0.08);
}


.confirmation-icon {
    width: 72px;
    height: 72px;

    margin:
        0 auto
        24px;

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

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--turquoise),
            var(--dark-turquoise)
        );

    color: #ffffff;

    font-size: 34px;

    font-weight: 700;
}


.confirmation-card h1 {
    margin-top: 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            46px,
            6vw,
            72px
        );

    font-weight: 400;

    line-height: 1;
}


.confirmation-message {
    max-width: 610px;

    margin:
        22px auto
        35px;

    color: #777777;

    font-size: 15px;

    line-height: 1.8;
}


.confirmation-number {
    max-width: 420px;

    margin:
        0 auto
        40px;

    padding: 20px;

    border:
        1px solid
        #e1e1e1;

    background: #f8fbfb;
}


.confirmation-number span {
    display: block;

    margin-bottom: 7px;

    color: var(--turquoise);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.2px;
}


.confirmation-number strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;

    font-weight: 500;
}


/* DETAILS */

.confirmation-details {
    text-align: left;

    border-top:
        1px solid
        #eeeeee;
}


.confirmation-section {
    padding: 28px 0;

    border-bottom:
        1px solid
        #eeeeee;
}


.confirmation-section h2 {
    margin-bottom: 14px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.confirmation-section p {
    margin-bottom: 6px;

    color: #666666;

    font-size: 14px;

    line-height: 1.6;
}


/* PRODUCTS */

.confirmation-product {
    display: grid;

    grid-template-columns:
        70px
        1fr
        auto;

    gap: 16px;

    align-items: center;

    padding: 16px 0;

    border-bottom:
        1px solid
        #f0f0f0;
}


.confirmation-product:last-child {
    border-bottom: none;
}


.confirmation-product-image {
    width: 70px;
    height: 85px;

    overflow: hidden;

    background: #f4f8f8;
}


.confirmation-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.confirmation-product-info h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    font-weight: 500;

    margin-bottom: 5px;
}


.confirmation-product-info p {
    margin: 0;

    color: #777777;

    font-size: 12px;
}


.confirmation-product-price {
    font-size: 13px;

    font-weight: 700;
}


/* ACTION BUTTONS */

.confirmation-actions {
    margin-top: 40px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;
}


.confirmation-primary-button,
.confirmation-secondary-button {
    min-height: 54px;

    padding:
        0
        28px;

    display: inline-flex;

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

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.confirmation-primary-button {
    background:
        linear-gradient(
            135deg,
            var(--turquoise),
            var(--dark-turquoise)
        );

    color: #ffffff;
}


.confirmation-secondary-button {
    border:
        1px solid
        #cccccc;

    background: #ffffff;

    color: #111111;
}


.confirmation-primary-button:hover,
.confirmation-secondary-button:hover {
    transform: translateY(-2px);
}


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

@media (max-width: 1100px) {

    .featured-card {
    flex: 0 0 calc(50% - 12px);
    }

    .shop-hero {
    min-height: 360px;
    }

    .shop-filters {
        top: 90px;
    }

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


    .main-nav {
        display:
            none;
    }


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


    .hero-content {
        padding:
            80px
            8%
            30px;

        text-align:
            center;
    }


    .hero h1,
    .hero-description {
        margin-left:
            auto;

        margin-right:
            auto;
    }


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


    .hero-image {
        min-height:
            auto;

        padding:
            20px
            6%
            90px;
    }


    .floating-card {
        padding: 0;
        background: transparent;
        overflow: hidden;
        border-radius: 20px;
    }

    .floating-card img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: contain;

        transform: scale(1.18);
    }


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


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


    .four-in-one,
    .collection-banner {
        grid-template-columns:
            1fr;
    }


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


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


    .footer {
        grid-template-columns:
            1fr 1fr;

        row-gap:
            50px;
    }
}


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

@media (max-width: 650px) {

    .featured-products {
    padding: 75px 20px;
    }

    .featured-carousel-wrapper {
        grid-template-columns: 1fr;
    }

    .carousel-arrow {
        display: none;
    }

    .featured-card {
        flex: 0 0 85%;
    }

    .featured-image {
        height: 340px;
    }

    .shop-hero {
    min-height: 330px;

    padding: 65px 25px;
    }

    .shop-hero h1 {
        font-size: 50px;
    }

    .shop-filters {
        padding: 20px 15px;

        top: 74px;

        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .shop-catalog {
        padding:
            50px
            20px
            80px;
    }

    .hair-types {
        padding: 75px 20px;
    }

    .hair-type-grid {
        grid-template-columns: 1fr;
    }

    .hair-type-card {
        height: 460px;
    }


    .announcement-bar {
        font-size:
            8px;

        letter-spacing:
            2px;
    }


    .main-header {
        min-height:
            74px;

        padding:
            0 18px;
    }


    .logo-text {
        display:
            none;
    }


    .logo-r {
        font-size:
            43px;
    }


    .header-actions .icon-button:nth-child(2) {
        display:
            none;
    }


    .hero {
        min-height:
            auto;
    }


    .hero-content {
        padding:
            60px
            22px
            25px;
    }


    .hero h1 {
        font-size:
            51px;

        letter-spacing:
            -2px;
    }


    .hero-description {
        font-size:
            15px;
    }


    .hero-buttons {
        flex-direction:
            column;
    }


    .btn {
        width:
            100%;
    }


    .hero-image {
        display:
            block;

        padding:
            20px
            15px
            50px;

        min-height:
            auto;
    }


    .floating-card {
        position:
            relative;

        right:
            auto;

        bottom:
            auto;

        width:
            100%;

        margin-top:
            25px;

        animation:
            none;
    }


    .hero-shape-1 {
        width:
            150px;

        height:
            150px;

        right:
            -40px;

        top:
            100px;
    }


    .hero-shape-2 {
        display:
            none;
    }


    .benefits,
    .product-grid,
    .routine-grid {
        grid-template-columns:
            1fr;
    }


    .benefit {
        border-right:
            none;

        border-bottom:
            1px solid
            var(--border);
    }


    .shop-section,
    .routine-section {
        padding:
            75px
            20px;
    }


    .product-image-placeholder {
        height:
            360px;
    }


    .four-content {
        padding:
            75px
            25px;
    }


    .four-number {
        min-height:
            400px;
    }


    .collection-image {
        padding:
            40px
            15px;
    }


    .collection-content {
        padding:
            65px
            25px;
    }


    .routine-grid {
        max-width: 1400px;
        margin: 60px auto 0;

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

        border-top: 1px solid #dfe5e5;
        border-left: 1px solid #dfe5e5;
    }


    .newsletter {
        padding:
            65px
            25px;

        gap:
            40px;
    }


    .newsletter-form {
        flex-direction:
            column;
    }


    .newsletter-form input,
    .newsletter-form button {
        width:
            100%;

        min-height:
            56px;
    }


    .footer {
        grid-template-columns:
            1fr;

        padding:
            65px
            25px
            25px;
    }


    .footer-bottom {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            20px;
    }
}


    /* FINAL SIZE - HOME COLLECTION IMAGE */

    .hero-collection-card {
        width: 300px !important;
        max-width: 300px !important;
        min-width: 0 !important;

        height: auto !important;

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

        background: transparent !important;

        border: none !important;
        box-shadow: none !important;

        overflow: visible !important;

        border-radius: 24px !important;
    }


    .hero-collection-card img {
        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        display: block !important;

        object-fit: contain !important;

        border-radius: 24px !important;

        transform: none !important;
    }

    /* =========================================
   CONTACT
========================================= */

.contact-section {
    padding: 110px 6%;
    background: linear-gradient(
        135deg,
        #f7fbfb 0%,
        #eaf6f7 100%
    );
}

.contact-container {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;

    align-items: start;
}


/* LEFT SIDE */

.contact-intro .section-label {
    color: var(--turquoise);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.contact-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.05;

    margin: 0 0 25px;
}

.contact-intro > p:not(.section-label) {
    max-width: 520px;

    color: #626262;
    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 45px;
}


/* CONTACT INFORMATION */

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 45px;
}

.contact-detail {
    padding-top: 20px;
    border-top: 1px solid #cadcdc;
}

.contact-detail span {
    display: block;

    color: var(--turquoise);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;

    margin-bottom: 10px;
}

.contact-detail p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;

    margin: 4px 0;
}

.contact-detail a {
    color: #111;
    text-decoration: none;

    transition: color 0.25s ease;
}

.contact-detail a:hover {
    color: var(--turquoise);
}


/* CONTACT FORM */

.contact-form {
    background: #ffffff;

    padding: 45px;

    border: 1px solid #dce8e8;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-field {
    margin-bottom: 24px;
}

.contact-field label {
    display: block;

    margin-bottom: 9px;

    color: #222;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid #d7dfdf;
    background: #fafcfc;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    box-sizing: border-box;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.contact-field textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--turquoise);
    background: #ffffff;
}


/* SEND BUTTON */

.contact-submit {
    width: 100%;

    padding: 17px 25px;

    border: none;

    background: var(--turquoise);
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* TABLET */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .contact-section {
        padding: 70px 24px;
    }

    .contact-intro h2 {
        font-size: 38px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

/* =========================================
   CONTACT DETAILS - CENTERED
========================================= */

.contact-details {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;

    padding-left: 60px;
    padding-right: 60px;

    box-sizing: border-box;
}

.collection-explore-button {
    display: inline-block;

    margin-top: 28px;

    padding: 16px 34px;

    background: var(--turquoise);
    color: #ffffff;

    border: 2px solid var(--turquoise);

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    cursor: pointer;

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

.collection-explore-button:hover {
    background: #111111;
    border-color: #111111;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px
        rgba(0, 0, 0, 0.12);
}

/* =========================================
   FAQ
========================================= */

.faq-section {
    padding: 110px 6%;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #eef8f8
        );
}

.faq-container {
    max-width: 1050px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 65px;
}

.faq-heading h1 {
    margin: 12px 0 20px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            48px,
            6vw,
            78px
        );

    line-height: 1;

    font-weight: 500;
}

.faq-heading > p:last-child {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

.faq-list {
    border-top:
        1px solid
        #d9e3e3;
}

.faq-item {
    border-bottom:
        1px solid
        #d9e3e3;
}

.faq-item summary {
    position: relative;

    padding:
        28px
        55px
        28px
        5px;

    list-style: none;

    cursor: pointer;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;
    line-height: 1.3;

    color: #111111;
}

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

.faq-item summary::after {
    content: "+";

    position: absolute;
    right: 8px;
    top: 50%;

    transform:
        translateY(-50%);

    color: var(--turquoise);

    font-family:
        Arial,
        sans-serif;

    font-size: 28px;
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    max-width: 850px;

    padding:
        0
        55px
        28px
        5px;

    color: #666666;

    font-size: 15px;
    line-height: 1.8;
}


/* MOBILE */

@media (max-width: 650px) {

    .faq-section {
        padding:
            75px
            24px;
    }

    .faq-heading {
        margin-bottom: 45px;
    }

    .faq-heading h1 {
        font-size: 44px;
    }

    .faq-item summary {
        font-size: 19px;
    }

}

/* FAQ HEADER SPACING */

.faq-section {
    padding-top: 150px;
}

.faq-heading {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
}

.faq-section .site-header,
body:has(.faq-section) .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* =========================================
   POLICY PAGES
========================================= */

.policy-section {
    padding: 150px 6% 110px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #eef8f8
        );
}

.policy-container {
    max-width: 980px;
    margin: 0 auto;
}

.policy-container > .section-label {
    text-align: center;

    color: var(--turquoise);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.policy-container h1 {
    margin: 15px 0 20px;

    text-align: center;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            52px,
            7vw,
            82px
        );

    line-height: 1;

    font-weight: 500;
}

.policy-intro {
    max-width: 700px;

    margin:
        0 auto
        70px;

    text-align: center;

    color: #666666;

    font-size: 16px;
    line-height: 1.8;
}

.policy-content {
    background: #ffffff;

    padding:
        55px
        60px;

    border:
        1px solid
        #dce8e8;

    box-shadow:
        0
        20px
        60px
        rgba(
            0,
            0,
            0,
            0.04
        );
}

.policy-content h2 {
    margin:
        40px
        0
        14px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;

    font-weight: 500;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #606060;

    font-size: 15px;

    line-height: 1.85;
}


/* MOBILE */

@media (max-width: 650px) {

    .policy-section {
        padding:
            110px
            24px
            70px;
    }

    .policy-container h1 {
        font-size: 48px;
    }

    .policy-content {
        padding:
            35px
            25px;
    }

    .policy-content h2 {
        font-size: 23px;
    }

}


/* =========================================
   ACTIVE NAVIGATION
========================================= */

.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -10px;

    width: 0;
    height: 2px;

    background: var(--turquoise);

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.main-nav a.active {
    color: var(--turquoise);
}

.main-nav a.active::after {
    width: 100%;
}


/* =========================================
   PRODUCT SEARCH
========================================= */

.search-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.48);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 3000;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-panel {
    position: relative;

    width: min(720px, 90%);

    margin: 110px auto 0;

    padding: 45px;

    background: #ffffff;

    border-radius: 22px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.18);
}

.search-close {
    position: absolute;

    top: 20px;
    right: 22px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #f3f3f3;

    font-size: 26px;

    cursor: pointer;
}

.search-panel h2 {
    margin: 10px 0 25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;

    font-weight: 500;
}

#product-search-input {
    width: 100%;

    padding: 16px 18px;

    border: 1px solid #d9e3e3;

    font-size: 15px;

    box-sizing: border-box;

    outline: none;
}

#product-search-input:focus {
    border-color: var(--turquoise);
}

.search-results {
    margin-top: 25px;

    display: grid;

    gap: 12px;
}

.search-result-item {
    padding: 14px 16px;

    border: 1px solid #e3e8e8;

    background: #fafcfc;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.search-result-item:hover {
    background: #eef8f8;

    transform: translateX(4px);
}


/* =========================================
   SEARCH RESULT HIGHLIGHT
========================================= */

.product-card.search-highlight {
    outline: 3px solid var(--turquoise);
    outline-offset: 6px;

    box-shadow:
        0 0 0 8px rgba(24, 177, 190, 0.10),
        0 22px 50px rgba(0, 0, 0, 0.12);

    transform: translateY(-6px);

    transition:
        outline 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* =========================================
   WISHLIST
========================================= */

.wishlist-button {
    position: relative;
}

.wishlist-count {
    position: absolute;

    top: -7px;
    right: -9px;

    min-width: 19px;
    height: 19px;

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

    border-radius: 50%;

    background: var(--turquoise);
    color: #ffffff;

    font-size: 9px;
    font-weight: 800;
}

.wishlist-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 2998;
}

.wishlist-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wishlist-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: min(440px, 100%);
    height: 100vh;

    background: #ffffff;

    transform: translateX(100%);

    transition: transform 0.35s ease;

    z-index: 2999;

    display: flex;
    flex-direction: column;

    box-shadow:
        -20px 0 60px
        rgba(0, 0, 0, 0.15);
}

.wishlist-drawer.active {
    transform: translateX(0);
}

.wishlist-header {
    padding: 28px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #e7e7e7;
}

.wishlist-eyebrow {
    color: var(--turquoise);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 5px;
}

.wishlist-header h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;

    font-weight: 500;
}

.wishlist-close {
    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #f4f4f4;

    font-size: 28px;

    cursor: pointer;
}

.wishlist-items {
    flex: 1;

    overflow-y: auto;

    padding: 10px 30px;
}

.wishlist-item {
    display: grid;

    grid-template-columns:
        80px 1fr auto;

    gap: 16px;

    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid #eeeeee;
}

.wishlist-item img {
    width: 80px;
    height: 95px;

    object-fit: contain;

    background: #f5f8f8;
}

.wishlist-item h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 500;
}

.wishlist-remove {
    border: none;

    background: transparent;

    font-size: 20px;

    cursor: pointer;
}

.wishlist-empty {
    padding: 60px 30px;

    text-align: center;

    color: #777777;
}

.wishlist-empty p {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;

    color: #222222;

    margin-bottom: 8px;
}

/* =========================================
   PRODUCT CARDS - PREMIUM REDESIGN
========================================= */

.home-product-track {
    align-items: stretch;
}


/* CARD */

.product-card {
    position: relative;

    min-width: 360px;
    max-width: 360px;

    background: #ffffff;

    border: 1px solid rgba(20, 80, 85, 0.12);

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(0, 45, 50, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


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

    box-shadow:
        0 22px 50px rgba(0, 45, 50, 0.12);
}


/* IMAGE AREA */

.product-image {
    position: relative;

    width: 100%;
    height: 450px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #eaf8fa,
            #d5f0f4
        );
}


.product-image img {
    width: 100%;
    height: 100%;

    display: block;

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

    transition: transform 0.45s ease;
}


.product-card:hover .product-image img {
    transform: scale(1.035);
}


/* INFORMATION */

.product-info {
    padding:
        28px
        28px
        32px;
}


.product-category {
    margin-bottom: 10px;

    color: var(--turquoise);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}


.product-info h3 {
    margin-bottom: 14px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;
    font-weight: 500;

    line-height: 1.12;

    color: #111111;
}


.product-description {
    min-height: 68px;

    margin-bottom: 18px;

    color: #6a6a6a;

    font-size: 13px;
    line-height: 1.65;
}


.product-price {
    margin-bottom: 18px;

    color: #111111;

    font-size: 15px;
    font-weight: 700;
}


/* ADD TO CART */

.add-to-cart {
    width: 100%;

    padding: 14px 18px;

    border: none;

    background: #07383d;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.add-to-cart:hover {
    background: var(--turquoise);

    transform: translateY(-2px);
}


/* WISHLIST HEART */

.product-wishlist {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 40px;
    height: 40px;

    z-index: 20;

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

    padding: 0;

    border: none;
    border-radius: 50%;

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

    color: #111111;

    font-size: 22px;

    cursor: pointer;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.product-wishlist:hover {
    transform: scale(1.08);

    background: #ffffff;
}


.product-wishlist.active {
    background: #07383d;

    color: var(--turquoise);
}

/* =========================================
   PRODUCT IMAGE - FRONT / BACK HOVER
========================================= */

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.product-front {
    position: relative;
    z-index: 2;

    opacity: 1;
}

.product-back {
    position: absolute;

    inset: 0;

    z-index: 1;

    opacity: 0;
}

.product-image:hover .product-front {
    opacity: 0;
}

.product-image:hover .product-back {
    opacity: 1;
}

/* =========================================
   NEWSLETTER MESSAGE
========================================= */

.newsletter-signup {
    width: 100%;
}

.newsletter-message {
    margin-top: 10px;

    color: #ffffff;

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

    opacity: 0;

    transform: translateY(4px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.newsletter-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   OBAH BRAND STATEMENT
========================================= */

.obah-brand-statement {
    padding: 95px 6%;

    background:
        linear-gradient(
            135deg,
            #062f34,
            #0a454c
        );

    text-align: center;
}


.obah-statement-content {
    max-width: 820px;

    margin: 0 auto;

    position: relative;
    z-index: 2;

    padding-right: 120px;
}


.obah-brand-statement .section-label {
    margin-bottom: 18px;

    color: #65d4dc;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
}


.obah-brand-statement h2 {
    margin: 0 auto 26px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(44px, 6vw, 72px);

    font-weight: 500;
    line-height: 1.05;

    color: #ffffff;
}


.obah-brand-statement h2 span {
    display: block;

    color: #65d4dc;

    font-style: italic;
}


.obah-statement-text {
    max-width: 760px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    line-height: 1.9;
}


.obah-keyword {
    color: #65d4dc;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    line-height: 1.3;
}

.obah-brand-statement {
    position: relative;
    overflow: hidden;
}

.obah-corner-image {
    position: absolute;

    right: 38px;
    top: 50%;

    transform: translateY(-50%);

    width: 220px;
    height: auto;

    object-fit: contain;

    border-radius: 8px;

    opacity: 0.95;

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.22);

    z-index: 1;
}


/* CHEMISTRY + BIOLOGY = OBAH */

.obah-science-line {
    margin-top: 42px;

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

    gap: 22px;

    flex-wrap: wrap;
}


.obah-science-line span {
    padding: 12px 20px;

    border:
        1px solid
        rgba(101, 212, 220, 0.45);

    border-radius: 30px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.obah-science-line strong {
    color: #65d4dc;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
    font-weight: 400;
}


/* MOBILE */

@media (max-width: 650px) {

    .obah-brand-statement {
        padding:
            70px
            22px;
    }

    .obah-brand-statement h2 {
        font-size: 42px;
    }

    .obah-statement-text {
        font-size: 14px;
    }

    .obah-science-line {
        gap: 12px;

        margin-top: 32px;
    }

    .obah-science-line span {
        padding: 10px 14px;

        font-size: 9px;
    }

}

@media (max-width: 900px) {

    .obah-corner-image {
        display: none;
    }

    .obah-statement-content {
        padding-right: 0;
    }

}