 :root {
     --gold: #e0c297;
     --bg: #0a1215;
     --panel: #0c1418;
     --muted: #b5c0c7;
     --line: #1a2429;
     --rad: 18px;
 }

 .products-hero {
     height: 52dvh;
     min-height: 380px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
     border-bottom: 1px solid var(--line);
 }

 .products-hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background:
         radial-gradient(circle at 35% 45%, rgba(224, 194, 151, 0.14), transparent 46%),
         radial-gradient(circle at 65% 70%, rgba(224, 194, 151, 0.11), transparent 48%),
         radial-gradient(circle at 50% 20%, rgba(224, 194, 151, 0.06), transparent 52%);
     pointer-events: none;
     z-index: 1;
     animation: softGlow 20s ease-in-out infinite;
 }

 @keyframes softGlow {

     0%,
     100% {
         opacity: 0.72;
     }

     50% {
         opacity: 1;
     }
 }

 .tile-pattern {
     position: absolute;
     inset: 0;
     pointer-events: none;
     z-index: 0;
     overflow: hidden;
 }

 .tile {
     position: absolute;
     background: linear-gradient(120deg, rgba(224, 194, 151, 0.12), rgba(224, 194, 151, 0.04));
     border: 1px solid rgba(224, 194, 151, 0.22);
     border-radius: 8px;
     box-shadow:
         0 5px 18px rgba(224, 194, 151, 0.1),
         inset 0 1px 4px rgba(255, 255, 255, 0.08);
     opacity: 0;
     animation: tileParallax 22s infinite ease-in-out;
 }

 .tile:nth-child(1) {
     width: 126px;
     height: 168px;
     top: 15%;
     left: 5%;
     animation-delay: 0s;
 }

 .tile:nth-child(2) {
     width: 112px;
     height: 140px;
     top: 60%;
     left: 78%;
     animation-delay: 4s;
 }

 .tile:nth-child(3) {
     width: 98px;
     height: 154px;
     top: 75%;
     left: 18%;
     animation-delay: 8s;
 }

 .tile:nth-child(4) {
     width: 140px;
     height: 126px;
     top: 25%;
     left: 85%;
     animation-delay: 12s;
 }

 .tile:nth-child(5) {
     width: 119px;
     height: 147px;
     top: 50%;
     left: 52%;
     animation-delay: 2s;
 }

 .tile:nth-child(6) {
     width: 105px;
     height: 133px;
     top: 10%;
     left: 68%;
     animation-delay: 6s;
 }

 .tile:nth-child(7) {
     width: 91px;
     height: 119px;
     top: 80%;
     left: 40%;
     animation-delay: 10s;
 }

 @keyframes tileParallax {
     0% {
         transform: translate(0, 45px) scale(0.8) rotate(5deg);
         opacity: 0;
     }

     15% {
         opacity: 0.55;
     }

     50% {
         transform: translate(28px, -36px) scale(1.08) rotate(-8deg);
         opacity: 0.72;
         box-shadow:
             0 10px 28px rgba(224, 194, 151, 0.16),
             inset 0 2px 7px rgba(255, 255, 255, 0.12);
     }

     85% {
         opacity: 0.35;
     }

     100% {
         transform: translate(-20px, -74px) scale(0.8) rotate(5deg);
         opacity: 0;
     }
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 860px;
     padding: 0 18px;
 }

 .hero-eyebrow {
     color: var(--gold);
     font-weight: 800;
     letter-spacing: 0.18em;
     font-size: 12px;
     margin-bottom: 10px;
 }

 .hero-title {
     font-family: "Barlow", sans-serif;
     font-size: clamp(34px, 5.6vw, 68px);
     line-height: 1.05;
     margin: 0 0 14px;
     color: #fff;
 }

 .hero-desc {
     font-size: 15px;
     color: var(--muted);
     max-width: 620px;
     margin: 0 auto;
     line-height: 1.6;
     display: block;
 }

 .sizes-filter {
     padding: 56px 0 28px;
     background: var(--bg);
 }

 .sizes-wrapper {
     max-width: 1480px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     justify-content: center;
 }

 .size-btn {
     background: var(--panel);
     border: 1px solid var(--line);
     color: var(--muted);
     padding: 10px 20px;
     border-radius: 999px;
     text-decoration: none;
     font-weight: 600;
     font-size: 13px;
     transition: all 0.28s ease;
     min-width: 96px;
     text-align: center;
 }

 .size-btn:hover,
 .size-btn.active {
     background: var(--gold);
     color: #1a1a1a;
     border-color: var(--gold);
     transform: translateY(-2px);
     box-shadow: 0 8px 18px rgba(224, 194, 151, 0.18);
 }

 .products-section {
     padding: 28px 0 100px;
     background: var(--bg);
 }

 .products-grid {
     max-width: 1480px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: 30px;
 }

 .product-card {
     background: var(--panel);
     border: 1px solid var(--line);
     border-radius: var(--rad);
     overflow: hidden;
     transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
     box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
 }

 .product-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 22px 52px rgba(0, 0, 0, 0.45);
     border-color: rgba(224, 194, 151, 0.24);
 }

 .product-card img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     transition: transform 0.65s ease;
 }

 .product-card:hover img {
     transform: scale(1.05);
 }

 .product-info {
     padding: 20px 16px;
     text-align: center;
 }

 .product-info h3 {
     font-size: 17px;
     margin: 0 0 12px;
     color: #fff;
     line-height: 1.35;
     min-height: 46px;
 }

 .view-btn {
     background: var(--gold);
     color: #1a1a1a;
     padding: 8px 20px;
     border-radius: 999px;
     text-decoration: none;
     font-weight: 700;
     font-size: 13px;
     display: block;
     transition: all 0.28s ease;
 }

 .view-btn:hover {
     background: #fff;
     transform: translateY(-2px);
     box-shadow: 0 10px 24px rgba(224, 194, 151, 0.22);
 }

 .pagination-wrap {
     margin-top: 56px;
     display: flex;
     justify-content: center;
     padding: 0 20px;
 }

 .pagination-clean {
     display: flex;
     justify-content: center;
     width: 100%;
 }

 .pagination-clean__list {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     gap: 10px;
     margin: 0;
     padding: 0;
     list-style: none;
 }

 .pagination-clean__list li {
     list-style: none;
 }

 .pagination-clean__list a,
 .pagination-clean__list span {
     min-width: 46px;
     height: 46px;
     padding: 0 16px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 12px;
     border: 1px solid var(--line);
     background: var(--panel);
     color: var(--muted);
     text-decoration: none;
     font-weight: 700;
     font-size: 13px;
     line-height: 1;
     transition: all 0.25s ease;
 }

 .pagination-clean__list a:hover {
     background: var(--gold);
     border-color: var(--gold);
     color: #1a1a1a;
     transform: translateY(-2px);
     box-shadow: 0 10px 24px rgba(224, 194, 151, 0.16);
 }

 .pagination-clean__list .is-active span {
     background: var(--gold);
     border-color: var(--gold);
     color: #1a1a1a;
 }

 .pagination-clean__list .is-disabled span {
     opacity: 0.4;
     pointer-events: none;
     color: #7f8b91;
 }

 @media (max-width: 767px) {
     .pagination-wrap {
         margin-top: 40px;
         padding: 0 14px;
     }

     .pagination-clean__list {
         gap: 8px;
     }

     .pagination-clean__list a,
     .pagination-clean__list span {
         min-width: 40px;
         height: 40px;
         padding: 0 12px;
         font-size: 12px;
         border-radius: 10px;
     }
 }

 @media (max-width: 1199px) {
     .products-grid {
         grid-template-columns: repeat(3, minmax(0, 1fr));
     }
 }

 @media (max-width: 767px) {
     .products-hero {
         height: 46dvh;
         min-height: 320px;
     }

     .sizes-filter {
         padding: 40px 0 20px;
     }

     .products-section {
         padding: 24px 0 72px;
     }

     .products-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
         gap: 16px;
         padding: 0 14px;
     }

     .hero-title {
         font-size: 40px;
     }

     .hero-desc {
         font-size: 13px;
     }

     .product-card img {
         height: 180px;
     }

     .product-info {
         padding: 16px 12px;
     }

     .product-info h3 {
         font-size: 15px;
         min-height: 40px;
     }

     .view-btn {
         padding: 9px 16px;
         font-size: 12px;
     }

     .tile {
         animation-duration: 24s;
     }
 }

 @media (max-width: 479px) {
     .products-grid {
         grid-template-columns: 1fr;
     }
 }

 [data-reveal] {
     opacity: 0;
     transform: translateY(50px);
     transition: opacity 0.8s ease, transform 0.8s ease;
 }

 [data-reveal].revealed {
     opacity: 1;
     transform: translateY(0);
 }