/* ================================
BROWSER SCROLLBAR — VL24 GOLD
================================ */

/* Chrome / Edge / Safari */
::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#111;
}

::-webkit-scrollbar-thumb{
  background:var(--vl24-gold-metal);
  border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
  filter:brightness(1.2);
}

/* Firefox */
html{
  scrollbar-color:#b8923e #111;
  scrollbar-width:thin;
}

/* =================================
TOP SCROLL PROGRESS BAR — VL24
================================ */

.vl24-scroll-progress{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:4px;
  z-index:999999;

  background:rgba(255,255,255,.06);
}

.vl24-scroll-progress-bar{
  height:100%;
  width:0%;

  background:var(--vl24-gold-metal);

  box-shadow:
    0 0 8px rgba(184,146,62,.4),
    0 0 18px rgba(184,146,62,.25);

  transition:width .08s linear;
}

/* VL24 SCROLL PROGRESS — ALWAYS ON TOP */

.vl24-scroll-progress{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:4px;

  z-index:9999999999; /* kõige peale */

  pointer-events:none;
}

/* =====================================
GLOBAL WIDTH LOCK — NO SIDE SCROLL
===================================== */

html, body{
  max-width:100%;
  overflow-x:hidden;
}







/* =========================================
VL24 PRODUCT PAGE — FINAL
========================================= */

.vl24-product-page{
  max-width:1400px;
  margin:0 auto;
}

/* taust full-width, sisu nihutame */
.vl24-product-hero{
  padding:80px 40px 64px;
  background:
    radial-gradient(circle at 20% 30%, rgba(184,146,62,.12), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(0,0,0,.06), transparent 60%);
}

.vl24-product-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 560px;
  gap:56px;
  align-items:start;

  max-width:1280px;
  margin:0 auto;
  padding-left:calc(var(--sb-width) + 16px);
}

.vl24-product-left{
  min-width:0;
  padding-top:20px;
}

.vl24-product-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  margin-bottom:18px;
  border-radius:999px;
  background:rgba(17,17,17,.92);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.vl24-product-title{
  font-family:"Outfit",sans-serif;
  font-size:clamp(34px,4vw,62px);
  line-height:1.02;
  letter-spacing:-0.03em;
  margin:0 0 18px;
  color:#111;
}

.vl24-product-excerpt{
  font-size:18px;
  line-height:1.65;
  color:#4a4a4a;
  margin-bottom:20px;
}

.vl24-product-excerpt p{
  margin:0 0 14px;
}

.vl24-product-price-row{
  margin:0 0 14px;
}

.vl24-product-price-row .price{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;

  font-size:34px;
  font-weight:700;
  line-height:1.1;
}

.vl24-product-price-row del{
  color:#7b7b7b;
  opacity:.8;
  font-size:.68em;
}

.vl24-product-price-row ins{
  text-decoration:none;
  color:#111;
}

.vl24-product-delivery,
.vl24-product-note-line,
.vl24-product-small-note{
  font-size:14px;
  line-height:1.55;
  color:#5d5d5d;
}

.vl24-product-delivery{
  margin-bottom:8px;
  font-weight:600;
  color:#2f2f2f;
}

.vl24-product-note-line{
  margin-bottom:18px;
}

.vl24-product-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:stretch;
  margin-top:4px;
}

.vl24-product-cart form{
  margin:0;
  display:flex;
}

.vl24-product-cart .single_add_to_cart_button,
.vl24-product-actions a.vl24-btn{
  height:56px !important;
  min-width:180px;
  padding:0 24px !important;

  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  border-radius:14px !important;
  line-height:1 !important;
  font-size:16px !important;
  font-weight:700 !important;
  text-align:center !important;
  text-decoration:none !important;
  white-space:nowrap;
}

.vl24-product-cart .single_add_to_cart_button{
  border:none !important;
  color:#fff !important;
  background:linear-gradient(135deg,#6b5cff,#8e7dff) !important;
  box-shadow:0 10px 26px rgba(107,92,255,.24);
}

.vl24-btn{
  transition:transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.vl24-btn:hover,
.vl24-product-cart .single_add_to_cart_button:hover{
  transform:translateY(-2px);
}

.vl24-btn-demo{
  background:linear-gradient(135deg,#6b5cff,#8e7dff);
  color:#fff !important;
  box-shadow:0 10px 26px rgba(107,92,255,.22);
}

.vl24-btn-docs{
  background:#0d0d0f;
  color:#fff !important;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.vl24-product-small-note{
  margin-top:12px;
}

.vl24-product-list{
  margin:22px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.vl24-product-list li{
  position:relative;
  padding-left:26px;
  font-size:15px;
  line-height:1.6;
  color:#333;
}

.vl24-product-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight:700;
  color:#111;
}

.vl24-product-right{
  min-width:0;
}

.vl24-product-image-wrap{
  position:relative;
}

.woocommerce-product-gallery{
  width:100%;
}

.woocommerce-product-gallery__trigger{
  position:absolute;
  top:10px;
  right:10px;
  width:32px;
  height:32px;
  opacity:0;
  pointer-events:none;
}

.woocommerce-product-gallery__image{
  
  border-radius:20px;
}

.woocommerce-product-gallery__image img{
  border-radius:20px;
}

.woocommerce-product-gallery__wrapper img{
  width:100%;
  border-radius:20px;
  display:block;
}

.flex-control-thumbs{
  display:flex !important;
  gap:12px;
  margin-top:14px;
  padding:0;
  list-style:none;
}

.flex-control-thumbs li{
  width:74px !important;
  list-style:none;
}

.flex-control-thumbs img{
  display:block;
  width:100%;
  border-radius:10px;
  cursor:pointer;
  opacity:.82;
  transition:opacity .2s ease, transform .2s ease;
}

.flex-control-thumbs img:hover{
  opacity:1;
  transform:translateY(-1px);
}

.vl24-zoom-btn{
  position:absolute;
  top:14px;
  left:14px;
  z-index:10;

  width:42px;
  height:42px;
  border-radius:999px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(8,8,10,.72);
  color:#fff;
  cursor:pointer;
  backdrop-filter:blur(10px);
}

.vl24-product-includes{
  margin-top:18px;
  padding:22px 22px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 18px 50px rgba(0,0,0,.06);
}

.vl24-product-includes h3{
  margin:0 0 12px;
  font-family:"Outfit",sans-serif;
  font-size:20px;
  line-height:1.2;
  color:#111;
}

.vl24-product-secondary-links{
  margin-top:12px;
}

.vl24-product-secondary-links a{
  color:#111;
  text-decoration:none;
  font-weight:600;
  border-bottom:1px solid rgba(0,0,0,.2);
}

.vl24-product-tabs{
  max-width:1280px;
  margin:0 auto;
  padding:48px 40px 90px;
  padding-left:calc(var(--sb-width) + 56px);
}

.vl24-tabs-nav{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:26px;
}

.vl24-tabs-nav button{
  padding:12px 18px;
  border-radius:999px;
  border:none;
  background:#ececec;
  color:#111;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}

.vl24-tabs-nav button.active{
  background:#111;
  color:#fff;
}

.vl24-tab{
  display:none;
  padding:34px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 24px 70px rgba(0,0,0,.08);
}

.vl24-tab.active{
  display:block;
}

.vl24-tab p{
  margin:0 0 16px;
  font-size:17px;
  line-height:1.72;
  color:#444;
}

@media (max-width:1100px){
  .vl24-product-hero__grid{
    grid-template-columns:1fr;
    padding-left:calc(var(--sb-width) + 16px);
  }

  .vl24-product-right{
    order:-1;
  }
}

@media (max-width:768px){
  .vl24-product-hero{
    padding:56px 20px 42px;
  }

  .vl24-product-hero__grid{
    gap:34px;
    padding-left:0;
  }

  .vl24-product-tabs{
    padding:40px 20px 70px;
    padding-left:20px;
  }

  .vl24-product-title{
    font-size:40px;
  }

  .vl24-product-cart .single_add_to_cart_button,
  .vl24-product-actions a.vl24-btn{
    min-width:100%;
  }

  .flex-control-thumbs li{
    width:60px !important;
  }

  .vl24-tab{
    padding:22px;
  }
}

/* FORCE HIDE BROKEN LIGHTBOX */
.pswp:not(.pswp--open){
  display:none !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

/* kui kinni → kõik childid ka */
.pswp:not(.pswp--open) *{
  opacity:0 !important;
}

.vl24-btn-buy{
  background:linear-gradient(135deg,#caa74a,#f5d27a);
  color:#111 !important;
  box-shadow:0 10px 26px rgba(202,167,74,.3);
}

/* =========================================
PRODUCT MOBILE — REMOVE HEADER
========================================= */

@media (max-width: 768px){

  body.single-product header,
  body.single-product .site-header,
  body.single-product #masthead{
    display: none !important;
  }

  body.single-product{
    padding-top: 0 !important;
  }

}

@media (max-width: 768px){

  body.single-product .vl24-back-btn,
  body.woocommerce-checkout .vl24-back-btn{
    position: fixed;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,#b8923e,#e2c46c);
    box-shadow: 0 8px 20px rgba(184,146,62,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
  }

  body.single-product .vl24-back-btn::before,
  body.woocommerce-checkout .vl24-back-btn::before{
    content: "←";
    font-size: 18px;
    font-weight: 700;
    color: #111;
  }

}

/* =========================================
PRODUCT IMAGE — FIXED SIZE (NO JUMPING)
========================================= */

/* wrapper fikseeritud proportsiooniga */
.woocommerce-product-gallery__image{
  width:100%;
  aspect-ratio: 1 / 1; /* 🔥 MUUDA kui tahad (nt 4/3 või 16/10) */
  overflow:hidden;
  border-radius:20px;
  background:#f6f6f6;
}

/* pilt täidab kasti */
.woocommerce-product-gallery__image img{
  width:100%;
  height:100%;
  object-fit:cover; /* 🔥 oluline */
  display:block;
}

/* =========================================
PRODUCT TABS — MOBILE PRO UI
========================================= */

@media (max-width: 768px){

  .vl24-tabs-nav{
    display:flex;
    flex-wrap:nowrap !important; /* ❌ EI WRAPI */
    overflow-x:auto;
    gap:10px;

    padding-bottom:6px;
    margin-bottom:18px;

    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .vl24-tabs-nav::-webkit-scrollbar{
    display:none;
  }

  .vl24-tabs-nav button{
    flex:0 0 auto; /* 🔥 ei venita */
    white-space:nowrap;

    padding:10px 16px;
    border-radius:999px;

    font-size:14px;
  }

}

/* =========================================
PRODUCT MOBILE — PUSH CONTENT ONLY (NOT BG)
========================================= */

@media (max-width: 768px){

  .vl24-product-hero__grid{
    margin-top: 20px; 
  }

}

/* =========================================
VL24 PRODUCT REVIEWS
========================================= */

.vl24-product-rating-summary{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin:14px 0 6px;
}

.vl24-product-rating-summary .star-rating{
  margin:0;
}

.vl24-rating-link{
  color:#666;
  text-decoration:none;
  font-size:14px;
  transition:opacity .25s ease, color .25s ease;
}

.vl24-rating-link:hover{
  color:#111;
  opacity:.9;
}

.vl24-product-reviews-section{
  max-width:1400px;
  margin:56px auto 0;
  padding:0 40px 72px;
}

.vl24-product-reviews-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.vl24-product-reviews-title{
  margin:0;
  font-size:32px;
  line-height:1.1;
  font-weight:800;
  letter-spacing:-.02em;
}

.vl24-product-reviews-meta{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.vl24-product-reviews-stars .woocommerce-product-rating{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
}

.vl24-product-reviews-stars .star-rating{
  margin:0;
}

.vl24-product-reviews-stats{
  display:flex;
  flex-direction:column;
  gap:2px;
  font-size:14px;
  color:#666;
}

.vl24-product-reviews-stats strong{
  font-size:18px;
  line-height:1;
  color:#111;
}

.vl24-no-reviews-yet{
  margin:0;
  font-size:15px;
  color:#666;
}

.vl24-product-reviews-box{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:24px;
  box-shadow:0 18px 50px rgba(0,0,0,.05);
  padding:28px;
}

/* Review list */
.vl24-product-reviews-box #reviews{
  margin:0;
}

.vl24-product-reviews-box #comments{
  margin-bottom:32px;
}

.vl24-product-reviews-box #comments h2,
.vl24-product-reviews-box .woocommerce-Reviews-title{
  margin:0 0 18px;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
  color:#111;
}

.vl24-product-reviews-box ol.commentlist{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:16px;
}

.vl24-product-reviews-box ol.commentlist li.review{
  margin:0;
  padding:0;
  border:none;
}

.vl24-product-reviews-box ol.commentlist li.review .comment_container{
  background:#fafafa;
  border:1px solid rgba(0,0,0,.07);
  border-radius:20px;
  padding:18px 18px 16px;
}

.vl24-product-reviews-box ol.commentlist li.review img.avatar{
  width:52px !important;
  height:52px !important;
  border-radius:50%;
  border:2px solid #fff;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.vl24-product-reviews-box .comment-text{
  margin-left:72px !important;
  border:none !important;
  padding:0 !important;
}

.vl24-product-reviews-box .meta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:8px !important;
  font-size:14px;
  color:#666;
}

.vl24-product-reviews-box .meta .woocommerce-review__author{
  color:#111;
  font-weight:700;
  font-style:normal;
}

.vl24-product-reviews-box .description p{
  margin:0;
  color:#2a2a2a;
  font-size:15px;
  line-height:1.7;
}

.vl24-product-reviews-box .star-rating{
  float:none !important;
  margin:0 0 8px !important;
}

/* Review form */
.vl24-product-reviews-box #review_form_wrapper{
  margin-top:20px;
}

.vl24-product-reviews-box #review_form{
  background:#fcfcfc;
  border:1px solid rgba(0,0,0,.07);
  border-radius:20px;
  padding:22px;
}

.vl24-product-reviews-box #review_form #respond{
  margin:0;
}

.vl24-product-reviews-box #reply-title,
.vl24-product-reviews-box .comment-reply-title{
  display:block;
  margin:0 0 14px;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
  color:#111;
}

.vl24-product-reviews-box .comment-form-rating,
.vl24-product-reviews-box .comment-form-comment,
.vl24-product-reviews-box .comment-form-author,
.vl24-product-reviews-box .comment-form-email{
  margin-bottom:14px;
}

.vl24-product-reviews-box label{
  display:block;
  margin-bottom:6px;
  font-size:14px;
  font-weight:600;
  color:#111;
}

.vl24-product-reviews-box input[type="text"],
.vl24-product-reviews-box input[type="email"],
.vl24-product-reviews-box textarea,
.vl24-product-reviews-box select{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  background:#fff;
  font-size:15px;
  color:#111;
  outline:none;
  transition:border-color .25s ease, box-shadow .25s ease;
}

.vl24-product-reviews-box textarea{
  min-height:140px;
  resize:vertical;
}

.vl24-product-reviews-box input[type="text"]:focus,
.vl24-product-reviews-box input[type="email"]:focus,
.vl24-product-reviews-box textarea:focus,
.vl24-product-reviews-box select:focus{
  border-color:#b8923e;
  box-shadow:0 0 0 4px rgba(184,146,62,.12);
}

.vl24-product-reviews-box .form-submit{
  margin:16px 0 0;
}

.vl24-product-reviews-box .submit{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px !important;
  border:none !important;
  border-radius:999px !important;
  background:#111 !important;
  color:#fff !important;
  font-weight:700 !important;
  font-size:15px !important;
  line-height:1 !important;
  cursor:pointer;
  transition:transform .2s ease, opacity .2s ease, box-shadow .25s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.14);
}

.vl24-product-reviews-box .submit:hover{
  transform:translateY(-1px);
  opacity:.95;
}

/* Rating select helper */
.vl24-product-reviews-box p.stars{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.vl24-product-reviews-box p.stars a{
  color:#b8923e;
}

/* Mobile */
@media (max-width: 768px){

  .vl24-product-reviews-section{
    padding:0 18px 44px;
    margin-top:38px;
  }

  .vl24-product-reviews-title{
    font-size:26px;
  }

  .vl24-product-reviews-box{
    padding:18px;
    border-radius:18px;
  }

  .vl24-product-reviews-box .comment-text{
    margin-left:0 !important;
    margin-top:12px;
  }

  .vl24-product-reviews-box ol.commentlist li.review .comment_container{
    padding:16px;
  }
}

/* Blog category boxes */
.vl24-blog-category-nav {
  padding: 52px 20px 34px;
  background:
    radial-gradient(circle at top right, rgba(198, 154, 61, 0.13), transparent 34%),
    linear-gradient(180deg, #f5f1e9 0%, #f7f7f7 100%);
}

.vl24-blog-category-nav__inner {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.vl24-blog-category-nav__head {
  max-width: 720px;
  margin-bottom: 26px;
}

.vl24-blog-category-nav__kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #c79a32;
}

.vl24-blog-category-nav__head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  color: #071126;
  letter-spacing: -0.035em;
}

.vl24-blog-category-nav__head p {
  margin: 0;
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #4e5666;
}

.vl24-blog-category-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vl24-blog-category-box {
  position: relative;
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 18px;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 38, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(145deg, #ffffff 0%, #fbfaf7 100%);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(7, 17, 38, 0.07);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.vl24-blog-category-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(199, 154, 50, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.vl24-blog-category-box::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: rgba(199, 154, 50, 0.13);
  border: 1px solid rgba(199, 154, 50, 0.18);
  transition: transform 0.22s ease, background 0.22s ease;
}

.vl24-blog-category-box:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 154, 50, 0.38);
  box-shadow: 0 20px 46px rgba(7, 17, 38, 0.12);
  background:
    linear-gradient(145deg, #ffffff 0%, #fff8e8 100%);
}

.vl24-blog-category-box:hover::before {
  opacity: 1;
}

.vl24-blog-category-box:hover::after {
  transform: scale(1.18);
  background: rgba(199, 154, 50, 0.18);
}

.vl24-blog-category-box__name {
  position: relative;
  z-index: 1;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  color: #071126;
  letter-spacing: -0.015em;
}

.vl24-blog-category-box__meta {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  color: #596273;
}

/* Latest posts heading */
.vl24-cat-posts {
  padding-top: 58px;
}

.vl24-cat-posts-head {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
}

.vl24-cat-posts-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #c79a32;
}

.vl24-cat-posts-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.06;
  font-weight: 900;
  color: #071126;
  letter-spacing: -0.035em;
}

.vl24-cat-posts-head p {
  margin: 0;
  max-width: 680px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #4e5666;
}

@media (max-width: 1050px) {
  .vl24-blog-category-nav__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .vl24-blog-category-nav {
    padding: 38px 14px 24px;
  }

  .vl24-blog-category-nav__head {
    margin-bottom: 20px;
  }

  .vl24-blog-category-nav__head h2,
  .vl24-cat-posts-head h2 {
    font-size: 30px;
  }

  .vl24-blog-category-nav__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .vl24-blog-category-box {
    min-height: 98px;
    padding: 16px;
    border-radius: 16px;
  }

  .vl24-blog-category-box__name {
    font-size: 15.5px;
  }

  .vl24-cat-posts {
    padding-top: 42px;
  }

  .vl24-cat-posts-head {
    width: calc(100% - 28px);
    margin-bottom: 22px;
  }
}

@media (max-width: 480px) {
  .vl24-blog-category-nav__grid {
    grid-template-columns: 1fr;
  }
}

.vl24-cat-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(199, 154, 50, 0.9);
  color: #071126;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.vl24-cat-overlay h2 {
  margin-top: 0;
}

/* Blog pagination */
.vl24-blog-pagination {
  width: min(1080px, calc(100% - 80px));
  margin: 46px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vl24-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(7, 17, 38, 0.1);
  background: #ffffff;
  color: #071126;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 17, 38, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.vl24-blog-pagination a.page-numbers:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 154, 50, 0.45);
  background: #fff8e8;
}

.vl24-blog-pagination .page-numbers.current {
  border-color: rgba(199, 154, 50, 0.75);
  background: #c79a32;
  color: #071126;
}

.vl24-blog-pagination .page-numbers.dots {
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 900px) {
  .vl24-blog-pagination {
    width: calc(100% - 28px);
    margin-top: 34px;
  }

  .vl24-blog-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
}

/* Floating Kinsta square ad */

.vl24-kinsta-float-ad,
.vl24-kinsta-float-ad *{
    box-sizing:border-box;
}

.vl24-kinsta-float-ad{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:99990;

    width:300px;
    max-width:calc(100vw - 24px);

    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(24px);
    transition:.3s;
}

.vl24-kinsta-float-ad.is-visible{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}

.vl24-kinsta-float-ad__link{
    display:block;
    line-height:0;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(0,0,0,.35);
}

.vl24-kinsta-float-ad__link img{
    display:block;
    width:100%;
    height:auto;
}

.vl24-kinsta-float-ad__close{
    position:absolute;
    top:-12px;
    right:-12px;
    z-index:10;

    width:34px;
    height:34px;

    border:0;
    border-radius:50%;
    background:#000;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

/* Tablet */

@media (max-width:768px){

    .vl24-kinsta-float-ad{
        width:260px;
        right:16px;
        bottom:16px;
    }

}

/* Mobile */

@media (max-width:480px){

    .vl24-kinsta-float-ad{

        left:12px;
        right:12px;
        bottom:12px;

        width:auto;
        max-width:none;
    }

}