.featured-in{
    --fi-ink:#1c1c1c;
    --fi-bg:#f4f3f1;
    background:var(--fi-bg);
    text-align:center;
    padding:27px 24px 60px;
    font-family:'Jost', sans-serif;
    color:var(--fi-ink);
  }
  .featured-in h2{
    font-size:15px;
    font-weight:400;
    letter-spacing:.5em;
    text-transform:uppercase;
    margin:0 0 48px;
  }

  .press-logos{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:56px;
    margin-bottom:44px;
  }
  .press-logos > div{color:var(--fi-ink);opacity:.88;transition:opacity .25s ease;}
  .press-logos > div:hover{opacity:1;}

  .lg-monocle{display:flex;flex-direction:column;align-items:center;gap:6px;}
  .lg-monocle .m-circle{
    width:44px;height:44px;border:1.4px solid var(--fi-ink);border-radius:50%;
    display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:500;
  }
  .lg-monocle .m-text{font-size:11px;letter-spacing:.32em;font-weight:500;}

  .lg-elledecor{display:flex;align-items:baseline;gap:6px;}
  .lg-elledecor .elle{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:15px;letter-spacing:.15em;}
  .lg-elledecor .decor{font-family:'Jost',sans-serif;font-weight:600;font-size:30px;letter-spacing:.02em;}

  .lg-robb{font-family:'Playfair Display',serif;font-style:italic;font-weight:700;font-size:28px;letter-spacing:.01em;}

  .lg-ad{display:flex;flex-direction:column;align-items:center;}
  .lg-ad .ad{font-family:'Jost',sans-serif;font-weight:700;font-size:36px;letter-spacing:.04em;line-height:1;}
  .lg-ad .sub{font-size:8px;letter-spacing:.24em;font-weight:500;margin-top:2px;}

  .lg-forbes{font-family:'Playfair Display',serif;font-weight:700;font-size:30px;}

  .lg-1stdibs{font-family:'Playfair Display',serif;font-weight:700;font-size:30px;display:flex;align-items:flex-start;}
  .lg-1stdibs sup{font-size:13px;font-weight:700;margin:2px 1px 0 1px;}

  .media-btn{
    display:inline-block;
    border:1px solid var(--fi-ink);
    padding:14px 32px;
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    background:transparent;
    color:var(--fi-ink);
    cursor:pointer;
    font-family:'Jost', sans-serif;
    transition:background .25s ease, color .25s ease;
  }
  .media-btn:hover{background:var(--fi-ink);color:#fff;}

  @media (max-width:900px){
    .press-logos{gap:34px;}
    .lg-ad .ad{font-size:28px;}
    .lg-elledecor .decor{font-size:24px;}
    .lg-robb, .lg-forbes, .lg-1stdibs{font-size:22px;}
  }
  @media (max-width:560px){
    .featured-in{padding:50px 18px 44px;}
    .featured-in h2{letter-spacing:.35em;font-size:13px;margin-bottom:36px;}
    .press-logos{gap:26px 30px;}
  }

  /* ================= STACKING BANNER: next image slides up and COVERS the current one (DESKTOP) ================= */
  html, body{ margin:0; padding:0; }
  html{ overflow-x: clip; }

  .banner-stack{
    position:relative;
    width:100vw;
    max-width:100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .banner-panel{
    position:sticky;
    top:0;
    height:100vh;
    height:100svh;
    height:calc(var(--vh, 1vh) * 100);
    width:100%;
    overflow:hidden;
    background:#111;
    box-sizing:border-box;
  }
  .banner-panel:nth-child(1){ z-index:1; }
  .banner-panel:nth-child(2){ z-index:2; }
  .banner-panel:nth-child(3){ z-index:3; }
  .banner-panel:nth-child(4){ z-index:4; }
  .banner-panel:nth-child(5){ z-index:5; }

  .banner-panel img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
  }

  .banner-caption{
    position:absolute;
    left:34px;
    bottom:36px;
    z-index:2;
    color:#fff;
    text-align:left;
  }
  .banner-caption .b-title{
    font-family:'Playfair Display', serif;
    font-weight:700;
    font-size:30px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin:0 0 12px;
    text-shadow:0 2px 12px rgba(0,0,0,.85), 0 0 4px rgba(0,0,0,.9);
  }
  .banner-caption .b-see-more{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#fff;
    padding-bottom:6px;
    border-bottom:1px solid rgba(255,255,255,.85);
    text-shadow:0 1px 6px rgba(0,0,0,.85);
  }

  .banner-dots{
    position:fixed;
    right:26px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    z-index:999;
  }
  .banner-dots span{
    width:7px;height:7px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    transition:background .3s ease, transform .3s ease;
    cursor:pointer;
    display:block;
    flex-shrink:0;
  }
  .banner-dots span.is-active{background:#fff;transform:scale(1.3);}

  .banner-progress-track{
    width:2px;
    height:110px;
    background:rgba(255,255,255,.25);
    border-radius:2px;
    overflow:hidden;
    order:-1;
    flex-shrink:0;
  }
  .banner-progress-fill{
    width:100%;
    height:0%;
    background:#ffffff;
  }

  /* ================= MOBILE OVERRIDE: simple stacked rounded cards ================= */
  @media (max-width:768px){
    .banner-dots{ display:none; }

    .banner-stack{
      width:auto;
      max-width:none;
      margin-left:0;
      margin-right:0;
      background:#eef0f5;
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .banner-panel{
      position:relative;
      top:auto;
      height:230px;
      width:100%;
      border-radius:18px;
      box-shadow:0 8px 24px rgba(0,0,0,.12);
    }
    .banner-panel:nth-child(n){ z-index:auto; }

    .banner-caption{ left:22px; bottom:22px; }
    .banner-caption .b-title{ font-size:20px; letter-spacing:1px; margin-bottom:8px; }
    .banner-caption .b-see-more{ font-size:11px; }
  }

  /* ============ TOP SPACING BELOW BANNER ============ */
  .page-gap-top{
    height:10px;
    width:100%;
    background:#ffffff;
  }
  @media (max-width:768px){
    .page-gap-top{ height:24px; }
  }

  /* ============ SECTION : ROOMS GALLERY ============ */
  :root{ --gold:#b08d57; }
  .rooms-gallery-wrapper{
    width:100%;
    background:#ffffff;
    font-family:'Poppins', sans-serif;
  }
  .rooms-row{
    display:flex;
    width:100%;
    flex-wrap:wrap;
    gap:3px;
  }
  .rooms-row + .rooms-row{ margin-top:3px; }
  .room-card{
    position:relative;
    overflow:hidden;
    flex:1 1 calc(33.33% - 2px);
    height:480px;
    display:block;
    text-decoration:none;
    border:none;
  }
  .room-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .7s ease;
  }
  .room-card:hover img{ transform:scale(1.08); }
  .room-card-caption{
    position:absolute;
    left:30px;
    bottom:26px;
    z-index:2;
    color:#fff;
  }
  .room-card-caption .room-title{
    font-family:'Playfair Display', serif;
    font-size:22px;
    letter-spacing:3px;
    margin:0 0 10px 0;
    text-transform:uppercase;
    text-shadow:0 2px 10px rgba(0,0,0,.85), 0 0 4px rgba(0,0,0,.9);
  }
  .room-card-caption .see-more{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#fff;
    padding-bottom:6px;
    border-bottom:1px solid rgba(255,255,255,.8);
    text-shadow:0 1px 6px rgba(0,0,0,.85);
    transition:border-color .3s ease, letter-spacing .3s ease;
  }
  .room-card:hover .see-more{ letter-spacing:2.5px; }

  @media (max-width:900px){
    .room-card{ flex:1 1 calc(50% - 2px); height:380px; }
  }
  @media (max-width:560px){
    .room-card{ flex:1 1 100%; height:447px; }
  }

  /* ============ SECTION : EXCLUSIVE DESIGN COLLECTIONS ============ */
  .edc-section{
    background:#ffffff;
    padding:60px 0 0 0;
    font-family:'Poppins', sans-serif;
  }
  .edc-heading{
    font-family:'Playfair Display', serif;
    font-weight:600;
    font-size:42px;
    color:#1c1c1c;
    padding:0 40px 30px 40px;
    margin:0;
  }
  .edc-row{
    display:flex;
    width:100%;
    flex-wrap:wrap;
    gap:3px;
  }
  .edc-row + .edc-row{ margin-top:3px; }
  .edc-card{
    position:relative;
    overflow:hidden;
    display:block;
    text-decoration:none;
    border:none;
    height:620px;
    background:#e4e2df;
  }
  .edc-card.w-wide  { flex:1 1 calc(62% - 2px); }
  .edc-card.w-narrow{ flex:1 1 calc(38% - 2px); }
  .edc-card.w-half  { flex:1 1 calc(50% - 2px); }
  .edc-card.w-third { flex:1 1 calc(33.33% - 2px); }

  .edc-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .8s ease;
  }
  .edc-card:hover img{ transform:scale(1.06); }

  .edc-stock-badge{
    position:absolute;
    top:22px;
    right:26px;
    z-index:3;
    font-size:12px;
    letter-spacing:1.5px;
    color:rgba(60,60,60,.9);
    text-transform:uppercase;
    background:rgba(255,255,255,.6);
    padding:6px 14px;
    border-radius:30px;
    backdrop-filter:blur(3px);
  }

  .edc-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:26px;
    z-index:3;
    text-align:center;
  }
  .edc-caption span{
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#2b2b2b;
    background:rgba(255,255,255,.8);
    padding:8px 22px;
    border-radius:2px;
  }

  @media (max-width:992px){
    .edc-card{ height:480px; }
    .edc-heading{ font-size:32px; }
  }
  @media (max-width:768px){
    .edc-card.w-wide, .edc-card.w-narrow, .edc-card.w-half, .edc-card.w-third{ flex:1 1 100%; }
    .edc-card{ height:400px; }
    .edc-heading{ font-size:26px; padding:0 20px 20px 20px; }
    .edc-stock-badge{ font-size:10px; padding:4px 10px; top:14px; right:14px; }
    .edc-caption span{ font-size:12px; padding:6px 16px; }
  }

  /* ============ NEW: DARK-LABEL PREMIUM CARDS (like screenshots) ============ */
  .edc-card-v2{
    position:relative;
    overflow:hidden;
    display:block;
    text-decoration:none;
    border:none;
    height:620px;              /* SAME height as .edc-card, kept consistent */
    background:#1c1a17;
  }
  .edc-card-v2.w-wide  { flex:1 1 calc(62% - 2px); }
  .edc-card-v2.w-narrow{ flex:1 1 calc(38% - 2px); }
  .edc-card-v2.w-half  { flex:1 1 calc(50% - 2px); }
  .edc-card-v2.w-third { flex:1 1 calc(33.33% - 2px); }

  .edc-card-v2 img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .8s ease;
  }
  .edc-card-v2:hover img{ transform:scale(1.06); }

  /* dark gradient so top label + bottom caption stay readable on any image */
  .edc-card-v2::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    background:
      linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0) 68%, rgba(0,0,0,.65) 100%);
    pointer-events:none;
  }

  /* top dark label bar e.g. "CENTER TABLES" / "SOFAS" / "SAFES" */
  .edc-top-label{
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:3;
    padding:16px 20px;
    text-align:center;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:rgba(255,255,255,.85);
    font-weight:500;
  }

  /* "+15 ITEMS IN STOCK" style badge, plain (no pill bg), top-right */
  .edc-stock-badge-v2{
    position:absolute;
    top:20px;
    right:24px;
    z-index:3;
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:rgba(255,255,255,.85);
    font-weight:500;
  }

  /* bottom caption, plain text (no white pill), centered */
  .edc-caption-v2{
    position:absolute;
    left:0;
    right:0;
    bottom:24px;
    z-index:3;
    text-align:center;
  }
  .edc-caption-v2 span{
    font-family:'Playfair Display', serif;
    font-size:16px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#ffffff;
    font-weight:500;
    text-shadow:0 2px 10px rgba(0,0,0,.6);
  }

  @media (max-width:992px){
    .edc-card-v2{ height:480px; }
  }
  @media (max-width:768px){
    .edc-card-v2.w-wide, .edc-card-v2.w-narrow, .edc-card-v2.w-half, .edc-card-v2.w-third{ flex:1 1 100%; }
    .edc-card-v2{ height:400px; }
    .edc-top-label{ font-size:11px; letter-spacing:2px; padding:14px 16px; }
    .edc-stock-badge-v2{ font-size:10px; top:16px; right:16px; }
    .edc-caption-v2 span{ font-size:14px; letter-spacing:2px; }
  }

  /* ================= CREATIVE POPUP FORM ================= */
  .media-modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(15,13,11,.7);
    backdrop-filter:blur(4px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:2000;
    padding:20px;
    opacity:0;
    transition:opacity .35s ease;
  }
  .media-modal-overlay.is-open{ display:flex; opacity:1; }

  .media-modal{
    display:flex;
    width:100%;
    max-width:880px;
    max-height:92vh;
    background:#fffdfa;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 40px 90px rgba(0,0,0,.4);
    font-family:'Poppins', sans-serif;
    position:relative;
    transform:translateY(24px) scale(.97);
    opacity:0;
    transition:transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
  }
  .media-modal-overlay.is-open .media-modal{
    transform:translateY(0) scale(1);
    opacity:1;
  }

  .media-modal-close{
    position:absolute;
    top:18px;
    right:18px;
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,.92);
    border:none;
    font-size:18px;
    line-height:1;
    cursor:pointer;
    z-index:6;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1c1c1c;
    transition:transform .25s ease, background .25s ease;
  }
  .media-modal-close:hover{ background:#fff; transform:rotate(90deg); }

  /* --- LEFT: image side --- */
  .media-modal-image{
    flex:1 1 42%;
    position:relative;
    min-height:100%;
    background:#111;
  }
  .media-modal-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .media-modal-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.75) 100%);
  }
  .mm-image-content{
    position:absolute;
    left:26px;
    right:26px;
    bottom:26px;
    z-index:2;
    color:#fff;
  }
  .mm-image-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:10.5px;
    letter-spacing:2px;
    text-transform:uppercase;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.35);
    padding:6px 12px;
    border-radius:30px;
    margin-bottom:14px;
    backdrop-filter:blur(2px);
  }
  .mm-image-badge svg{ width:12px; height:12px; flex-shrink:0; }
  .mm-image-content h4{
    font-family:'Playfair Display', serif;
    font-size:24px;
    font-weight:700;
    line-height:1.3;
    margin:0;
    text-shadow:0 2px 14px rgba(0,0,0,.6);
  }

  /* --- RIGHT: form side --- */
  .media-modal-form{
    flex:1 1 58%;
    padding:46px 46px 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    overflow-y:auto;
    position:relative;
  }
  .mm-gold-line{
    width:46px;
    height:2px;
    background:var(--gold,#b08d57);
    margin-bottom:18px;
  }
  .media-modal-form .mm-eyebrow{
    font-size:11px;
    letter-spacing:.3em;
    text-transform:uppercase;
    color:var(--gold, #b08d57);
    margin:0 0 10px;
    font-weight:600;
  }
  .media-modal-form h3{
    font-family:'Playfair Display', serif;
    font-size:29px;
    font-weight:700;
    color:#1c1c1c;
    margin:0 0 12px;
    line-height:1.25;
  }
  .media-modal-form p{
    font-size:13.5px;
    line-height:1.65;
    color:#7a7670;
    margin:0 0 30px;
  }

  .mm-field{
    position:relative;
    margin-bottom:20px;
  }
  .mm-field .mm-icon{
    position:absolute;
    left:16px;
    top:16px;
    width:16px;
    height:16px;
    color:#b3ab9f;
    pointer-events:none;
    transition:color .2s ease;
  }
  .mm-field input,
  .mm-field textarea{
    width:100%;
    box-sizing:border-box;
    padding:16px 16px 8px 44px;
    border:none;
    border-bottom:1.5px solid #e4dfd6;
    border-radius:10px 10px 0 0;
    font-family:'Poppins', sans-serif;
    font-size:14px;
    color:#1c1c1c;
    background:#f7f4ef;
    transition:border-color .25s ease, background .25s ease;
  }
  .mm-field textarea{
    padding-top:24px;
    min-height:64px;
    resize:vertical;
  }
  .mm-field input:focus,
  .mm-field textarea:focus{
    outline:none;
    border-color:var(--gold, #b08d57);
    background:#fbf9f5;
  }
  .mm-field input:focus ~ .mm-icon,
  .mm-field textarea:focus ~ .mm-icon{
    color:var(--gold,#b08d57);
  }
  .mm-field label{
    position:absolute;
    left:44px;
    top:15px;
    font-size:13px;
    color:#a19a8c;
    pointer-events:none;
    transition:all .2s ease;
    background:transparent;
  }
  .mm-field input:focus + label,
  .mm-field input:not(:placeholder-shown) + label,
  .mm-field textarea:focus + label,
  .mm-field textarea:not(:placeholder-shown) + label{
    top:6px;
    left:44px;
    font-size:10px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--gold,#b08d57);
  }

  .mm-submit{
    margin-top:6px;
    width:100%;
    padding:15px 20px;
    border:none;
    border-radius:12px;
    background:#1c1c1c;
    color:#fff;
    font-size:12.5px;
    letter-spacing:2px;
    text-transform:uppercase;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:background .3s ease, transform .2s ease, letter-spacing .3s ease;
  }
  .mm-submit svg{
    width:14px;
    height:14px;
    transition:transform .3s ease;
  }
  .mm-submit:hover{
    background:var(--gold, #b08d57);
    letter-spacing:3px;
  }
  .mm-submit:hover svg{ transform:translateX(4px); }
  .mm-submit:active{ transform:scale(.98); }

  .mm-privacy{
    margin-top:16px;
    font-size:11px;
    color:#a8a29a;
    text-align:center;
  }

  @media (max-width:700px){
    .media-modal{
      flex-direction:column;
      max-height:94vh;
      border-radius:20px;
    }
    .media-modal-image{ height:160px; flex:none; }
    .mm-image-content{ bottom:16px; left:20px; right:20px; }
    .mm-image-content h4{ font-size:18px; }
    .media-modal-form{ padding:30px 24px 30px; }
    .media-modal-form h3{ font-size:22px; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*page add css */
  
  
    :root{
        --gold:#b48a4d;
        --text-dark:#2b2b2b;
    }
    body{
        font-family:'Poppins', sans-serif;
    }

    .hero-banner{
        width:100%;
        height:65vh;
        background-image:url('https://www.bykoket.com/images/all-products-slide/desktop/swipper-image-desktop-rugs-collection.webp');
        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;
    }
    @media (max-width:767px){
        .hero-banner{ height:17vh; }
    }

    .parallax-banner{
        position:relative;
        width:100%;
        height:65vh;
        background-image:url('assets/banner/slide-all-products-categorias-accent-chair-1.webp');
        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;
        background-attachment:fixed;
        display:flex;
        align-items:center;
        justify-content:center;
    }
    .parallax-banner::before{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(0,0,0,.35);
    }
    .parallax-banner h2{
        position:relative;
        z-index:2;
        color:#fff;
        font-family:'Playfair Display', serif;
        font-size:4rem;
        letter-spacing:4px;
        text-align:center;
        margin:0;
    }
    @media (max-width:767px){
        .parallax-banner{ height:40vh; }
        .parallax-banner h2{ font-size:2rem; letter-spacing:2px; }
    }

    .kkw-product-section{
        padding:70px 20px;
        background:#fff;
    }
    .kkw-product-grid{
        display:grid;
        grid-template-columns:repeat(3, 1fr);
        gap:55px 45px;
        max-width:1700px;
        margin:0 auto;
    }
    @media (max-width:991px){
        .kkw-product-grid{
            grid-template-columns:repeat(2, 1fr);
            gap:45px 25px;
        }
    }
    @media (max-width:576px){
        .kkw-product-grid{
            grid-template-columns:1fr;
            gap:40px;
        }
    }

    .kkw-product-card{
        text-align:center;
        padding:0;
    }

    .kkw-slider{
        position:relative;
        display:block;
        width:100%;
        aspect-ratio:1/1;
        margin:0 auto 22px;
        overflow:hidden;
        background:#fafafa;
        border:1px solid #ececec;
        border-radius:2px;
        box-shadow:0 4px 18px rgba(0,0,0,.05);
        transition:box-shadow .35s ease;
        cursor:pointer;
        padding:18px;
        box-sizing:border-box;
    }
    .kkw-product-card:hover .kkw-slider{
        box-shadow:0 10px 28px rgba(0,0,0,.10);
    }
    .kkw-slider img{
        position:absolute;
        top:0; left:0;
        width:100%;
        height:100%;
        padding:18px;
        box-sizing:border-box;
        object-fit:contain;
        opacity:0;
        transform:scale(1);
        transition:opacity 1s ease-in-out, transform .6s ease;
    }
    .kkw-slider img.active{
        opacity:1;
        transform:scale(1);
    }

    .kkw-slider-dots{
        position:absolute;
        left:0; right:0;
        bottom:12px;
        z-index:3;
        display:flex;
        justify-content:center;
        gap:6px;
    }
    .kkw-slider-dots span{
        width:6px;
        height:6px;
        border-radius:50%;
        background:rgba(255,255,255,.6);
        border:1px solid rgba(0,0,0,.15);
        transition:.3s;
    }
    .kkw-slider-dots span.active{
        background:var(--gold);
        border-color:var(--gold);
        transform:scale(1.25);
    }

    .kkw-product-card .kkw-brand-logo{
        width:40px;
        height:40px;
        border:1px solid #ccc;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        margin:0 auto 15px;
        font-size:11px;
        font-weight:600;
    }

    .kkw-product-card .kkw-tag-new{
        display:block;
        font-size:11px;
        letter-spacing:2.5px;
        color:var(--gold);
        margin-bottom:8px;
        font-weight:600;
    }

    .kkw-product-card h3{
        font-size:1.15rem;
        font-weight:400;
        margin:0 0 14px;
        letter-spacing:.3px;
    }
    .kkw-product-card h3 a{
        color:var(--text-dark);
        text-decoration:none;
        transition:.3s;
    }
    .kkw-product-card h3 a:hover{
        color:var(--gold);
    }

    .kkw-product-card .kkw-btn-price{
        border:none;
        border-bottom:1px solid var(--text-dark);
        background:transparent;
        padding-bottom:6px;
        font-size:12.5px;
        letter-spacing:2px;
        font-weight:500;
        color:var(--text-dark);
        text-decoration:none;
        transition:.3s;
    }
    .kkw-product-card .kkw-btn-price:hover{
        color:var(--gold);
        border-color:var(--gold);
    }

    .back-to-top{
        position:fixed;
        right:25px;
        bottom:25px;
        width:50px;
        height:50px;
        background:var(--gold);
        color:#fff;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        z-index:99;
        text-decoration:none;
        box-shadow:0 3px 10px rgba(0,0,0,.2);
    }
