.login-card {
  padding: 37px 55px;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #fafafa;
  border: none;
  margin-top: 60px;
  margin-bottom: 60px;
}
.login-card .l-group .l-logo {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.login-card .l-input {
  width: 100%;
  background: #fff0;
  border: 1px solid #ededed;
  padding: 12px 15px;
  border-radius: 9px;
}
.login-card label {
  display: block;
  text-align: left;
  color: #1e1e1e;
  font-weight: 500;
  padding-left: 7px;
  margin-bottom: 10px;
  background: #fff0;
  font-size: 16px;
}
.login-card .l-btn {
  background: #000;
  border-radius: 50px;
  width: 100% !important;
  height: 50px;
}
.login-card .line {
  background: #c1c0c3;
  height: 1px;
  width: 90px;
}
.or-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.login-card .l-border-btn {
  background: #fff0;
  border-radius: 50px;
  width: 100% !important;
  border: 1px solid #000;
  color: #000;
  height: 50px;
  line-height: 48px;
}
.cate-img {
  height: 250px;
  object-fit: cover;
}
.p-images {
  width: 100%;
  object-fit: contain;
  border-radius: 10px 10px 0 0;
  height: 280px;
}
.bg-btn-dark {
  background-color: #1c1c1c !important;
}
.profile-label {
  background: #fff0;
  text-align: left;
  display: block;
  color: #1e1e1e;
  font-family: "Epilogue", sans-serif;
}
.profile-feild {
  width: 100%;
  border: 1px solid #78767d;
  border-radius: 5px;
  padding: 8px 11px;
  height: 40px;
  margin-bottom: 15px;
  color: #1e1e1e;
}
@media (max-width: 991px) {
  .cate-img {
    height: 160px !important;
  }
  .login-card {
    padding: 10px 5px;
  }
  .movileDirectionReverse {
    flex-direction: column-reverse;
  }
}


   /* --- Uniform Artisan Editorial Catalog --- */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    --accent-clr: #bc2158;
    --primary-clr: #266266;
    --dark-clr: #121212;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.artisan-catalog-section {
    padding: 60px 0;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

/* Atmospheric Background Decor */
.bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-family: 'Marcellus', serif;
    font-size: 20vw;
    color: rgba(38, 98, 102, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

/* Refined Header */
.editorial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}

.editorial-overline {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    color: var(--accent-clr);
    margin-bottom: 10px;
    font-weight: 700;
}

.editorial-title {
    font-family: 'Marcellus', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-clr);
    margin: 0;
}

.editorial-title span {
    font-style: italic;
    color: var(--dark-clr);
    font-weight: 300;
}

.editorial-link {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--dark-clr);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-clr);
}

.editorial-link:hover {
    color: var(--accent-clr);
    border-color: var(--accent-clr);
}

/* Balanced Uniform Grid */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Clean 4-column layout */
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cat-card-modern {
    position: relative;
}

.cat-card-inner {
    display: block;
    text-decoration: none;
}

/* Image Wrapper with Uniform Aspect Ratio */
.cat-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5; /* Forces all images to the same professional size */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #eee;
}

.cat-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
    opacity: 0.5;
}

/* Floating Label - Centered & Aligned */
.cat-info-label {
    position: absolute;
    bottom: -15px;
    left: 15px;
    right: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 3;
}

.cat-info-label h4 {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: var(--dark-clr);
    margin: 0 0 8px 0;
    text-align: center;
}

.label-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.design-count {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-clr);
}

.view-discovery {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-clr);
    margin-top: 5px;
    display: none; /* Hidden by default, shown on hover */
}

/* Uniform Hover Effects */
.cat-card-modern:hover .cat-image-wrapper img {
    transform: scale(1.1);
}

.cat-card-modern:hover .cat-info-label {
    background: var(--primary-clr);
    transform: translateY(-5px);
}

.cat-card-modern:hover h4, 
.cat-card-modern:hover .design-count {
    color: #fff;
}

.cat-card-modern:hover .view-discovery {
    display: block;
    color: rgba(255,255,255,0.8);
}

.plus-reveal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    opacity: 0;
    transform: scale(0.5);
    transition: 0.3s ease;
}

.cat-card-modern:hover .plus-reveal {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .editorial-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .editorial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .editorial-grid { grid-template-columns: 1fr; gap: 40px; }
    .cat-info-label { bottom: -20px; }
}
.initiative-section {
        background: #f8f9fb;
        padding: 90px 0;
    }

    .initiative-subtitle {
        font-size: 18px;
        font-weight: 600;
        color: #6c757d;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .initiative-subtitle span {
        width: 60px;
        height: 2px;
        background: #2f7d7c;
        margin-left: 15px;
        display: inline-block;
    }

    .initiative-title {
        font-size: 52px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .initiative-text {
        font-size: 17px;
        color: #6b7280;
        line-height: 1.8;
        margin-bottom: 35px;
    }

    .btn-modern {
        padding: 14px 32px;
        border-radius: 40px;
        border: 1px solid #2f7d7c;
        color: #2f7d7c;
        font-weight: 600;
        transition: 0.3s;
        text-decoration: none;
    }

    .btn-modern:hover {
        background: #2f7d7c;
        color: #fff;
    }

    .initiative-img {
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        width: 100%;
    }

    @media(max-width:991px) {

        .initiative-title {
            font-size: 36px;
        }

        .initiative-section {
            text-align: center;
        }

        .initiative-subtitle {
            justify-content: center;
        }
    }
  
    .bv {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .6s cubic-bezier(.22, .68, 0, 1.2), transform .6s cubic-bezier(.22, .68, 0, 1.2);
    }

    .bvl {
        opacity: 0;
        transform: translateX(-32px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .bvr {
        opacity: 0;
        transform: translateX(32px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .bv.in,
    .bvl.in,
    .bvr.in {
        opacity: 1;
        transform: none;
    }

    .d1 {
        transition-delay: .07s !important
    }

    .d2 {
        transition-delay: .14s !important
    }

    .d3 {
        transition-delay: .21s !important
    }

    .d4 {
        transition-delay: .28s !important
    }

    .d5 {
        transition-delay: .35s !important
    }

    .d6 {
        transition-delay: .42s !important
    }

    @keyframes bls-shimmer {
        to {
            background-position: 200% center;
        }
    }

    @keyframes bls-float {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-8px)
        }
    }

    @keyframes bls-spin {
        to {
            transform: rotate(360deg)
        }
    }

    @keyframes bls-pulse {

        0%,
        100% {
            box-shadow: 0 4px 16px rgba(212, 84, 126, .35);
        }

        50% {
            box-shadow: 0 4px 26px rgba(212, 84, 126, .65), 0 0 0 7px rgba(212, 84, 126, .1);
        }
    }

    /* ===================================================
   SHARED SECTION HEADER
   =================================================== */
    .bls-head {
        text-align: center;
        margin-bottom: 52px;
    }

    .bls-head-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #2C6E6A;
        margin-bottom: 12px;
    }

    .bls-head-label::before,
    .bls-head-label::after {
        content: '';
        width: 28px;
        height: 1px;
        background: #2C6E6A;
        opacity: .4;
    }

    .bls-head-title {
        font-size: clamp(30px, 3.8vw, 48px);
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .bls-head-title em {
        font-style: italic;
        color: #D4547E;
        font-weight: 600;
    }

    .bls-head-sub {
        font-size: 15px;
        color: #777;
        max-width: 460px;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* ===================================================
   1. TRUST BAR
   =================================================== */
    .bls-trust-bar {
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
        position: relative;
    }

    .bls-trust-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #2C6E6A, #D4547E, #f2c4d0, #D4547E, #2C6E6A);
        background-size: 200%;
        animation: bls-shimmer 4s linear infinite;
    }

    .bls-trust-wrap {
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .bls-trust-cell {
        flex: 1;
        min-width: 165px;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 20px 26px;
        cursor: default;
        position: relative;
        transition: background .25s;
    }

    .bls-trust-cell:hover {
        background: rgba(44, 110, 106, .04);
    }

    .bls-trust-cell+.bls-trust-cell::before {
        content: '';
        position: absolute;
        left: 0;
        top: 22%;
        bottom: 22%;
        width: 1px;
        background: rgba(0, 0, 0, .08);
    }

    /* 3-D icon tile */
    .bls-ico {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        perspective: 160px;
    }

    .bls-ico-face {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transform: rotateX(8deg) rotateY(-10deg);
        transition: transform .4s ease, box-shadow .4s ease;
    }

    .bls-trust-cell:hover .bls-ico-face {
        transform: rotateX(0) rotateY(0) scale(1.08);
    }

    .ico-a {
        background: linear-gradient(135deg, #2C6E6A, #3D8A85);
        box-shadow: 0 7px 16px rgba(44, 110, 106, .35), inset 0 1px 0 rgba(255, 255, 255, .25);
    }

    .ico-b {
        background: linear-gradient(135deg, #D4547E, #e07a99);
        box-shadow: 0 7px 16px rgba(212, 84, 126, .32), inset 0 1px 0 rgba(255, 255, 255, .25);
    }

    .bls-trust-cell strong {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #1a1a1a;
    }

    .bls-trust-cell span {
        font-size: 12px;
        color: #888;
    }

    @media(max-width:768px) {
        .bls-trust-cell+.bls-trust-cell::before {
            display: none;
        }

        .bls-trust-cell {
            padding: 14px 16px;
            min-width: 150px;
        }
    }

    /* ===================================================
   2. FRAGRANCE FINDER  (dark teal bg)
   =================================================== */
    .bls-scents {
        padding: 70px 0;
        background: #02272a;
        position: relative;
        overflow: hidden;
    }

    .bls-scents-orb {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(90px);
    }

    .so1 {
        width: 500px;
        height: 500px;
        background: rgba(44, 110, 106, .4);
        top: -160px;
        right: -60px;
        animation: bls-float 9s ease-in-out infinite alternate;
    }

    .so2 {
        width: 340px;
        height: 340px;
        background: rgba(212, 84, 126, .18);
        bottom: -60px;
        left: -30px;
        animation: bls-float 7s ease-in-out infinite alternate-reverse;
    }

    .bls-scents .container {
        position: relative;
        z-index: 2;
    }

    .bls-scents .bls-head-label {
        color: #a8d5d3;
    }

    .bls-scents .bls-head-label::before,
    .bls-scents .bls-head-label::after {
        background: #a8d5d3;
    }

    .bls-scents .bls-head-title {
        color: #fff;
    }

    .bls-scents .bls-head-title em {
        color: #F2C4D0;
    }

    .bls-scents .bls-head-sub {
        color: rgba(255, 255, 255, .48);
    }

    .bls-scent-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
    }

    @media(max-width:992px) {
        .bls-scent-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media(max-width:576px) {
        .bls-scent-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .bls-scard {
        display: block;
        text-decoration: none;
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .09);
        border-radius: 20px;
        padding: 26px 14px 22px;
        text-align: center;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        transition: transform .4s cubic-bezier(.22, .68, 0, 1.3), border-color .3s, background .3s;
    }

    .bls-scard:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .08);
        text-decoration: none;
    }

    .bls-scard::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(135deg, var(--sg, rgba(44, 110, 106, .35)), transparent 65%);
        opacity: 0;
        transition: opacity .4s;
    }

    .bls-scard:hover::before {
        opacity: 1;
    }

    .bls-sc-ring {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0 auto 14px;
        position: relative;
    }

    .bls-sc-ring::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background: conic-gradient(var(--sr, #D4547E), rgba(255, 255, 255, .08), var(--sr, #D4547E));
        animation: bls-spin 5s linear infinite;
    }

    .bls-sc-ring img {
        position: relative;
        z-index: 1;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        border: 3px solid #1e3835;
    }

    .bls-sc-badge {
        position: absolute;
        top: 11px;
        right: 11px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .1);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, .18);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }

    .bls-scard h5 {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 3px;
    }

    .bls-scard p {
        font-size: 11px;
        color: rgba(255, 255, 255, .45);
        margin: 0;
    }

    /* ===================================================
   3. HAMPER SPOTLIGHT
   =================================================== */
    .bls-spot-wrap {
        display: grid;
        grid-template-columns: 1.45fr 1fr;
        min-height: 560px;
    }

    @media(max-width:768px) {
        .bls-spot-wrap {
            grid-template-columns: 1fr;
        }
    }

    .bls-sp-panel {
        position: relative;
        overflow: hidden;
    }

    .bls-sp-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 6s ease;
    }

    .bls-sp-panel:hover .bls-sp-bg {
        transform: scale(1.06);
    }

    .bls-sp-veil {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(10, 22, 20, .94) 0%, rgba(10, 22, 20, .4) 55%, rgba(10, 22, 20, .08) 100%);
        z-index: 1;
    }

    .bls-sp-body {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 34px 36px;
        z-index: 2;
        transform: translateY(5px);
        transition: transform .35s;
    }

    .bls-sp-panel:hover .bls-sp-body {
        transform: none;
    }

    .bls-sp-stack {
        display: grid;
        grid-template-rows: 1fr 1fr;
    }

    .bls-sp-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #D4547E;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 4px 13px;
        border-radius: 20px;
        margin-bottom: 11px;
    }

    .bls-sp-body h3 {
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 7px;
        line-height: 1.2;
    }

    .bls-sp-body h4 {
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 6px;
    }

    .bls-sp-body p {
        color: rgba(255, 255, 255, .7);
        font-size: 13px;
        margin-bottom: 14px;
        line-height: 1.65;
    }

    .bls-sp-price {
        display: block;
        font-size: 24px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
    }

    .bls-sp-price small {
        font-size: 13px;
        color: rgba(255, 255, 255, .42);
        font-weight: 400;
        margin-left: 6px;
    }

    .bls-sp-cta {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #D4547E;
        color: #fff;
        padding: 12px 26px;
        border-radius: 40px;
        font-weight: 600;
        font-size: 13px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: background .3s;
    }

    .bls-sp-cta::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -20%;
        width: 26px;
        height: 200%;
        background: rgba(255, 255, 255, .2);
        transform: skewX(-25deg) translateY(-50%);
        transition: left .45s ease;
    }

    .bls-sp-cta:hover {
        background: #b8375f;
        color: #fff;
        text-decoration: none;
    }

    .bls-sp-cta:hover::after {
        left: 120%;
    }

    .bls-sp-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: rgba(255, 255, 255, .62);
        font-size: 13px;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        padding-bottom: 2px;
        transition: color .2s;
    }

    .bls-sp-link:hover {
        color: #F2C4D0;
        text-decoration: none;
    }

    /* ===================================================
   4. DIY KITS
   =================================================== */
    .bls-diy {
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }

    .bls-diy-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: brightness(.18) saturate(1.4);
    }

    .bls-diy-grad {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgb(5 40 44) 0%, rgba(20, 8, 15, .9) 100%);
    }

    .bls-diy .container {
        position: relative;
        z-index: 2;
    }

    .bls-diy-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, .08);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, .15);
        color: #F2C4D0;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 30px;
        margin-bottom: 20px;
    }

    .bls-diy-title {
        font-size: clamp(34px, 5vw, 58px);
        font-weight: 700;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .bls-diy-desc {
        color: rgba(255, 255, 255, .7);
        font-size: 15px;
        line-height: 1.85;
        margin-bottom: 32px;
        max-width: 460px;
    }

    .bls-diy-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 36px;
    }

    .bls-diy-row {
        display: flex;
        align-items: center;
        gap: 15px;
        background: rgba(255, 255, 255, .06);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, .09);
        border-radius: 14px;
        padding: 14px 18px;
        transition: background .3s, border-color .3s, transform .3s;
    }

    .bls-diy-row:hover {
        background: rgba(255, 255, 255, .1);
        border-color: rgba(255, 255, 255, .2);
        transform: translateX(5px);
    }

    .bls-diy-ico3d {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        perspective: 130px;
    }

    .bls-diy-face {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
        transform: rotateX(9deg) rotateY(-11deg);
        box-shadow: 4px 5px 12px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .2);
        transition: transform .4s;
    }

    .bls-diy-row:hover .bls-diy-face {
        transform: rotateX(0) rotateY(0) scale(1.08);
    }

    .bls-diy-row strong {
        display: block;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }

    .bls-diy-row span {
        color: rgba(255, 255, 255, .52);
        font-size: 12px;
    }

    .bls-diy-cta {
        display: inline-flex;
        align-items: center;
        gap: 11px;
        background: #fff;
        color: #2C6E6A;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
        transition: all .3s;
    }

    .bls-diy-cta:hover {
        background: #2C6E6A;
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
        box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
    }

    /* video */
    .bls-diy-frame {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 36px 80px rgba(0, 0, 0, .48);
    }

    .bls-diy-frame video {
        width: 100%;
        display: block;
        max-height: 420px;
        object-fit: cover;
    }

    .bls-diy-vid-tag {
        position: absolute;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(10, 22, 20, .58);
        backdrop-filter: blur(12px);
        color: #fff;
        padding: 8px 18px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
        border: 1px solid rgba(255, 255, 255, .14);
    }

    .bls-diy-float {
        position: absolute;
        background: rgba(255, 255, 255, .08);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 12px;
        padding: 9px 14px;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        animation: bls-float 4s ease-in-out infinite;
    }

    .df1 {
        top: 14px;
        right: -16px;
        animation-delay: 0s;
    }

    .df2 {
        top: 44%;
        left: -24px;
        animation-delay: -2s;
    }

    /* ===================================================
   5. CORPORATE
   =================================================== */
    .bls-corp {
        padding: 88px 0;
        background: #f8f6f4;
        position: relative;
        overflow: hidden;
    }

    .bls-corp-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        background: #fff;
        border-radius: 32px;
        padding: 56px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, .07), 0 4px 16px rgba(0, 0, 0, .03);
        position: relative;
        overflow: hidden;
        align-items: center;
    }

    .bls-corp-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2C6E6A, #D4547E, #F2C4D0, #D4547E, #2C6E6A);
        background-size: 200%;
        animation: bls-shimmer 4s linear infinite;
    }

    @media(max-width:992px) {
        .bls-corp-card {
            grid-template-columns: 1fr;
            padding: 34px;
            gap: 34px;
        }
    }

    .bls-corp-avs {
        display: flex;
        align-items: center;
        margin-bottom: 24px;
    }

    .bls-corp-av {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 3px solid #fff;
        object-fit: cover;
        margin-left: -11px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
        transition: transform .3s;
    }

    .bls-corp-av:first-child {
        margin-left: 0;
    }

    .bls-corp-av:hover {
        transform: scale(1.14) translateY(-4px);
        z-index: 5;
    }

    .bls-corp-count {
        margin-left: 12px;
        background: #edf4f3;
        border: 1px solid rgba(44, 110, 106, .2);
        border-radius: 30px;
        padding: 5px 14px;
        font-size: 12px;
        font-weight: 600;
        color: #2C6E6A;
    }

    .bls-corp-card h2 {
        font-size: clamp(24px, 3.2vw, 38px);
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 12px;
        line-height: 1.22;
    }

    .bls-corp-card h2 em {
        font-style: italic;
        color: #D4547E;
        font-weight: 600;
    }

    .bls-corp-card>div>p {
        color: #777;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 24px;
    }

    .bls-corp-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        margin-bottom: 32px;
    }

    .bls-cpill {
        display: flex;
        align-items: center;
        gap: 7px;
        background: #edf4f3;
        border: 1px solid rgba(44, 110, 106, .15);
        color: #2C6E6A;
        font-size: 13px;
        font-weight: 500;
        padding: 7px 15px;
        border-radius: 30px;
        transition: background .2s, transform .2s;
    }

    .bls-cpill:hover {
        background: rgba(44, 110, 106, .1);
        transform: translateY(-2px);
    }

    .bls-cpill-dot {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: #2C6E6A;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        color: #fff;
        flex-shrink: 0;
    }

    .bls-corp-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .bls-cb1 {
        background: #2C6E6A;
        color: #fff;
        padding: 12px 26px;
        border-radius: 40px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        box-shadow: 0 8px 22px rgba(44, 110, 106, .32);
        transition: all .3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .bls-cb1:hover {
        background: #245c58;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(44, 110, 106, .42);
    }

    .bls-cb2 {
        border: 2px solid rgba(44, 110, 106, .3);
        color: #2C6E6A;
        padding: 10px 24px;
        border-radius: 40px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: all .3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .bls-cb2:hover {
        background: #2C6E6A;
        color: #fff;
        border-color: #2C6E6A;
        text-decoration: none;
    }

    /* collage */
    .bls-collage {
        position: relative;
        height: 390px;
    }

    .bls-cimg {
        position: absolute;
        border-radius: 18px;
        object-fit: cover;
        box-shadow: 0 14px 44px rgba(0, 0, 0, .12);
        transition: transform .4s;
    }

    .bls-cimg:hover {
        transform: scale(1.04) rotate(-1deg) !important;
    }

    .cc-a {
        width: 60%;
        height: 70%;
        top: 0;
        left: 0;
    }

    .cc-b {
        width: 44%;
        height: 52%;
        bottom: 0;
        right: 0;
    }

    .cc-c {
        width: 36%;
        height: 36%;
        top: 20%;
        right: 18%;
        border: 3px solid #fff;
        box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
    }

    .cc-badge {
        position: absolute;
        bottom: 52px;
        left: -16px;
        z-index: 10;
        background: #D4547E;
        color: #fff;
        border-radius: 13px;
        padding: 12px 17px;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.5;
        box-shadow: 0 10px 28px rgba(212, 84, 126, .38);
        animation: bls-float 4s ease-in-out infinite;
    }

    /* ===================================================
   6. HOW IT WORKS
   =================================================== */
    .bls-how {
        padding: 60px 0;
        background: #fff;
        position: relative;
        overflow: hidden;
    }

    .bls-how::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(to top, #f8f6f4, transparent);
    }

    .bls-how-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        position: relative;
        z-index: 1;
    }

    @media(max-width:992px) {
        .bls-how-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media(max-width:576px) {
        .bls-how-steps {
            grid-template-columns: 1fr;
        }
    }

    .bls-how-steps::before {
        content: '';
        position: absolute;
        top: 106px;
        left: 13%;
        right: 13%;
        height: 2px;
        z-index: 0;
        background: linear-gradient(90deg, #2C6E6A, #D4547E, #F2C4D0, #D4547E, #2C6E6A);
        background-size: 200%;
        animation: bls-shimmer 5s linear infinite;
    }

    @media(max-width:992px) {
        .bls-how-steps::before {
            display: none;
        }
    }

    .bls-how-step {
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 0 8px;
    }

    .bls-how-visual {
        position: relative;
        width: 185px;
        margin: 0 auto 20px;
    }

    .bls-how-visual img {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 50%;
        border: 5px solid #fff;
        box-shadow: 0 10px 36px rgba(44, 110, 106, .16);
        transition: transform .4s, box-shadow .4s;
    }

    .bls-how-step:hover .bls-how-visual img {
        transform: scale(1.06);
        box-shadow: 0 18px 52px rgba(44, 110, 106, .25);
    }

    .bls-how-num {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, #D4547E, #e07a99);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 4px solid #fff;
        animation: bls-pulse 2.4s ease-in-out infinite;
    }

    .bls-how-step:nth-child(2) .bls-how-num {
        animation-delay: .6s;
    }

    .bls-how-step:nth-child(3) .bls-how-num {
        animation-delay: 1.2s;
    }

    .bls-how-step:nth-child(4) .bls-how-num {
        animation-delay: 1.8s;
    }

    .bls-how-step h4 {
        font-size: 15px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 9px;
    }

    .bls-how-step p {
        font-size: 13px;
        color: #888;
        line-height: 1.75;
    }

    /* ===================================================
   7. DUAL PROMO
   =================================================== */
    .bls-dual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 510px;
    }

    @media(max-width:768px) {
        .bls-dual {
            grid-template-columns: 1fr;
        }
    }

    .bls-dp {
        position: relative;
        overflow: hidden;
        padding: 64px 50px;
        display: flex;
        align-items: flex-end;
    }

    .bls-dp-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 6s ease;
    }

    .bls-dp:hover .bls-dp-bg {
        transform: scale(1.05);
    }

    .bls-dp-veil {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .bls-dp-body {
        position: relative;
        z-index: 2;
    }

    .bls-dp-tag {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(255, 255, 255, .12);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, .2);
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        padding: 5px 14px;
        border-radius: 20px;
        margin-bottom: 14px;
    }

    .bls-dp-body h3 {
        font-size: 34px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
    }

    .bls-dp-body p {
        color: rgba(255, 255, 255, .76);
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .bls-dp-list {
        list-style: none;
        padding: 0;
        margin: 0 0 26px;
    }

    .bls-dp-list li {
        color: rgba(255, 255, 255, .76);
        font-size: 13px;
        padding: 4px 0;
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .bls-dp-list li::before {
        content: '✓';
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
        border: 1px solid rgba(255, 255, 255, .26);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        flex-shrink: 0;
    }

    .bls-dp-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        padding: 12px 24px;
        border-radius: 40px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        box-shadow: 0 7px 24px rgba(0, 0, 0, .18);
        transition: all .3s;
    }

    .bls-dp-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 36px rgba(0, 0, 0, .26);
        text-decoration: none;
    }

    /* ===================================================
   8. TESTIMONIALS SLIDER
   =================================================== */
    .bls-testi {
        padding: 60px 0;
        background: #f8f6f4;
        position: relative;
        overflow: hidden;
    }

    .bls-testi::before {
        content: '"';
        position: absolute;
        top: -80px;
        left: -10px;
        font-size: 380px;
        color: rgba(44, 110, 106, .05);
        line-height: 1;
        pointer-events: none;
        font-weight: 700;
    }

    .bls-tsl-outer {
        position: relative;
        overflow: hidden;
    }

    .bls-tsl-track {
        display: flex;
        transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .bls-tsl-slide {
        flex: 0 0 33.333%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    @media(max-width:992px) {
        .bls-tsl-slide {
            flex: 0 0 50%;
        }
    }

    @media(max-width:600px) {
        .bls-tsl-slide {
            flex: 0 0 100%;
        }
    }

    .bls-tcard {
        background: #fff;
        border-radius: 22px;
        padding: 32px;
        box-shadow: 0 3px 24px rgba(0, 0, 0, .06);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
        transition: transform .3s, box-shadow .3s;
    }

    .bls-tcard::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #2C6E6A, #D4547E);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .38s;
    }

    .bls-tcard:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 44px rgba(0, 0, 0, .1);
    }

    .bls-tcard:hover::after {
        transform: scaleX(1);
    }

    .bls-tcard-qm {
        font-size: 52px;
        color: rgba(44, 110, 106, .14);
        
        display: block;
        font-weight: 700;
    }

    .bls-tcard-stars {
        color: #E5A626;
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .bls-tcard-text {
        font-size: 14px;
        color: #555;
        line-height: 1.85;
        flex: 1;
        margin-bottom: 24px;
    }

    .bls-tcard-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .bls-tcard-author img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #edf4f3;
    }

    .bls-tcard-author strong {
        display: block;
        font-size: 14px;
        color: #1a1a1a;
        font-weight: 600;
    }

    .bls-tcard-author small {
        font-size: 11px;
        color: #999;
    }

    /* nav */
    .bls-tsl-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 34px;
    }

    .bls-tsl-arr {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1.5px solid rgba(44, 110, 106, .22);
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 15px;
        color: #2C6E6A;
        transition: all .22s;
    }

    .bls-tsl-arr:hover {
        background: #2C6E6A;
        color: #fff;
        border-color: #2C6E6A;
    }

    .bls-tsl-dots {
        display: flex;
        gap: 7px;
        align-items: center;
    }

    .bls-tsl-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(44, 110, 106, .2);
        cursor: pointer;
        transition: all .3s;
    }

    .bls-tsl-dot.on {
        width: 22px;
        border-radius: 4px;
        background: #D4547E;
    }

    /* ===================================================
   9. OCCASIONS
   =================================================== */
    .bls-occ {
        padding: 70px 0;
        background: #fff;
    }

    .bls-occ-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 13px;
    }

    @media(max-width:992px) {
        .bls-occ-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media(max-width:576px) {
        .bls-occ-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .bls-ocard {
        display: block;
        text-decoration: none;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        aspect-ratio: 3/4;
        box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
        transition: transform .4s cubic-bezier(.22, .68, 0, 1.3), box-shadow .4s;
    }

    .bls-ocard:hover {
        transform: translateY(-9px) scale(1.02);
        box-shadow: 0 22px 56px rgba(0, 0, 0, .14);
        text-decoration: none;
    }

    .bls-ocard-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 5s ease;
    }

    .bls-ocard:hover .bls-ocard-bg {
        transform: scale(1.09);
    }

    .bls-ocard-veil {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(10, 22, 20, .9) 0%, rgba(10, 22, 20, .18) 55%, transparent 100%);
    }

    .bls-ocard-body {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 17px 15px;
        z-index: 2;
        transform: translateY(4px);
        transition: transform .3s;
    }

    .bls-ocard:hover .bls-ocard-body {
        transform: none;
    }

    .bls-ocard-ico {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        transform: rotateX(8deg) rotateY(-10deg);
        box-shadow: 3px 4px 12px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .2);
        transition: transform .4s;
    }

    .bls-ocard:hover .bls-ocard-ico {
        transform: rotateX(0) rotateY(0) scale(1.1);
    }

    .bls-ocard-body h5 {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 2px;
    }

    .bls-ocard-body p {
        font-size: 11px;
        color: rgba(255, 255, 255, .58);
        margin: 0;
    }

    /* ===================================================
   10. INSTAGRAM STRIP
   =================================================== */
    .bls-gram {
        padding: 50px 0 0;
        background: #fff;
    }

    .bls-gram-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 28px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .bls-gram-follow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        color: #fff;
        padding: 11px 22px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 13px;
        text-decoration: none;
        box-shadow: 0 7px 22px rgba(188, 24, 136, .28);
        transition: all .3s;
    }

    .bls-gram-follow:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(188, 24, 136, .38);
        color: #fff;
        text-decoration: none;
    }

    .bls-gram-strip {
        display: flex;
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .bls-gram-strip::-webkit-scrollbar {
        display: none;
    }

    .bls-gram-item {
        flex: 0 0 calc(100%/7);
        min-width: 125px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .bls-gram-item img {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

    .bls-gram-item:hover img {
        transform: scale(1.1);
    }

    .bls-gram-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(44, 110, 106, .78), rgba(212, 84, 126, .68));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        opacity: 0;
        transition: opacity .3s;
    }

    .bls-gram-ov i {
        font-size: 26px;
        color: #fff;
    }

    .bls-gram-ov span {
        font-size: 11px;
        color: rgba(255, 255, 255, .8);
        font-weight: 600;
    }

    .bls-gram-item:hover .bls-gram-ov {
        opacity: 1;
    }

    /* ===================================================
   11. NEWSLETTER
   =================================================== */
    .bls-nl {
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        margin-top: 64px;
    }

    .bls-nl-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: brightness(.15) saturate(1.5);
    }

    .bls-nl-grad {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(44, 110, 106, .82), rgba(20, 8, 15, .92));
    }

    .bls-nl-orb {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, .04);
    }

    .no1 {
        width: 210px;
        height: 210px;
        top: -55px;
        left: 4%;
        animation: bls-float 10s ease-in-out infinite;
    }

    .no2 {
        width: 120px;
        height: 120px;
        top: 26%;
        right: 6%;
        animation: bls-float 7s ease-in-out infinite alternate-reverse;
    }

    .no3 {
        width: 80px;
        height: 80px;
        bottom: 7%;
        left: 21%;
        animation: bls-float 8s ease-in-out infinite alternate;
    }

    .bls-nl .container {
        position: relative;
        z-index: 2;
    }

    .bls-nl-wrap {
        max-width: 620px;
        margin: 0 auto;
        text-align: center;
    }

    .bls-nl-ico {
        width: 72px;
        height: 72px;
        margin: 0 auto 24px;
        perspective: 170px;
    }

    .bls-nl-cube {
        width: 72px;
        height: 72px;
        border-radius: 17px;
        background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
        border: 1px solid rgba(255, 255, 255, .22);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        transform: rotateX(13deg) rotateY(-17deg);
        box-shadow: 8px 11px 22px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .2);
        animation: nl-rock 4s ease-in-out infinite;
    }

    @keyframes nl-rock {

        0%,
        100% {
            transform: rotateX(13deg) rotateY(-17deg)
        }

        50% {
            transform: rotateX(-4deg) rotateY(13deg)
        }
    }

    .bls-nl-wrap h2 {
        font-size: clamp(26px, 3.8vw, 44px);
        font-weight: 700;
        color: #fff;
        margin-bottom: 11px;
        line-height: 1.22;
    }

    .bls-nl-wrap h2 em {
        font-style: italic;
        color: #F2C4D0;
        font-weight: 600;
    }

    .bls-nl-wrap>p {
        color: rgba(255, 255, 255, .62);
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.75;
    }

    .bls-nl-box {
        display: flex;
        background: rgba(255, 255, 255, .08);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 60px;
        overflow: hidden;
        max-width: 500px;
        margin: 0 auto 14px;
        padding: 5px 5px 5px 22px;
        box-shadow: 0 18px 54px rgba(0, 0, 0, .28);
    }

    .bls-nl-inp {
        flex: 1;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 15px;
        padding: 10px 0;
        outline: none;
    }

    .bls-nl-inp::placeholder {
        color: rgba(255, 255, 255, .38);
    }

    .bls-nl-btn {
        background: linear-gradient(135deg, #D4547E, #e07a99);
        color: #fff;
        border: none;
        padding: 11px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 7px;
        box-shadow: 0 5px 18px rgba(212, 84, 126, .38);
        transition: all .3s;
    }

    .bls-nl-btn:hover {
        background: linear-gradient(135deg, #b8375f, #D4547E);
        transform: scale(1.04);
    }

    .bls-nl-note {
        color: rgba(255, 255, 255, .36);
        font-size: 12px;
        margin: 0;
    }

    .bls-pc {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
        transition: transform .32s cubic-bezier(.22, .68, 0, 1.3), box-shadow .32s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .bls-pc:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(44, 110, 106, .13);
    }

    .bls-pc-img-wrap {
        position: relative;
        display: block;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        flex-shrink: 0;
        text-decoration: none;
    }

    .bls-pc-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

    .bls-pc:hover .bls-pc-img-wrap img {
        transform: scale(1.07);
    }

    .bls-pc-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 2;
        background: #2C6E6A;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 20px;
    }

    .bls-pc-hover {
        position: absolute;
        inset: 0;
        z-index: 3;
        background: rgba(44, 110, 106, .52);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 18px;
        opacity: 0;
        transition: opacity .28s;
    }

    .bls-pc:hover .bls-pc-hover {
        opacity: 1;
    }

    .bls-pc-hover span {
        background: #fff;
        color: #2C6E6A;
        font-size: 12px;
        font-weight: 600;
        padding: 7px 18px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        gap: 6px;
        transform: translateY(8px);
        transition: transform .28s;
    }

    .bls-pc:hover .bls-pc-hover span {
        transform: translateY(0);
    }

    .bls-pc-body {
        padding: 14px 15px 16px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .bls-pc-cat {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #2C6E6A;
        display: block;
        margin-bottom: 5px;
    }

    .bls-pc-name {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 4px;
        flex: 1;
    }

    .bls-pc-name a {
        color: #1a1a1a;
        text-decoration: none;
        transition: color .2s;
    }

    .bls-pc-name a:hover {
        color: #D4547E;
    }

    .bls-pc-meta {
        font-size: 11px;
        color: #aaa;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .bls-pc-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
    }

    .bls-pc-price {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .bls-pc-cart {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #2C6E6A;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        text-decoration: none;
        flex-shrink: 0;
        transition: background .2s, transform .2s;
    }

    .bls-pc-cart:hover {
        background: #D4547E;
        color: #fff;
        text-decoration: none;
        transform: scale(1.12);
    }

    @media (max-width: 576px) {
        .bls-pc-name {
            font-size: 13px;
        }

        .bls-pc-price {
            font-size: 15px;
        }

        .bls-pc-body {
            padding: 11px 12px 13px;
        }

        .bls-pc-cart {
            width: 32px;
            height: 32px;
            font-size: 12px;
        }
    }
