 :root {
     --red: #e8192c;
     --blue: #1565C0;
     --yellow: #FFD600;
     --purple: #4A1DC8;
     --black: #111;
     --white: #fff;
     --green: #1a6b3c;
     --wa: #07b44f;
     ;
     --gray-bg: #f4f4f4;
 }

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

 body {
     font-family: 'Nunito', sans-serif;
     background: #fff;
     color: #111;
     overflow-x: hidden;
 }



 /* ─── NAVBAR ─── */
 nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 16px 60px;
     background: #fff;
     position: sticky;
     top: 0;
     z-index: 100;
     box-shadow: rgba(0, 0, 0, 0.042) 0px 18px 50px -10px;
 }

 /* Logo */
 nav .logo img {
     height: auto;
     width: 220px;
     /* slightly smaller on all screens */
 }

 /* Hamburger */
 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 8px;
     z-index: 101;
 }


 /* Close Button inside menu */
 .close-menu {
     display: none;
     position: absolute;
     top: 25px;
     right: 30px;
     font-size: 2rem;
     background: none;
     border: none;
     color: #222;
     cursor: pointer;
     z-index: 1001;
 }

 .hamburger span {
     width: 28px;
     height: 3px;
     background: #222;
     transition: all 0.3s ease;
 }

 /* Nav Links */
 .nav-links {
     display: flex;
     gap: 32px;
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .nav-links a {
     text-decoration: none;
     font-weight: 700;
     font-size: 1rem;
     color: #222;
     transition: color .2s;
 }

 .nav-links a.active,
 .nav-links a:hover {
     color: var(--blue);
 }

 /* Cart */
 .cart-wrap {
     position: relative;
     cursor: pointer;
 }

 .cart-wrap svg {
     width: 32px;
     height: 32px;
     stroke: #222;
     stroke-width: 2;
 }

 .cart-badge {
     position: absolute;
     top: -6px;
     right: -8px;
     background: var(--red);
     color: #fff;
     font-size: 0.65rem;
     font-weight: 800;
     border-radius: 50%;
     width: 18px;
     height: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
 }


 .item-price-sm {
     font-size: 0.8rem;
     font-weight: 700;
     color: var(--purple);
     margin-top: 4px;
 }

 /* ==================
 
 ==== MOBILE ====================== */
 @media (max-width: 768px) {
     .item-price-sm {
         font-size: 0.7rem !important;
     }

     .item-total {
         display: block !important;
         text-align: end !important;
         font-size: 0.9rem !important;
         font-weight: 900 !important;
     }
 }

 @media (max-width: 992px) {

     nav {
         padding: 16px 20px;
     }


     /* Logo */
     nav .logo img {
         height: auto;
         width: 160px;
     }


     .cart-wrap {
         margin-right: -6rem;

     }

     .cart-wrap svg {
         width: 23px;
         height: 28px;
         stroke: #222;
         font-weight: 100;
         stroke-width: 2;
     }

     .close-menu {
         display: block;
     }


     .hamburger {
         display: flex;
     }

     .nav-links {
         position: fixed;
         top: 0;
         left: -100%;
         width: 100%;
         height: 54vh;
         background: #fff;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         gap: 10px;
         font-size: 1.5rem;
         transition: left 0.4s ease;
         z-index: 1000;
         box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
     }

     .nav-links.active {
         left: 0;
     }

     /* Close hamburger animation */
     .hamburger.active span:nth-child(1) {
         transform: rotate(45deg) translate(6px, 6px);
     }

     .hamburger.active span:nth-child(2) {
         opacity: 0;
     }

     .hamburger.active span:nth-child(3) {
         transform: rotate(-45deg) translate(5px, -5px);
     }
 }








 /* ─── HERO CAROUSEL ─── */
 .hero-section {
     padding: 15px 12px 0;
 }

 .hero-carousel {
     border-radius: 20px;
     overflow: hidden;
     position: relative;
     background: #fff;
     min-height: 380px;
     /* Good height for mobile */
     display: flex;
     align-items: center;
 }

 .carousel-track {
     display: flex;
     width: 100%;
     transition: transform .5s ease;
 }

 .carousel-slide {
     min-width: 100%;
     display: flex;
     flex-direction: column;
     /* Stack on mobile */
     align-items: center;
     text-align: center;
     padding: 35px 20px;
     gap: 25px;
 }

 /* Text */
 .slide-text h1 {
     font-family: 'Bebas Neue', cursive;
     font-size: 3.6rem;
     line-height: 0.85;
     margin: 0;
     color: var(--black);
 }

 .slide-text h1.black {
     color: var(--white);
 }

 .slide-text p {
     font-weight: 800;
     font-size: 1.4rem;
     margin-top: 6px;
     color: #222;
 }

 /* Image */
 .slide-img {
     max-width: 240px;
     width: 100%;
 }

 .slide-img img {
     width: 100%;
     object-fit: contain;
 }

 /* Carousel Buttons */
 .carousel-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgb(255 255 255 / 12%);
     border: none;
     width: 48px;
     height: 48px;
     font-size: 1.8rem;
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10;
     border-radius: 50%;
     cursor: pointer;
 }

 .carousel-btn.prev {
     left: 12px;
 }

 .carousel-btn.next {
     right: 12px;
 }

 /* Dots */
 .carousel-dots {
     display: flex;
     justify-content: center;
     gap: 9px;
     padding: 16px 0 20px;
 }

 .dot {
     width: 11px;
     height: 11px;
     border-radius: 50%;
     border: 2px solid var(--purple);
     cursor: pointer;
 }

 .dot.active {
     background: var(--purple);
 }

 /* ─── SEARCH ─── */

 .search-wrap {
     display: flex;
     justify-content: center;
     padding: 0 20px;
 }

 .search-bar {
     display: flex;
     align-items: center;
     background: var(--purple);
     /* Vibrant red matching your image */
     border-radius: 9999px;
     /* Fully rounded pill shape */
     padding: 8px 12px;
     width: 100%;
     max-width: 520px;
     box-shadow: 0 4px 15px rgba(187, 57, 230, 0.3);
     transition: all 0.3s ease;
 }

 .search-bar:hover {
     box-shadow: 0 6px 20px rgba(178, 57, 230, 0.4);
     transform: translateY(-1px);
 }

 /* Magnifying Glass */
 .search-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 12px;
     flex-shrink: 0;
 }

 /* Input Field */
 .search-input {
     flex: 1;
     background: transparent;
     border: none;
     outline: none;
     color: white;
     font-size: 16px;
     padding: 4px 0;
 }

 .search-input::placeholder {
     color: rgba(255, 255, 255, 0.75);
 }

 /* Send Button */
 .search-send {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     background: rgba(255, 255, 255, 0.15);
     border-radius: 50%;
     margin-left: 8px;
     cursor: pointer;
     transition: all 0.2s ease;
     flex-shrink: 0;
 }

 .search-send:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: scale(1.05);
 }

 /* Responsive */
 @media (max-width: 480px) {
     .search-bar {
         padding: 6px 10px;
     }

     .search-input {
         font-size: 15px;
     }
 }


 /* ───────────────────────────── */
 /* RESPONSIVE IMPROVEMENTS       */
 /* ───────────────────────────── */

 @media (min-width: 576px) {

     .slide-text h1 {
         margin: 5px;
     }

 }

 @media (min-width: 576px) {
     .carousel-slide {
         padding: 40px 30px;
     }

     .slide-text h1 {
         font-size: 4.2rem;
     }
 }

 @media (max-width: 768px) {
     .carousel-slide {
         padding: 40px 50px;
         gap: 1px;
     }

     .hero-carousel {
         max-height: 10rem;
     }

     .slide-img img {
         width: 80%;
         margin-top: -2rem;
     }

     .slide-text p {
         margin-left: 0;
         font-size: 1.1rem;
     }

     .slide-text h1 {
         font-size: 3.1rem;
     }

     .slide-text {
         margin-top: 3rem;
     }
 }



 @media (min-width: 768px) {
     .hero-section {
         padding: 20px 40px 0;
     }

     .hero-carousel {
         min-height: 420px;
     }

     .carousel-slide {
         flex-direction: row;
         /* Back to side-by-side */
         text-align: left;
         justify-content: space-between;
         padding: 40px 50px;
         gap: 40px;
     }

     .slide-text h1 {
         font-size: 5.5rem;
     }

     .slide-text p {
         font-size: 1.9rem;
     }

     .slide-img {
         max-width: 300px;
     }
 }

 @media (min-width: 992px) {
     .hero-section {
         padding: 20px 60px 0;
     }

     .carousel-slide {
         padding: 40px 60px;
     }

     .slide-text h1 {
         font-size: 7rem;
         margin-left: 7rem;
     }

     .slide-text p {
         margin-left: 7rem;
         font-size: 2.2rem;
     }

     .slide-img {
         max-width: 340px;
     }
 }

























 /* ─── SECTION HEADINGS ─── */
 .section-heading {
     font-family: 'Bebas Neue', cursive;
     font-size: 2.8rem;
     margin-bottom: 24px;
 }

















 /* ─── PRODUCTS ─── */



 .shop-layout {
     display: flex;
     gap: 0;
     align-items: flex-start;
     font-family: var(--font-sans);
 }

 .sidebar {
     width: 220px;
     flex-shrink: 0;
     position: sticky;
     top: 0;
     max-height: 100vh;
     overflow-y: auto;
     border: 2px solid var(--purple);
     border-radius: 8px;
     padding: 14px;
     background: var(--color-background-primary);
     margin: 18px 15px 18px 8px;
     box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
 }

 .sidebar-search-btn {
     display: block;
     width: 100%;
     background: var(--green);
     color: #fff;
     border: none;
     border-radius: 6px;
     padding: 9px 12px;
     font-size: 13px;
     font-weight: 600;
     cursor: pointer;
     text-align: left;
     margin-bottom: 12px;
 }

 .sidebar-category {
     font-size: 12.5px;
     color: var(--color-text-primary);
     padding: 4px 0;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
 }

 .sidebar-category span.count {
     color: var(--color-text-secondary);
     font-size: 12px;
 }

 .sidebar-divider {
     border: none;
     border-top: 0.5px solid var(--color-border-tertiary);
     margin: 10px 0;
 }

 .sidebar-label {
     font-size: 12px;
     font-weight: 500;
     color: var(--color-text-secondary);
     margin-bottom: 6px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .sidebar-label span.dash {
     font-weight: 400;
     font-size: 16px;
     cursor: pointer;
 }

 .price-range {
     display: flex;
     gap: 6px;
     align-items: center;
     margin-bottom: 10px;
 }

 .price-range input {
     width: 72px;
     font-size: 12px;
     padding: 5px 8px;
     border: 0.5px solid var(--color-border-secondary);
     border-radius: 6px;
     background: var(--color-background-secondary);
     color: var(--color-text-primary);
     border: 1px solid rgb(214, 213, 213);
     padding: 12px;
 }

 .price-radio {
     display: flex;
     align-items: center;
     gap: 7px;
     font-size: 12.5px;
     margin-bottom: 5px;
     cursor: pointer;
     color: var(--color-text-primary);
 }

 .price-radio input[type=radio] {
     accent-color: var(--green);
     width: 14px;
     height: 14px;
     cursor: pointer;
 }

 .sidebar-actions {
     display: flex;
     justify-content: space-between;
     margin-top: 10px;
     font-size: 12px;
 }

 .sidebar-actions span {
     cursor: pointer;
     font-weight: 600;
 }

 .sidebar-actions .clear {
     color: var(--color-text-secondary);
 }

 .sidebar-actions .save {
     color: var(--green);
 }

 .products-main {
     flex: 1;
     min-width: 0;
     padding: 8px 8px 8px 12px;
 }

 .section-heading {
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 14px;
     color: var(--color-text-primary);
 }

 .products-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 10px;
 }

 .product-card {
     background: var(--gray-bg);
     border-radius: 10px;
     overflow: hidden;
     cursor: pointer;
     position: relative;
     font-size: 12px;
     text-decoration: none;
     color: inherit;
     display: block;
 }

 .product-img-wrap {
     width: 100%;
     aspect-ratio: 1;
     background: #e8e8e8;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     color: #aaa;
 }

 .badge {
     position: absolute;
     top: 7px;
     right: 7px;
     font-size: 10px;
     font-weight: 800;
     padding: 2px 6px;
     border-radius: 4px;
     z-index: 1;
 }

 .badge-new {
     background: #111;
     color: #fff;
 }

 .badge-48h {
     background: var(--purple);
     color: #fff;
 }

 .product-info {
     padding: 8px 9px 10px;
 }

 .product-name {
     font-weight: 700;
     font-size: 11px;
     color: var(--color-text-primary);
     margin-bottom: 2px;
     line-height: 1.3;
 }

 .product-info .product-name {
     font-weight: 700;
     font-size: 18px;
     color: var(--color-text-primary);
     margin-bottom: 2px;
     line-height: 1.3;
 }




 .product-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
 }

 .product-img-wrap {
     width: 100%;
     aspect-ratio: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #eee;
 }

 .product-img-wrap img {
     width: 90%;
     height: 90%;
     object-fit: contain;
 }




 .products-section a {
     font-size: .8rem;
     text-decoration: none !important;
 }

 .product-price {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--purple);
 }

 .product-info .product-price {
     font-size: 1rem;
     font-weight: 900;
     color: var(--black);
 }



 .filter-select {
     width: 100%;
     padding: 10px 12px;
     margin-bottom: 12px;
     border: 1px solid #ddd;
     border-radius: 8px;
     background: #fff;
     font-size: 14px;
     color: #333;
     outline: none;
     cursor: pointer;
 }

 .filter-select:focus {
     border-color: var(--green);
 }


 /* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */

 /* Mobile Filter Bar */
 @media (max-width: 768px) {

     .sidebar {
         width: 100%;
         display: flex;
         align-items: center;
         gap: 10px;
         overflow-x: auto;
         white-space: nowrap;
         padding: 10px;
         margin: 0;
         position: static;
     }

     .sidebar::-webkit-scrollbar {
         height: 4px;
     }

     .sidebar-search-btn,
     .sidebar-label,
     .sidebar-actions {
         display: none;
     }

     .filter-select,
     .price-range,
     .price-radio {
         flex-shrink: 0;
         margin: 0;
     }

     .filter-select {
         width: 150px;
         min-width: 150px;
     }

     .price-range {
         display: flex;
         align-items: center;
         gap: 5px;
     }

     .price-range input {
         width: 80px;
     }

     .price-radio {
         display: flex;
         align-items: center;
         gap: 5px;
         padding: 8px 12px;
         background: #f5f5f5;
         border-radius: 20px;
         font-size: 13px;
     }
 }






 @media (max-width: 991px) {

     .shop-layout {
         flex-direction: column;
         gap: 20px;
     }

     .sidebar {
         width: 100%;
         max-height: none;
         position: static;
         margin: 0;
         box-sizing: border-box;
     }

     .products-main {
         width: 100%;
         padding: 0;
     }

     .section-heading {
         font-size: 1.5rem;
         text-align: center;
     }
 }


 /* Tablets */
 @media (max-width: 991px) {
     .products-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 15px;
     }
 }


 /* Large phones */
 @media (max-width: 767px) {
     .products-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 12px;
     }

     .product-price {
         font-size: 1rem;
     }

     .product-name {
         font-size: 12px;
     }

     .search-bar {
         width: 100%;
     }

     .price-range input {
         width: 100%;
         border: 1px solid rgb(214, 213, 213);
         padding: 12px;
     }
 }


 /* Small phones */
 @media (max-width: 480px) {

     .container {
         padding-left: 10px;
         padding-right: 10px;
     }

     .products-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
     }

     .product-info {
         padding: 6px;
     }

     .product-price {
         font-size: 0.95rem;
     }

     .product-name {
         font-size: 11px;
         line-height: 1.3;
     }

     .sidebar {
         padding: 12px;
     }

     .sidebar-actions {
         flex-direction: column;
         gap: 10px;
         align-items: center;
     }
 }



























 /* ─── SHOPPING FOR SECTION ─── */

 .shopping-section {
     background: var(--purple);
     margin: 20px 0;
     padding: 50px 60px;
     position: relative;
     overflow: hidden;
 }

 .shopping-left img {
     width: 100%;
 }

 .yellow-panel img {
     width: auto;
     height: 11rem;
 }

 .shopping-section::before,
 .shopping-section::after {
     content: '';
     position: absolute;
     border-radius: 50%;
     border: 3px solid rgba(255, 255, 255, 0.2);
 }

 .shopping-section::before {
     width: 200px;
     height: 200px;
     bottom: -60px;
     left: -60px;
 }

 .shopping-section::after {
     width: 150px;
     height: 150px;
     top: -40px;
     right: 200px;
 }

 .shopping-inner {
     display: grid;
     grid-template-columns: 1fr auto;
     gap: 30px;
     align-items: center;
 }

 /* LEFT SIDE */

 .shopping-left h2 {
     color: #fff;
     font-weight: 800;
     font-size: 2.5rem;
     margin-left: 5rem;
     margin-bottom: 20px;
 }

 .category-cards {
     margin-left: 5rem;
     display: flex;
     gap: 12px;
     margin-bottom: 30px;
     flex-wrap: wrap;
 }

 .cat-card {
     width: 185px;
     height: 220px;
     border-radius: 12px;
     overflow: hidden;
     position: relative;
     cursor: pointer;
     background: linear-gradient(160deg, #8855dd, #6633bb);
     transition: transform .2s;
 }

 .cat-card:hover {
     transform: scale(1.03);
 }

 .cat-card-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.8;
 }

 .cat-label {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: #fff;
     color: #000;
     font-weight: 900;
     font-size: 1rem;
     text-align: center;
     padding: 8px 0;
     letter-spacing: 1px;
 }

 .cat-card-placeholder {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .adventure-text h3 {
     font-family: 'Dancing Script', cursive;
     font-size: 3.8rem;
     margin-left: 5rem;
     color: #fff;
     line-height: 1.1;
 }

 .adventure-text h3 span {
     color: var(--yellow);
 }

 /* RIGHT PANEL */

 .yellow-panel {
     background: var(--yellow);
     margin-right: 4rem;
     border-radius: 16px;
     padding: 20px;
     width: 320px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-between;
     position: relative;
     z-index: 2;
     min-height: 320px;
 }

 .yellow-panel .elegant-text {
     font-family: 'Bebas Neue', cursive;
     font-size: 3rem;
     color: #000;
     text-align: center;
     line-height: 1.1;
     -webkit-text-stroke: 2px #000;
     paint-order: stroke fill;
 }

 .shoe-emoji-row {
     display: flex;
     gap: 8px;
     font-size: 2.2rem;
     margin-top: 10px;
 }

 .pink-shoe-img,
 .green-shoe-img {
     width: 90px;
     height: 60px;
     object-fit: contain;
 }

 /* ─── TABLET ─── */

 @media (max-width: 992px) {

     .shopping-section {
         padding: 40px 30px;
     }

     .shopping-inner {
         grid-template-columns: 1fr;
     }

     .shopping-left h2,
     .category-cards,
     .adventure-text h3 {
         margin-left: 0;
     }

     .yellow-panel {
         margin: 0 auto;
         width: 100%;
         max-width: 350px;
     }

     .category-cards {
         justify-content: center;
     }

     .shopping-left h2 {
         text-align: center;
     }

     .adventure-text h3 {
         text-align: center;
     }
 }

 /* ─── MOBILE ─── */

 @media (max-width: 576px) {

     .shopping-section {
         padding: 35px 20px;
     }

     .shopping-left h2 {
         font-size: 2rem;
         text-align: center;
     }

     .category-cards {
         flex-direction: column;
         align-items: center;
         gap: 18px;
     }

     .cat-card {
         width: 100%;
         max-width: 280px;
         height: 320px;
     }

     .adventure-text h3 {
         font-size: 2.5rem;
         text-align: center;
         margin-top: 10px;
     }

     .yellow-panel {
         width: 100%;
         max-width: 100%;
         min-height: auto;
         padding: 25px 15px;
     }

     .yellow-panel img {
         height: 8rem;
     }

     .yellow-panel .elegant-text {
         font-size: 2.2rem;
     }

     .shoe-emoji-row img {
         max-width: 80px;
     }

     .shopping-section::after {
         right: -40px;
     }
 }


























 /* ─── INSTA REELS ─── */
 .reels-section {
     padding: 40px 20px;
 }

 .reels-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
     max-width: 1200px;
     margin: 0 auto;
 }

 /* Reel Card */
 .reel-card {
     border-radius: 18px;
     overflow: hidden;
     position: relative;
     aspect-ratio: 9 / 16;
     /* Better for Instagram Reels (vertical) */
     cursor: pointer;
     background: #c8a000;
     transition: transform 0.2s, box-shadow 0.2s;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .reel-card:hover {
     transform: scale(1.03);
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
 }

 .reel-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(180, 120, 0, 0.75) 0%, transparent 55%);
     pointer-events: none;
 }

 .reel-bg {
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: sepia(1) saturate(3) hue-rotate(-10deg) brightness(0.85);
 }

 /* Play Button */
 .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 64px;
     height: 64px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.92);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s;
     z-index: 10;
 }

 .reel-card:hover .play-btn {
     transform: translate(-50%, -50%) scale(1.12);
     background: #fff;
 }

 .play-btn svg {
     width: 28px;
     height: 28px;
     fill: var(--purple);
     margin-left: 4px;
 }

 /* ==================== RESPONSIVE ==================== */

 /* Large screens */
 @media (min-width: 992px) {
     .reels-section {
         padding: 60px 40px;
     }
 }

 /* Tablet */
 @media (max-width: 991px) {
     .reels-grid {
         grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
         gap: 20px;
     }
 }

 /* Mobile */
 @media (max-width: 576px) {
     .reels-section {
         padding: 30px 15px;
     }

     .reels-grid {
         grid-template-columns: 1fr;
         gap: 18px;
     }

     .reel-card {
         aspect-ratio: 9 / 16;
         border-radius: 14px;
     }

     .play-btn {
         width: 56px;
         height: 56px;
     }

     .play-btn svg {
         width: 24px;
         height: 24px;
     }
 }








 /* ─── SOCIALS SECTION ─── */
 .socials-section {
     padding: 40px 15px;
 }

 .section-heading {
     font-size: 2.4rem;
     text-align: center;
     margin-bottom: 30px;
 }

 .socials-grid {
     display: grid;
     grid-template-columns: repeat(1, 1fr);
     /* 1 column on mobile */
     gap: 20px;
 }

 .social-card {
     border-radius: 18px;
     padding: 32px 24px;
     position: relative;
     min-height: 220px;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .social-icon {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.4rem;
     margin: -20px auto 20px;
     flex-shrink: 0;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 /* Card Specific Styles */
 .card-green {
     background: var(--green);
     color: #fff;
 }

 .card-yellow {
     background: var(--yellow);
     color: #111;
 }

 .social-card h3 {
     font-weight: 900;
     font-size: 1.85rem;
     line-height: 1.1;
     margin: 10px 0 15px;
 }

 .rep-entry {
     margin-bottom: 16px;
     width: 100%;
 }

 .rep-entry .rep-label {
     font-size: 0.9rem;
     font-weight: 700;
     color: #333;
 }

 .rep-entry .rep-num {
     font-size: 1.85rem;
     font-weight: 900;
     color: #111;
 }

 .social-handle {
     margin-bottom: 16px;
     width: 100%;
 }

 .social-handle .platform {
     font-size: 0.9rem;
     color: #ddd;
     font-weight: 700;
 }

 .social-handle .handle {
     font-size: 1.75rem;
     font-weight: 800;
     color: var(--yellow);
     line-height: 1.1;
 }

 /* ─── PROMO BANNER ─── */
 .promo-section {
     padding: 20px 15px;
 }

 .promo-banner {
     background: linear-gradient(135deg, #111, #222);
     border-radius: 20px;
     overflow: hidden;
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 40px 20px;
     text-align: center;
     min-height: 320px;
 }

 .promo-shoes img {
     width: 100%;
     max-width: 260px;
     height: auto;
     object-fit: contain;
 }

 .promo-text h2 {
     font-family: 'Bebas Neue', cursive;
     font-size: 2.6rem;
     line-height: 1.05;
     color: #fff;
     margin: 20px 0 0;
 }

 .promo-text .yellow {
     color: #ffeb3b;
 }

 /* ─── CHAT BUBBLE ─── */
 .chat-bubble {
     position: fixed;
     bottom: 20px;
     right: 20px;
     width: 62px;
     height: 62px;
     background: var(--wa);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
     cursor: pointer;
     z-index: 1000;
     transition: transform 0.3s;
 }

 .chat-bubble:hover {
     transform: scale(1.1);
 }

 .chat-bubble svg {
     width: 30px;
     height: 30px;
     fill: white;
 }

 /* ───────────────────────────── */
 /*   RESPONSIVE IMPROVEMENTS     */
 /* ───────────────────────────── */

 @media (min-width: 576px) {
     .socials-grid {
         grid-template-columns: repeat(2, 1fr);
         /* 2 columns on small tablets */
         gap: 22px;
     }


 }

 @media (min-width: 768px) {
     .socials-section {
         padding: 50px 40px;
     }

     .socials-grid {
         grid-template-columns: repeat(3, 1fr);
         /* 3 columns on tablet+ */
         gap: 26px;
     }

     .social-card {
         padding: 35px 28px;
         min-height: 240px;
         text-align: left;
         align-items: flex-start;
     }

     .social-icon {
         margin: -40px 0 25px;
     }

     .promo-section {
         padding: 30px 40px;
     }

     .promo-banner {
         flex-direction: row;
         justify-content: space-between;
         text-align: left;
         padding: 0 40px;
         min-height: 280px;
     }

     .promo-text {
         padding-right: 0 !important;
     }

     .promo-text h2 {
         font-size: 3.4rem;
     }
 }

 @media (min-width: 992px) {
     .socials-section {
         padding: 60px 60px;
     }

     .social-card h3 {
         font-size: 2.2rem;
     }

     .promo-banner {
         padding: 0 80px;
     }

     .promo-text h2 {
         font-size: 4rem;
     }

     .promo-shoes img {
         max-width: 240px;
     }
 }


 @media (max-width: 992px) {

     .social-card .social-icon {
         display: none;
     }

 }








 /* ─── PROMO BANNER ─── */
 .promo-section {
     padding: 30px 15px 20px;
 }

 .promo-banner {
     background: var(--black);
     border-radius: 20px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     /* Stack on mobile */
     align-items: center;
     justify-content: center;
     position: relative;
     min-height: 320px;
     padding: 40px 20px;
     text-align: center;
     margin-bottom: -3rem;
     z-index: 0;

 }

 .promo-shoes {
     order: -1;
     /* Image on top on mobile */
     margin-bottom: 20px;
 }

 .promo-shoes img {
     position: sticky;
     width: 100%;
     max-width: 420px !important;
     height: auto;
     object-fit: contain;
     z-index: 2;
     margin-bottom: -10rem;
 }

 /* Text */
 .promo-text h2 {
     font-family: "Playwrite NO", cursive;
     font-size: 2.4rem;
     line-height: 1.05;
     align-items: end;
     justify-content: end;
     text-align: end;
     margin: 0;
     color: #fff;
 }

 .promo-text h2 .yellow {
     color: var(--yellow);
 }

 .promo-text h2 .white {
     color: #fff;
 }

 /* ───────────────────────────── */
 /*   RESPONSIVE IMPROVEMENTS     */
 /* ───────────────────────────── */

 @media (min-width: 576px) {
     .promo-banner {
         min-height: 280px;
         padding: 30px 40px;
     }

     .promo-text h2 {
         font-size: 2.8rem;
         margin-left: 35rem;
     }
 }



 @media (max-width: 768px) {
     .promo-shoes img {
         margin-top: -10rem !important;
     }
 }

 @media (min-width: 768px) {
     .promo-section {
         padding: 40px 40px 20px;
     }

     .promo-banner {
         flex-direction: row;
         /* Side by side on tablet+ */
         justify-content: space-between;
         text-align: left;
         padding: 0 40px 0 0;
         min-height: 260px;
     }

     .promo-shoes {
         order: 0;
         margin-bottom: 0;
     }

     .promo-shoes img {
         max-width: 280px;
         margin-left: 30px;

     }

     .promo-text {
         padding-right: 60px;
     }

     .promo-text h2 {
         font-size: 3.4rem;
     }
 }

 @media (min-width: 992px) {
     .promo-section {
         padding: 40px 60px 20px;
     }

     .promo-banner {
         padding: 0 100px 0 0;
         min-height: 255px;
     }

     .promo-shoes img {
         max-width: 320px;
         margin-left: 60px;
     }

     .promo-text h2 {
         font-size: 3.8rem;
         margin-top: 0rem;

     }
 }










 /* ─── FOOTER ─── */

 footer {
     background: var(--purple);
     padding: 60px 60px 30px !important;
     z-index: -1;
     position: sticky;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr 1fr;
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-brand .logo-text {
     font-family: 'Bebas Neue', cursive;
     font-size: 2rem;
     color: #fff;
     letter-spacing: 2px;
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 12px;
 }

 .footer-brand p {
     color: rgba(255, 255, 255, 0.8);
     font-size: .9rem;
     line-height: 1.5;
     margin-bottom: 20px;
 }

 .footer-brand .logo img {
     height: auto;
     width: 300px;
 }

 .footer-socials {
     display: flex;
     gap: 10px;
 }

 .footer-socials i {
     color: #000;
 }

 .social-icon-btn {
     width: 38px;
     height: 38px;
     border-radius: 8px;
     background: var(--white);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     font-size: 1.1rem;
     transition: transform .2s;
 }


 .footer-socials a {
     text-decoration: none;
 }

 .social-icon-btn:hover {
     transform: scale(1.1);
 }

 .footer-col h4 {
     color: var(--yellow);
     font-weight: 800;
     font-size: 1rem;
     margin-bottom: 16px;
 }

 .footer-col ul {
     list-style: none;
     padding-left: 0;
 }

 .footer-col ul li {
     margin-bottom: 10px;
 }

 .footer-col ul li a {
     color: rgba(255, 255, 255, 0.85);
     text-decoration: none;
     font-size: .9rem;
     transition: color .2s;
 }

 .footer-col ul li a:hover {
     color: var(--yellow);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     padding-top: 20px;
     text-align: center;
     color: rgba(255, 255, 255, 0.5);
     font-size: .82rem;
 }

 /* Chat bubble */
 .chat-bubble {
     position: fixed;
     bottom: 28px;
     right: 28px;
     z-index: 999;
     width: 50px;
     height: 50px;
     background: var(--wa);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 6px 20px rgba(74, 29, 200, 0.4);
     transition: transform .2s;
 }

 .chat-bubble:hover {
     transform: scale(1.1);
 }

 .chat-bubble svg {
     width: 24px;
     height: 24px;
     fill: #fff;
 }

 /* animations */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(24px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .fade-up {
     animation: fadeUp .6s ease forwards;
 }

 .delay-1 {
     animation-delay: .1s;
     opacity: 0;
 }

 .delay-2 {
     animation-delay: .2s;
     opacity: 0;
 }

 .delay-3 {
     animation-delay: .3s;
     opacity: 0;
 }


























 /* ------------------------------------------
                PRODUCT DETAILS
 --------------------------------------------*/


 /* ─── BREADCRUMB ─── */

 .breadcrumb {
     padding: 14px 60px;
     font-size: .85rem;
     color: var(--text-muted);
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .breadcrumb a {
     color: var(--text-muted);
     text-decoration: none;
 }

 .breadcrumb a:hover {
     color: var(--blue);
 }

 .breadcrumb span {
     color: #111;
     font-weight: 700;
 }



































 /* ─── PRODUCT LAYOUT ─── */
 .product-page {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     padding: 10px 60px 60px;
     max-width: 1300px;
     margin: 0 auto;
 }

 /* ─── LEFT: IMAGES ─── */
 .product-images {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .main-img-wrap {
     background: var(--gray-bg);
     border-radius: 18px;
     overflow: hidden;
     aspect-ratio: 4/3;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     cursor: zoom-in;
 }

 .main-img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     padding: 20px;
 }

 .main-img-placeholder {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     height: 100%;
     font-size: 11rem;
     user-select: none;
     background: linear-gradient(135deg, #e8e8e0, #d4d4c8);
 }

 .zoom-hint {
     position: absolute;
     bottom: 12px;
     right: 14px;
     font-size: .72rem;
     color: var(--text-muted);
     background: rgba(255, 255, 255, 0.8);
     padding: 3px 10px;
     border-radius: 20px;
 }

 .thumbnails {
     display: flex;
     gap: 10px;
 }

 .thumb {
     width: 110px;
     flex-shrink: 0;
     aspect-ratio: 1;
     background: var(--gray-bg);
     border-radius: 12px;
     overflow: hidden;
     cursor: pointer;
     border: 2.5px solid transparent;
     transition: border-color .2s, transform .15s;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .thumb:hover {
     transform: scale(1.04);
     border-color: #bbb;
 }

 .thumb.active {
     border-color: var(--black);
 }

 .thumb-emoji {
     font-size: 2.2rem;
 }

 .thumb img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     padding: 8px;
 }

 /* ─── RIGHT: INFO ─── */
 .product-info {
     display: flex;
     flex-direction: column;
     gap: 0;
     padding-top: 10px;
 }

 .product-title {
     font-size: 2rem;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 14px;
 }



 /* Color selector */
 .selector-label {
     font-size: .9rem;
     color: #444;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .color-swatches {
     display: flex;
     gap: 10px;
     margin-bottom: 22px;
 }

 .swatch {
     width: 72px;
     height: 72px;
     border-radius: 10px;
     overflow: hidden;
     border: 2.5px solid transparent;
     cursor: pointer;
     transition: border-color .2s, transform .15s;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #f0ebe0;
 }

 .swatch:hover {
     transform: scale(1.05);
 }

 .swatch.active {
     border-color: var(--black);
 }

 .swatch-emoji {
     font-size: 2rem;
 }

 .swatch img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     padding: 4px;
 }

 /* Size selector */
 .size-grid {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
     margin-bottom: 18px;
 }

 .size-btn {
     padding: 10px 20px;
     border: 2px solid var(--border);
     border-radius: 8px;
     font-family: 'Nunito', sans-serif;
     font-weight: 800;
     font-size: 1rem;
     cursor: pointer;
     background: #efefef;
     transition: background .15s, border-color .15s, color .15s;
 }

 .size-btn:hover {
     border-color: #888;
 }

 .size-btn.active {
     background: var(--black);
     color: #fff;
     border-color: var(--black);
 }

 .size-btn.sold-out {
     color: #ccc;
     border-color: #eee;
     cursor: not-allowed;
     position: relative;
 }

 .size-btn.sold-out::after {
     content: '';
     position: absolute;
     inset: 0;
     background: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.05) 5px, rgba(0, 0, 0, 0.05) 6px);
     border-radius: 6px;
 }

 /* Going fast */
 .going-fast {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: .85rem;
     color: #333;
     font-weight: 700;
     margin-bottom: 20px;
     background: #fff8f0;
     border-radius: 10px;
     padding: 10px 14px;
     border-left: 3px solid #f97316;
 }

 .going-fast .fire {
     font-size: 1rem;
 }

 /* Add to cart */
 .cart-row {
     display: flex;
     gap: 12px;
     margin-bottom: 28px;
 }

 .add-to-cart {
     flex: 1;
     padding: 16px;
     background: var(--black);
     color: #fff;
     border: none;
     border-radius: 12px;
     font-family: 'Nunito', sans-serif;
     font-size: 1.05rem;
     font-weight: 800;
     cursor: pointer;
     letter-spacing: .5px;
     transition: background .2s, transform .15s;
 }

 .add-to-cart:hover {
     background: #333;
     transform: translateY(-1px);
 }

 .add-to-cart:active {
     transform: translateY(0);
 }

 .wishlist-btn {
     width: 54px;
     height: 54px;
     border: 2px solid var(--border);
     border-radius: 12px;
     background: #fff;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     transition: border-color .2s, transform .15s;
 }

 .wishlist-btn:hover {
     border-color: var(--red);
     transform: scale(1.05);
 }

 .wishlist-btn.liked {
     color: var(--red);
     border-color: var(--red);
 }

 /* ─── ACCORDIONS ─── */
 .accordion {
     border-top: 1px solid var(--border);
 }

 .accordion-item {
     border-bottom: 1px solid var(--border);
     background-color: #ffffff;
     padding-left: 20px;
     padding-right: 20px;
     border: 0.1rem solid rgb(181, 181, 181);
     border-radius: 5px;
     margin-left: 0px;
     margin-right: 0px;
     margin-bottom: 10px;
 }

 .accordion-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 18px 0;
     cursor: pointer;
     user-select: none;
 }

 .accordion-header h3 {
     font-size: .82rem;
     font-weight: 800;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: #555;
 }

 .accordion-icon {
     font-size: 1.2rem;
     color: #888;
     transition: transform .25s;
     font-weight: 300;
     line-height: 1;
 }

 .accordion-icon.open {
     transform: rotate(45deg);
 }

 .accordion-body {
     padding: 0;
     overflow: hidden;
     max-height: 0;
     transition: max-height .4s ease, padding .3s;
 }

 .accordion-body.open {
     max-height: 600px;
     padding-bottom: 20px;
 }

 .spec-block {
     margin-bottom: 18px;
 }

 .spec-block h4 {
     font-weight: 800;
     font-size: .95rem;
     margin-bottom: 6px;
     color: #111;
 }

 .spec-block p {
     font-size: .88rem;
     color: #555;
     line-height: 1.7;
 }

 .spec-block p strong {
     font-weight: 700;
     color: #333;
 }

 .spec-list {
     font-size: .88rem;
     color: #555;
     line-height: 2;
 }

 /* ─── SELECTED FOR YOU ─── */
 .recommendations {
     padding: 50px 60px;
     border-top: 1px solid var(--border);
 }

 .section-heading {
     font-family: 'Bebas Neue', cursive;
     font-size: 2.6rem;
     margin-bottom: 24px;
 }

 .reco-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 16px;
 }

 .reco-card {
     border-radius: 14px;
     overflow: hidden;
     background: #f8f8f8;
     cursor: pointer;
     transition: transform .2s, box-shadow .2s;
     position: relative;
 }

 .reco-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
 }

 .reco-img {
     width: 100%;
     aspect-ratio: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3.5rem;
     position: relative;
 }

 .reco-img.pink-bg {
     background: linear-gradient(135deg, #fce4ec, #f8bbd0);
 }

 .reco-img.blue-bg {
     background: linear-gradient(135deg, #e3f2fd, #bbdefb);
 }

 .reco-img.gray-bg {
     background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
 }

 .badge {
     position: absolute;
     top: 10px;
     right: 10px;
     font-size: .62rem;
     font-weight: 800;
     padding: 3px 7px;
     border-radius: 4px;
 }

 .badge-new {
     background: var(--black);
     color: #fff;
 }

 .badge-48h {
     background: var(--purple);
     color: #fff;
 }

 .reco-info {
     padding: 10px 12px 14px;
 }

 .reco-name {
     font-weight: 700;
     font-size: .8rem;
     color: #222;
     margin-bottom: 3px;
     line-height: 1.3;
 }

 .reco-price {
     font-size: .82rem;
     color: #555;
     font-weight: 700;
 }



 /* ─────────────────────────────
   PRODUCT PAGE RESPONSIVE
───────────────────────────── */

 /* ─── LAYOUT ─── */
 .product-page {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     padding: 10px 60px 60px;
     max-width: 1300px;
     margin: 0 auto;
 }

 /* ─────────────────────────────
   TABLET
───────────────────────────── */
 @media (max-width: 991px) {

     .product-page {
         grid-template-columns: 1fr;
         padding: 10px 40px 50px;
         gap: 30px;
     }

     .product-title {
         font-size: 1.8rem;
     }

     .thumbnails {
         flex-wrap: wrap;
     }

     .thumb {
         width: 90px;
     }

     .swatch {
         width: 62px;
         height: 62px;
     }

     .reco-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 /* ─────────────────────────────
   MOBILE
───────────────────────────── */
 @media (max-width: 600px) {

     /* PAGE SPACING */
     .product-page {
         padding: 10px 18px 40px;
         gap: 22px;
     }

     /* BREADCRUMB */
     .breadcrumb {
         font-size: .75rem;
         padding: 10px 18px;
         overflow-x: auto;
         white-space: nowrap;
     }

     /* IMAGES */
     .main-img-wrap {
         aspect-ratio: 1/1;
     }

     .main-img-placeholder {
         font-size: 6rem;
     }

     .thumbnails {
         gap: 8px;
         overflow-x: auto;
         padding-bottom: 5px;
     }

     .thumb {
         width: 70px;
         min-width: 70px;
     }

     /* PRODUCT INFO */
     .product-title {
         font-size: 1.5rem;
         line-height: 1.3;
     }

     .product-price {
         font-size: 1.1rem;
     }

     /* COLOR */
     .color-swatches {
         gap: 8px;
     }

     .swatch {
         width: 55px;
         height: 55px;
     }

     /* SIZE */
     .size-grid {
         gap: 8px;
     }

     .size-btn {
         padding: 9px 14px;
         font-size: .9rem;
     }

     /* CART */
     .cart-row {
         flex-direction: column;
     }

     .add-to-cart {
         width: 100%;
         padding: 14px;
         font-size: 1rem;
     }

     .wishlist-btn {
         width: 100%;
         height: 50px;
     }

     /* ACCORDION */
     .accordion-item {
         padding-left: 14px;
         padding-right: 14px;
     }

     .accordion-header h3 {
         font-size: .75rem;
     }

     .spec-block p,
     .spec-list {
         font-size: .82rem;
     }

     /* RECOMMENDATIONS */
     .recommendations {
         padding: 40px 18px;
     }

     .section-heading {
         font-size: 2rem;
         text-align: center;
     }

     .reco-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 12px;
     }

     .reco-name {
         font-size: .75rem;
     }

     .reco-price {
         font-size: .78rem;
     }
 }

 /* ─────────────────────────────
   SMALL MOBILE (optional extra polish)
───────────────────────────── */
 @media (max-width: 400px) {

     .thumb {
         width: 60px;
     }

     .swatch {
         width: 50px;
         height: 50px;
     }

     .product-title {
         font-size: 1.3rem;
     }

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









 /* ─── FOOTER ─── */
 footer {
     background: var(--purple);
     padding: 50px 60px 30px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr 1fr;
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-brand .logo-text {
     font-family: 'Bebas Neue', cursive;
     font-size: 2rem;
     color: #fff;
     letter-spacing: 2px;
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 12px;
 }

 .footer-brand p {
     color: rgba(255, 255, 255, 0.8);
     font-size: .9rem;
     line-height: 1.5;
     margin-bottom: 20px;
 }

 .footer-socials {
     display: flex;
     gap: 10px;
 }

 .social-icon-btn {
     width: 38px;
     height: 38px;
     border-radius: 8px;
     background: var(--yellow);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     font-size: 1.1rem;
     transition: transform .2s;
 }

 .social-icon-btn:hover {
     transform: scale(1.1);
 }

 .footer-col h4 {
     color: var(--yellow);
     font-weight: 800;
     font-size: 1rem;
     margin-bottom: 16px;
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 10px;
 }

 .footer-col ul li a {
     color: rgba(255, 255, 255, 0.85);
     text-decoration: none;
     font-size: .9rem;
     transition: color .2s;
 }

 .footer-col ul li a:hover {
     color: var(--yellow);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     padding-top: 20px;
     text-align: center;
     color: rgba(255, 255, 255, 0.5);
     font-size: .82rem;
 }

 /* Chat bubble */
 .chat-bubble {
     position: fixed;
     bottom: 28px;
     right: 28px;
     z-index: 999;
     width: 50px;
     height: 50px;
     background: var(--wa);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
     transition: transform .2s;
 }

 .chat-bubble:hover {
     transform: scale(1.1);
 }

 .chat-bubble svg {
     width: 24px;
     height: 24px;
     fill: #fff;
 }

 /* Toast */
 .toast {
     position: fixed;
     bottom: 90px;
     right: 28px;
     z-index: 999;
     background: #111;
     color: #fff;
     padding: 14px 22px;
     border-radius: 12px;
     font-weight: 700;
     font-size: .9rem;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
     transform: translateY(20px);
     opacity: 0;
     transition: all .3s;
     pointer-events: none;
 }

 .toast.show {
     transform: translateY(0);
     opacity: 1;
 }

 /* animations */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .fade-up {
     animation: fadeUp .5s ease forwards;
 }

 .delay-1 {
     animation-delay: .1s;
     opacity: 0;
 }

 .delay-2 {
     animation-delay: .2s;
     opacity: 0;
 }

 .delay-3 {
     animation-delay: .3s;
     opacity: 0;
 }

 .delay-4 {
     animation-delay: .4s;
     opacity: 0;
 }

 @media (max-width: 900px) {
     .product-page {
         grid-template-columns: 1fr;
         padding: 10px 20px 40px;
     }

     nav {
         padding: 14px 20px;
     }

     .breadcrumb,
     .recommendations {
         padding: 14px 20px;
     }

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

     footer {
         padding: 54px 32px 30px !important;
     }

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


















 /* ─── HERO BANNER ─── */
 .contact-hero {
     background: var(--purple);
     border-radius: 20px;
     padding: 40px 60px 40px;
     margin: 4rem;
     position: relative;
     overflow: hidden;
 }

 .contact-hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse at 80% 50%, rgba(255, 214, 0, 0.15) 0%, transparent 60%);
     pointer-events: none;
 }

 /* decorative circles */
 .contact-hero::after {
     content: '';
     position: absolute;
     width: 320px;
     height: 320px;
     border-radius: 50%;
     border: 2px solid rgba(255, 255, 255, 0.1);
     right: -80px;
     bottom: -100px;
     pointer-events: none;
 }

 .hero-circle {
     position: absolute;
     width: 180px;
     height: 180px;
     border-radius: 50%;
     border: 2px solid rgba(255, 255, 255, 0.1);
     right: 120px;
     bottom: 20px;
     pointer-events: none;
 }

 .hero-inner {
     position: relative;
     z-index: 1;
     max-width: 700px;
 }

 .hero-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(255, 255, 255, 0.12);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 40px;
     padding: 6px 16px;
     font-size: .82rem;
     font-weight: 700;
     color: var(--yellow);
     letter-spacing: 1px;
     margin-bottom: 20px;
 }

 .hero-inner h1 {
     font-family: 'Bebas Neue', cursive;
     font-size: 5rem;
     color: #fff;
     line-height: 1;
     margin-bottom: 16px;
 }

 .hero-inner h1 span {
     color: var(--yellow);
 }

 .hero-inner p {
     color: rgba(255, 255, 255, 0.8);
     font-size: 1.1rem;
     line-height: 1.6;
     max-width: 500px;
 }

 /* ─── MAIN LAYOUT ─── */
 .contact-body {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0;
 }

 /* ─── LEFT PANEL ─── */
 .contact-left {
     padding: 60px;
     border-right: 1px solid var(--border);
 }

 .section-label {
     font-size: .75rem;
     font-weight: 900;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 28px;
 }

 /* WhatsApp cards */
 .wa-cards {
     display: flex;
     flex-direction: column;
     gap: 14px;
     margin-bottom: 44px;
 }

 .wa-card {
     display: flex;
     align-items: center;
     gap: 18px;
     padding: 18px 22px;
     border-radius: 16px;
     background: #f9fdf9;
     border: 1.5px solid #d0f0d8;
     text-decoration: none;
     color: inherit;
     transition: transform .2s, box-shadow .2s, border-color .2s;
     position: relative;
     overflow: hidden;
 }

 .wa-card::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 4px;
     background: var(--wa);
     border-radius: 4px 0 0 4px;
 }

 .wa-card:hover {
     transform: translateX(5px);
     box-shadow: 0 8px 28px rgba(37, 211, 102, 0.15);
     border-color: var(--wa);
 }

 .wa-icon-wrap {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: var(--wa);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
 }

 .wa-icon-wrap svg {
     width: 26px;
     height: 26px;
     fill: #fff;
 }

 .wa-info {
     flex: 1;
 }

 .wa-rep {
     font-size: .75rem;
     font-weight: 800;
     color: var(--muted);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 2px;
 }

 .wa-num {
     font-size: 1.1rem;
     font-weight: 900;
     color: #111;
     letter-spacing: .5px;
 }

 .wa-tag {
     font-size: .7rem;
     font-weight: 800;
     background: #e7fbed;
     color: #1a8f44;
     padding: 3px 10px;
     border-radius: 20px;
     border: 1px solid #b8eac8;
 }

 /* Email card */
 .email-card {
     display: flex;
     align-items: center;
     gap: 18px;
     padding: 20px 22px;
     border-radius: 16px;
     background: #f5f8ff;
     border: 1.5px solid #ccd8ff;
     text-decoration: none;
     color: inherit;
     transition: transform .2s, box-shadow .2s, border-color .2s;
     position: relative;
     overflow: hidden;
     margin-bottom: 44px;
 }

 .email-card::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 4px;
     background: var(--blue);
     border-radius: 4px 0 0 4px;
 }

 .email-card:hover {
     transform: translateX(5px);
     box-shadow: 0 8px 28px rgba(21, 101, 192, 0.12);
     border-color: var(--blue);
 }

 .email-icon-wrap {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: var(--blue);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     box-shadow: 0 4px 14px rgba(21, 101, 192, 0.3);
 }

 .email-icon-wrap svg {
     width: 24px;
     height: 24px;
     fill: none;
     stroke: #fff;
     stroke-width: 2;
 }

 .email-info {
     flex: 1;
 }

 .email-label {
     font-size: .75rem;
     font-weight: 800;
     color: var(--muted);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 2px;
 }

 .email-addr {
     font-size: 1.05rem;
     font-weight: 900;
     color: #111;
 }

 /* Address card */
 .address-card {
     display: flex;
     align-items: flex-start;
     gap: 18px;
     padding: 20px 22px;
     border-radius: 16px;
     background: #fffbf0;
     border: 1.5px solid #ffe082;
     position: relative;
     overflow: hidden;
 }

 .address-card::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 4px;
     background: var(--yellow);
     border-radius: 4px 0 0 4px;
 }

 .addr-icon-wrap {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: var(--yellow);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     box-shadow: 0 4px 14px rgba(255, 214, 0, 0.4);
 }

 .addr-icon-wrap svg {
     width: 24px;
     height: 24px;
     fill: none;
     stroke: #111;
     stroke-width: 2.2;
 }

 .addr-info .addr-label {
     font-size: .75rem;
     font-weight: 800;
     color: var(--muted);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 4px;
 }

 .addr-info .addr-text {
     font-size: 1.05rem;
     font-weight: 800;
     color: #111;
     line-height: 1.5;
 }

 .addr-info .addr-sub {
     font-size: .85rem;
     color: var(--muted);
     margin-top: 4px;
 }

 /* Hours strip */
 .hours-strip {
     margin-top: 28px;
     padding: 16px 20px;
     background: var(--gray);
     border-radius: 12px;
     display: flex;
     gap: 24px;
     flex-wrap: wrap;
 }

 .hour-item {
     display: flex;
     flex-direction: column;
     gap: 2px;
 }

 .hour-day {
     font-size: .72rem;
     font-weight: 900;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--muted);
 }

 .hour-time {
     font-size: .9rem;
     font-weight: 800;
     color: #111;
 }

 /* ─── RIGHT PANEL: MAP ─── */
 .contact-right {
     display: flex;
     flex-direction: column;
 }

 .map-header {
     padding: 28px 70px 20px;
     border-bottom: 1px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .map-header h3 {
     font-family: 'Bebas Neue', cursive;
     font-size: 1.6rem;
 }

 .map-pill {
     display: flex;
     align-items: center;
     gap: 6px;
     background: #fff0f0;
     border: 1.5px solid #ffc8c8;
     border-radius: 20px;
     padding: 5px 14px;
     font-size: .78rem;
     font-weight: 800;
     color: var(--red);
 }

 .map-pill::before {
     content: '●';
     font-size: .5rem;
     animation: blink 1.4s infinite;
 }

 @keyframes blink {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.2;
     }
 }

 .map-wrap {
     flex: 1;
     min-height: 346px;
     position: relative;
     background: #ffffff;
 }

 .map-wrap iframe {
     width: 89%;
     height: 90%;
     border: none;
     min-height: 346px;
     display: block;
     border-radius: 20px;
 }

 /* fallback while iframe loads */
 .map-loading {
     position: absolute;
     inset: 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     background: #f0f2f8;
     gap: 12px;
     pointer-events: none;
     transition: opacity .4s;
 }

 .map-loading.hidden {
     opacity: 0;
 }

 .map-loading .pin-bounce {
     font-size: 3rem;
     animation: bounce 1s ease-in-out infinite;
 }

 @media (max-width: 768px) {
     .map-wrap {
         margin-left: 2.5rem;
     }
 }

 @keyframes bounce {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-14px);
     }
 }

 .map-loading p {
     font-weight: 700;
     color: var(--muted);
     font-size: .9rem;
 }

 .map-directions {
     padding: 16px 40px;
     display: flex;
     gap: 12px;
     align-items: center;
     border-top: 1px solid var(--border);
     background: #ffffff00;
 }

 .dir-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 20px;
     border-radius: 10px;
     font-family: 'Nunito', sans-serif;
     font-weight: 800;
     font-size: .85rem;
     cursor: pointer;
     text-decoration: none;
     transition: transform .15s, box-shadow .15s;
 }

 .dir-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
 }

 .dir-btn.primary {
     background: var(--purple);
     color: #fff;
     border: none;
 }

 .dir-btn.secondary {
     background: #fff;
     color: #333;
     border: 1.5px solid var(--border);
 }

 /* ─── CONTACT FORM STRIP ─── */
 .form-strip {
     background: var(--black);
     padding: 60px;
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 60px;
     align-items: center;
     margin: 4rem;
     border-radius: 2rem;
     margin-bottom: -2rem;
     z-index: 999;
 }


 .form-strip-left h2 {
     font-family: 'Bebas Neue', cursive;
     font-size: 3rem;
     color: #fff;
     line-height: 1.1;
     margin-bottom: 12px;
 }

 .form-strip-left h2 span {
     color: var(--yellow);
 }

 .form-strip-left p {
     color: rgba(255, 255, 255, 0.6);
     font-size: .95rem;
     line-height: 1.6;
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

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

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .form-group label {
     font-size: .78rem;
     font-weight: 800;
     color: rgba(255, 255, 255, 0.5);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     padding: 12px 16px;
     background: rgba(255, 255, 255, 0.07);
     border: 1.5px solid rgba(255, 255, 255, 0.12);
     border-radius: 10px;
     color: #fff;
     font-family: 'Nunito', sans-serif;
     font-size: .95rem;
     outline: none;
     transition: border-color .2s, background .2s;
     resize: none;
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
     color: rgba(255, 255, 255, 0.3);
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     border-color: var(--yellow);
     background: rgba(255, 255, 255, 0.1);
 }

 .form-group select option {
     background: #222;
     color: #fff;
 }

 .form-group textarea {
     min-height: 110px;
 }

 .submit-btn {
     padding: 14px 32px;
     background: var(--yellow);
     color: #111;
     border: none;
     border-radius: 10px;
     font-family: 'Nunito', sans-serif;
     font-size: 1rem;
     font-weight: 900;
     cursor: pointer;
     letter-spacing: .5px;
     transition: transform .15s, box-shadow .15s;
     align-self: flex-start;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(255, 214, 0, 0.35);
 }

 .submit-btn:active {
     transform: translateY(0);
 }

 /* Animations */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(22px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .fade-up {
     animation: fadeUp .55s ease both;
 }

 .d1 {
     animation-delay: .05s;
 }

 .d2 {
     animation-delay: .12s;
 }

 .d3 {
     animation-delay: .2s;
 }

 .d4 {
     animation-delay: .28s;
 }

 .d5 {
     animation-delay: .36s;
 }

 @media (max-width: 960px) {
     nav {
         padding: 14px 20px;
     }

     .contact-hero {
         padding: 20px 20px 40px;
         margin: 1rem;
     }

     .hero-inner h1 {
         font-size: 3.2rem;
     }

     .contact-body {
         grid-template-columns: 1fr;
     }

     .contact-left {
         padding: 40px 20px;
         border-right: none;
         border-bottom: 1px solid var(--border);
     }

     .map-header {
         padding: 20px;
     }

     .map-directions {
         padding: 14px 20px;
     }

     .form-strip {
         margin: 1rem 1rem;
         margin-bottom: -2.5rem;
         grid-template-columns: 1fr;
         padding: 40px 20px;
         gap: 36px;
     }

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

 }















 /* ─── ABOUT US HERO ─── */
 .hero-about {
     background: transparent;
     min-height: 92vh;
     display: grid;
     grid-template-columns: 1fr 1fr;
     position: relative;
     overflow: hidden;
 }

 /* animated background pattern */
 .hero-about .hero-pattern {
     position: absolute;
     inset: 0;
     pointer-events: none;
     z-index: 0;
     background-image:
         radial-gradient(circle at 20% 80%, rgba(74, 29, 200, 0.4) 0%, transparent 50%),
         radial-gradient(circle at 80% 20%, rgba(232, 25, 44, 0.2) 0%, transparent 45%),
         radial-gradient(circle at 60% 60%, rgba(255, 214, 0, 0.08) 0%, transparent 40%);
 }

 /* big decorative letters */
 .hero-about .hero-bg-text {
     position: absolute;
     bottom: -40px;
     left: -20px;
     font-family: 'Bebas Neue', cursive;
     font-size: 20rem;
     line-height: 1;
     color: rgba(255, 255, 255, 0.03);
     pointer-events: none;
     z-index: 0;
     user-select: none;
     white-space: nowrap;
 }

 .hero-about .hero-left {
     position: relative;
     z-index: 1;
     padding: 80px 60px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .hero-about .hero-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(249, 208, 0, 0.949);
     border: 1px solid rgba(255, 214, 0, 0.3);
     border-radius: 40px;
     padding: 6px 18px;
     font-size: .78rem;
     font-weight: 900;
     color: var(--black);
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 28px;
     width: fit-content;
 }

 .hero-about .hero-left h1 {
     font-family: 'Bebas Neue', cursive;
     font-size: 6.5rem;
     line-height: .95;
     color: #000000;
     margin-bottom: 24px;
 }

 .hero-about .hero-left h1 .red {
     color: var(--red);
 }

 .hero-about .hero-left h1 .yellow {
     color: var(--purple);
 }

 .hero-about .hero-left p {
     color: rgba(0, 0, 0, 0.959);
     font-size: 1.05rem;
     line-height: 1.75;
     max-width: 500px;
     margin-bottom: 40px;
 }

 .hero-about .hero-cta-row {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
 }

 .hero-about .btn-primary {
     padding: 14px 30px;
     background: var(--yellow);
     color: #111;
     border-radius: 10px;
     font-weight: 900;
     font-size: .95rem;
     text-decoration: none;
     transition: transform .2s, box-shadow .2s;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .hero-about .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 28px rgba(255, 214, 0, 0.35);
 }

 .hero-about .btn-outline {
     padding: 14px 30px;
     border: 2px solid var(--purple);
     color: var(--purple);
     border-radius: 10px;
     font-weight: 800;
     font-size: .95rem;
     text-decoration: none;
     transition: border-color .2s, background .2s;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .hero-about .btn-outline:hover {
     border-color: #fff;
     background: rgba(255, 255, 255, 0.06);
 }

 /* ─── HERO RIGHT ─── */
 .hero-about .hero-right {
     position: relative;
     z-index: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 80px 60px 80px 20px;
     gap: 18px;
 }

 /* KEEP 2 CARDS PER ROW */
 .hero-about .stat-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
     width: 100%;
     max-width: 420px;
 }

 .hero-about .stat-card {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 18px;
     padding: 28px 22px;
     display: flex;
     flex-direction: column;
     gap: 6px;
     backdrop-filter: blur(10px);
     transition: transform .25s, background .25s;
 }

 .hero-about .stat-card:hover {
     transform: translateY(-4px);
     background: rgba(255, 255, 255, 0.1);
 }

 .hero-about .stat-card.accent-yellow {
     border-color: var(--purple);
 }

 .hero-about .stat-card.accent-red {
     border-color: rgba(232, 25, 44, 0.4);
 }

 .hero-about .stat-card.accent-purple {
     border-color: rgba(100, 60, 255, 0.4);
 }

 .hero-about .stat-card.accent-green {
     border-color: rgba(37, 211, 102, 0.4);
 }

 .hero-about .stat-num {
     font-family: 'Bebas Neue', cursive;
     font-size: 3rem;
     line-height: 1;
     color: #000000;
 }

 .hero-about .stat-num .accent {
     color: var(--purple);
 }

 .hero-about .stat-label {
     font-size: .8rem;
     font-weight: 700;
     color: rgb(0, 0, 0);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .hero-about .stat-icon {
     font-size: 1.6rem;
     margin-bottom: 6px;
 }

 /* ─── TABLET ─── */
 @media (max-width: 991px) {

     .hero-about {
         grid-template-columns: 1fr;
         min-height: auto;
         padding: 40px 0;
     }

     .hero-about .hero-left,
     .hero-about .hero-right {
         padding: 40px 24px;
     }

     .hero-about .hero-left {
         text-align: center;
         align-items: center;
     }

     .hero-about .hero-left h1 {
         font-size: 4.5rem;
     }

     .hero-about .hero-left p {
         max-width: 100%;
     }

     .hero-about .hero-cta-row {
         justify-content: center;
     }

     .hero-about .hero-bg-text {
         font-size: 10rem;
         left: 50%;
         transform: translateX(-50%);
         bottom: 0;
     }

     .hero-about .stat-grid {
         max-width: 100%;
     }
 }

 /* ─── MOBILE ─── */
 @media (max-width: 600px) {

     .hero-about .hero-left,
     .hero-about .hero-right {
         padding: 30px 18px;
     }

     .hero-about .hero-eyebrow {
         font-size: .65rem;
         letter-spacing: 1px;
         padding: 6px 14px;
         text-align: center;
     }

     .hero-about .hero-left h1 {
         font-size: 3rem;
     }

     .hero-about .hero-left p {
         font-size: .95rem;
         line-height: 1.7;
         margin-bottom: 28px;
     }

     .hero-about .hero-cta-row {
         flex-direction: column;
         width: 100%;
     }

     .hero-about .btn-primary,
     .hero-about .btn-outline {
         width: 100%;
         justify-content: center;
     }

     /* STILL KEEP 2 CARDS ON MOBILE */
     .hero-about .stat-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 12px;
     }

     .hero-about .stat-card {
         padding: 18px 14px;
         border-radius: 14px;
     }

     .hero-about .stat-num {
         font-size: 2rem;
     }

     .hero-about .stat-label {
         font-size: .68rem;
         line-height: 1.3;
     }

     .hero-about .stat-icon {
         font-size: 1.2rem;
     }

     .hero-about .hero-bg-text {
         font-size: 6rem;
         bottom: 20px;
     }
 }












 /* ─── MARQUEE STRIP ─── */
 .marquee-strip {
     background: var(--yellow);
     padding: 14px 0;
     overflow: hidden;
     white-space: nowrap;
     position: relative;
     width: 100%;
 }

 .marquee-inner {
     display: inline-flex;
     align-items: center;
     gap: 0;
     animation: marquee 22s linear infinite;
     will-change: transform;
 }

 .marquee-inner span {
     font-family: 'Bebas Neue', cursive;
     font-size: 1.3rem;
     letter-spacing: 2px;
     color: #111;
     padding: 0 30px;
     flex-shrink: 0;
 }

 .marquee-strip .marquee-inner .dot {
     color: var(--red);
     margin-top: -20px;
     border-radius: 0;
     border: none;
     padding: 0 10px;
 }

 /* animation */
 @keyframes marquee {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 /* ─── TABLET ─── */
 @media (max-width: 991px) {

     .marquee-strip {
         padding: 12px 0;
     }

     .marquee-inner {
         animation-duration: 18s;
     }

     .marquee-inner span {
         font-size: 1.05rem;
         letter-spacing: 1.5px;
         padding: 0 20px;
     }

     .marquee-strip .marquee-inner .dot {
         padding: 0 8px;
         margin-top: -15px;
     }
 }

 /* ─── MOBILE ─── */
 @media (max-width: 600px) {

     .marquee-strip {
         padding: 10px 0;
     }

     .marquee-inner {
         animation-duration: 14s;
     }

     .marquee-inner span {
         font-size: .85rem;
         letter-spacing: 1px;
         padding: 0 14px;
     }

     .marquee-strip .marquee-inner .dot {
         padding: 0 6px;
         margin-top: -15px;
     }
 }







 /* ─── STORY SECTION ─── */
 .story-section {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0;
     align-items: stretch;
 }

 /* ─── LEFT SIDE ─── */
 .story-left {
     background: var(--purple);
     padding: 80px 60px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 .story-left::after {
     content: '';
     position: absolute;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     border: 2px solid rgba(255, 255, 255, 0.07);
     right: -150px;
     bottom: -150px;
 }

 .story-tag {
     font-size: .72rem;
     font-weight: 900;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--yellow);
     margin-bottom: 18px;
 }

 .story-left h2 {
     font-family: 'Bebas Neue', cursive;
     font-size: 3.8rem;
     color: #fff;
     line-height: 1.05;
     margin-bottom: 24px;
 }

 .story-left h2 em {
     font-style: normal;
     color: var(--yellow);
 }

 .story-left p {
     color: rgba(255, 255, 255, 0.75);
     font-size: 1rem;
     line-height: 1.8;
     margin-bottom: 16px;
 }

 .story-quote {
     margin-top: 24px;
     padding: 20px 24px;
     background: rgba(255, 255, 255, 0.08);
     border-radius: 14px;
     border-left: 4px solid var(--yellow);
     font-family: 'Dancing Script', cursive;
     font-size: 1.3rem;
     color: #fff;
     line-height: 1.5;
 }

 /* ─── RIGHT SIDE ─── */
 .story-right {
     background: var(--gray);
     padding: 80px 60px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 28px;
 }

 .value-card {
     display: flex;
     align-items: flex-start;
     gap: 18px;
     padding: 24px;
     background: #fff;
     border-radius: 16px;
     border: 1.5px solid var(--border);
     transition: transform .2s, box-shadow .2s;
 }

 .value-card:hover {
     transform: translateX(6px);
     box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
 }

 .value-icon {
     width: 52px;
     height: 52px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.6rem;
     flex-shrink: 0;
 }

 .vi-yellow {
     background: #fff8d6;
 }

 .vi-red {
     background: #fff0f1;
 }

 .vi-purple {
     background: #f0eeff;
 }

 .value-text h4 {
     font-weight: 900;
     font-size: 1rem;
     color: #111;
     margin-bottom: 5px;
 }

 .value-text p {
     font-size: .87rem;
     color: var(--muted);
     line-height: 1.6;
 }

 /* ─── TABLET RESPONSIVE ─── */
 @media (max-width: 991px) {

     .story-section {
         grid-template-columns: 1fr;
     }

     .story-left,
     .story-right {
         padding: 60px 40px;
     }

     .story-left h2 {
         font-size: 3.2rem;
     }

     .story-left p {
         font-size: .97rem;
     }

     .story-quote {
         font-size: 1.15rem;
     }

     .story-left::after {
         width: 300px;
         height: 300px;
         right: -120px;
         bottom: -120px;
     }
 }

 /* ─── MOBILE RESPONSIVE ─── */
 @media (max-width: 600px) {

     .story-left,
     .story-right {
         padding: 45px 20px;
     }

     .story-tag {
         font-size: .65rem;
         letter-spacing: 2px;
         margin-bottom: 14px;
     }

     .story-left h2 {
         font-size: 2.5rem;
         line-height: 1;
         margin-bottom: 18px;
     }

     .story-left p {
         font-size: .92rem;
         line-height: 1.7;
     }

     .story-quote {
         margin-top: 18px;
         padding: 18px;
         font-size: 1rem;
         line-height: 1.5;
     }

     .story-right {
         gap: 18px;
     }

     .value-card {
         padding: 18px;
         gap: 14px;
         border-radius: 14px;
     }

     .value-card:hover {
         transform: none;
     }

     .value-icon {
         width: 46px;
         height: 46px;
         font-size: 1.3rem;
         border-radius: 12px;
     }

     .value-text h4 {
         font-size: .92rem;
     }

     .value-text p {
         font-size: .82rem;
         line-height: 1.5;
     }

     .story-left::after {
         width: 220px;
         height: 220px;
         right: -100px;
         bottom: -100px;
     }
 }






 /* ─── MISSION BANNER ─── */
 .mission-banner {
     background: var(--red);
     padding: 70px 60px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     position: relative;
     overflow: hidden;
 }

 .mission-banner::before {
     content: '';
     position: absolute;
     width: 500px;
     height: 500px;
     border-radius: 50%;
     border: 2px solid rgba(255, 255, 255, 0.1);
     right: -180px;
     top: -180px;
 }

 /* ─── LEFT SIDE ─── */
 .mission-banner h2 {
     font-family: 'Bebas Neue', cursive;
     font-size: 4.5rem;
     color: #fff;
     line-height: 1.05;
     position: relative;
     z-index: 1;
 }

 .mission-banner h2 span {
     color: var(--yellow);
     display: block;
 }

 /* ─── RIGHT SIDE ─── */
 .mission-right {
     position: relative;
     z-index: 1;
 }

 .mission-right p {
     color: rgba(255, 255, 255, 0.85);
     font-size: 1.05rem;
     line-height: 1.8;
     margin-bottom: 20px;
 }

 /* ─── PILLS ─── */
 .mission-pills {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
     margin-top: 10px;
 }

 .pill {
     padding: 8px 18px;
     background: rgba(255, 255, 255, 0.15);
     border: 1px solid rgba(255, 255, 255, 0.3);
     border-radius: 30px;
     font-size: .82rem;
     font-weight: 800;
     color: #fff;
     letter-spacing: .5px;
     backdrop-filter: blur(4px);
 }

 /* ─── TABLET RESPONSIVE ─── */
 @media (max-width: 991px) {

     .mission-banner {
         grid-template-columns: 1fr;
         gap: 35px;
         padding: 60px 40px;
     }

     .mission-banner h2 {
         font-size: 3.8rem;
     }

     .mission-right p {
         font-size: 1rem;
         line-height: 1.75;
     }

     .mission-banner::before {
         width: 360px;
         height: 360px;
         right: -140px;
         top: -140px;
     }
 }

 /* ─── MOBILE RESPONSIVE ─── */
 @media (max-width: 600px) {

     .mission-banner {
         padding: 45px 20px;
         gap: 24px;
     }

     .mission-banner h2 {
         font-size: 2.8rem;
         line-height: 1;
     }

     .mission-right p {
         font-size: .93rem;
         line-height: 1.7;
         margin-bottom: 16px;
     }

     .mission-pills {
         gap: 8px;
     }

     .pill {
         padding: 7px 14px;
         font-size: .72rem;
         border-radius: 24px;
     }

     .mission-banner::before {
         width: 240px;
         height: 240px;
         right: -100px;
         top: -100px;
     }
 }








 /* ─── TIMELINE ─── */
 .timeline-section {
     padding: 80px 60px;
     background: #fff;
 }

 .timeline-section>h2 {
     font-family: 'Bebas Neue', cursive;
     font-size: 3.2rem;
     text-align: center;
     margin-bottom: 60px;
 }

 .timeline-section>h2 span {
     color: var(--purple);
 }

 .timeline {
     position: relative;
     max-width: 800px;
     margin: 0 auto;
 }

 /* vertical line */
 .timeline::before {
     content: '';
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     top: 0;
     bottom: 0;
     width: 3px;
     background: linear-gradient(to bottom, var(--purple), var(--red), var(--yellow));
     border-radius: 3px;
 }

 /* ─── ITEMS ─── */
 .tl-item {
     display: grid;
     grid-template-columns: 1fr 60px 1fr;
     align-items: center;
     margin-bottom: 48px;
 }

 /* odd left side */
 .tl-item:nth-child(odd) .tl-content {
     grid-column: 1;
     text-align: right;
     padding-right: 40px;
 }

 .tl-item:nth-child(odd) .tl-dot {
     grid-column: 2;
 }

 .tl-item:nth-child(odd) .tl-empty {
     grid-column: 3;
 }

 /* even right side */
 .tl-item:nth-child(even) .tl-empty {
     grid-column: 1;
 }

 .tl-item:nth-child(even) .tl-dot {
     grid-column: 2;
 }

 .tl-item:nth-child(even) .tl-content {
     grid-column: 3;
     text-align: left;
     padding-left: 40px;
 }

 /* dot */
 .tl-dot {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background: var(--purple);
     border: 4px solid #fff;
     box-shadow: 0 0 0 3px var(--purple);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.3rem;
     margin: 0 auto;
     z-index: 1;
     position: relative;
 }

 .tl-year {
     font-family: 'Bebas Neue', cursive;
     font-size: 1.6rem;
     color: var(--purple);
     margin-bottom: 6px;
 }

 .tl-content h4 {
     font-weight: 900;
     font-size: 1rem;
     color: #111;
     margin-bottom: 5px;
 }

 .tl-content p {
     font-size: .85rem;
     color: var(--muted);
     line-height: 1.6;
 }

 /* ─────────────────────────────
   TABLET
───────────────────────────── */
 @media (max-width: 991px) {

     .timeline-section {
         padding: 60px 40px;
     }

     .timeline-section>h2 {
         font-size: 2.8rem;
         margin-bottom: 40px;
     }

     .timeline::before {
         left: 30px;
         /* move line to left */
         transform: none;
     }

     .tl-item {
         grid-template-columns: 60px 1fr;
         margin-bottom: 36px;
     }

     /* remove left/right split */
     .tl-item:nth-child(odd) .tl-content,
     .tl-item:nth-child(even) .tl-content {
         grid-column: 2;
         text-align: left;
         padding: 0 0 0 20px;
     }

     .tl-item:nth-child(odd) .tl-empty,
     .tl-item:nth-child(even) .tl-empty {
         display: none;
     }

     .tl-dot {
         grid-column: 1;
         width: 42px;
         height: 42px;
         font-size: 1.1rem;
     }
 }

 /* ─────────────────────────────
   MOBILE
───────────────────────────── */
 @media (max-width: 600px) {

     .timeline-section {
         padding: 50px 20px;
     }

     .timeline-section>h2 {
         font-size: 2.2rem;
     }

     .timeline::before {
         left: 20px;
     }

     .tl-item {
         grid-template-columns: 50px 1fr;
         margin-bottom: 28px;
     }

     .tl-content {
         padding-left: 16px !important;
     }

     .tl-year {
         font-size: 1.3rem;
     }

     .tl-content h4 {
         font-size: .95rem;
     }

     .tl-content p {
         font-size: .82rem;
     }

     .tl-dot {
         width: 38px;
         height: 38px;
         font-size: 1rem;
     }

     .tl-dot {
         display: none;
     }

 }










 /* ─── SOCIAL FOLLOW ─── */
 .social-section {
     background: var(--black);
     padding: 80px 60px;
 }

 .social-section>h2 {
     font-family: 'Bebas Neue', cursive;
     font-size: 3.5rem;
     color: #fff;
     text-align: center;
     margin-bottom: 10px;
 }

 .social-section>h2 span {
     color: var(--yellow);
 }

 .social-sub {
     text-align: center;
     color: rgba(255, 255, 255, 0.5);
     font-size: .95rem;
     margin-bottom: 50px;
 }

 /* ─── GRID ─── */
 .social-cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 22px;
 }

 /* ─── CARD ─── */
 .social-card {
     border-radius: 22px;
     padding: 36px 30px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 16px;
     text-decoration: none;
     color: inherit;
     position: relative;
     overflow: hidden;
     transition: transform .25s, box-shadow .25s;
     border: 1.5px solid rgba(255, 255, 255, 0.08);
 }

 .social-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
 }

 /* backgrounds */
 .social-card.insta {
     background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
 }

 .social-card.tiktok {
     background: linear-gradient(135deg, #ffffff, #69C9D0, #EE1D52);
 }

 .social-card.facebook {
     background: linear-gradient(135deg, #1877F2, #0a4fa8);
 }

 /* icon */
 .sc-icon {
     width: 72px;
     height: 72px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.2rem;
     border: 2px solid rgba(255, 255, 255, 0.3);
 }

 /* text */
 .sc-name {
     font-family: 'Bebas Neue', cursive;
     font-size: 1.8rem;
     color: #fff;
     letter-spacing: 1px;
 }

 .sc-handle {
     font-size: .85rem;
     font-weight: 800;
     color: rgba(255, 255, 255, 0.75);
 }

 .sc-desc {
     font-size: .82rem;
     color: rgba(255, 255, 255, 0.6);
     text-align: center;
     line-height: 1.5;
 }

 .sc-follow {
     margin-top: 6px;
     padding: 10px 26px;
     background: rgba(255, 255, 255, 0.2);
     border: 1.5px solid rgba(255, 255, 255, 0.35);
     border-radius: 30px;
     font-weight: 900;
     font-size: .82rem;
     color: #fff;
     letter-spacing: .5px;
     transition: background .2s;
 }

 .social-card:hover .sc-follow {
     background: rgba(255, 255, 255, 0.3);
 }

 /* ─────────────────────────────
   TABLET
───────────────────────────── */
 @media (max-width: 991px) {

     .social-section {
         padding: 70px 40px;
     }

     .social-section>h2 {
         font-size: 3rem;
     }

     .social-cards {
         grid-template-columns: repeat(2, 1fr);
         gap: 18px;
     }

     .social-sub {
         margin-bottom: 40px;
     }
 }

 /* ─────────────────────────────
   MOBILE
───────────────────────────── */
 @media (max-width: 600px) {

     .social-section {
         padding: 60px 20px;
     }

     .social-section>h2 {
         font-size: 2.4rem;
     }

     .social-sub {
         font-size: .85rem;
         margin-bottom: 30px;
     }

     /* 1 column layout */
     .social-cards {
         grid-template-columns: 1fr;
         gap: 16px;
     }

     .social-card {
         padding: 28px 20px;
         border-radius: 18px;
     }

     .sc-icon {
         width: 60px;
         height: 60px;
         font-size: 1.8rem;
     }

     .sc-name {
         font-size: 1.5rem;
     }

     .sc-desc {
         font-size: .8rem;
     }

     .sc-follow {
         font-size: .78rem;
         padding: 9px 22px;
     }
 }






 /* ─── WHY US STRIP ─── */
 .why-strip {
     background: var(--gray);
     padding: 70px 60px;
 }

 .why-strip>h2 {
     font-family: 'Bebas Neue', cursive;
     font-size: 3rem;
     text-align: center;
     margin-bottom: 50px;
 }

 .why-strip>h2 span {
     color: var(--red);
 }

 /* GRID */
 .why-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
 }

 /* CARD */
 .why-card {
     background: #fff;
     border-radius: 18px;
     padding: 34px 24px;
     text-align: center;
     border: 1.5px solid var(--border);
     transition: transform .2s, box-shadow .2s, border-color .2s;
 }

 .why-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 14px 38px rgba(0, 0, 0, 0.1);
     border-color: var(--purple);
 }

 .why-emoji {
     font-size: 2.8rem;
     margin-bottom: 14px;
 }

 .why-card h4 {
     font-weight: 900;
     font-size: 1rem;
     margin-bottom: 8px;
 }

 .why-card p {
     font-size: .84rem;
     color: var(--muted);
     line-height: 1.65;
 }

 /* ─────────────────────────────
   CTA BANNER
───────────────────────────── */
 .cta-banner {
     background: var(--purple);
     padding: 80px 60px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-banner::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse at center, rgba(255, 214, 0, 0.1) 0%, transparent 60%);
 }

 .cta-banner h2 {
     font-family: 'Bebas Neue', cursive;
     font-size: 4rem;
     color: #fff;
     margin-bottom: 16px;
     position: relative;
     z-index: 1;
 }

 .cta-banner h2 span {
     color: var(--yellow);
 }

 .cta-banner p {
     color: rgba(255, 255, 255, 0.7);
     font-size: 1rem;
     margin-bottom: 36px;
     position: relative;
     z-index: 1;
 }

 .cta-row {
     display: flex;
     justify-content: center;
     gap: 16px;
     flex-wrap: wrap;
     position: relative;
     z-index: 1;
 }

 .cta-yellow {
     padding: 14px 34px;
     background: var(--yellow);
     color: #111;
     border-radius: 10px;
     font-weight: 900;
     font-size: 1rem;
     text-decoration: none;
     transition: transform .2s, box-shadow .2s;
 }

 .cta-yellow:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 28px rgba(255, 214, 0, 0.4);
 }

 .cta-white {
     padding: 14px 34px;
     background: transparent;
     color: #fff;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 10px;
     font-weight: 900;
     font-size: 1rem;
     text-decoration: none;
     transition: border-color .2s, background .2s;
 }

 .cta-white:hover {
     border-color: #fff;
     background: rgba(255, 255, 255, 0.08);
 }

 /* ─────────────────────────────
   TABLET
───────────────────────────── */
 @media (max-width: 991px) {

     /* WHY SECTION */
     .why-strip {
         padding: 60px 40px;
     }

     .why-strip>h2 {
         font-size: 2.6rem;
         margin-bottom: 40px;
     }

     .why-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 18px;
     }

     /* CTA */
     .cta-banner {
         padding: 70px 40px;
     }

     .cta-banner h2 {
         font-size: 3.2rem;
     }

     .cta-banner p {
         font-size: .95rem;
     }
 }

 /* ─────────────────────────────
 MOBILE
 ───────────────────────────── */
 @media (max-width: 600px) {

     /* WHY SECTION */
     .why-strip {
         padding: 50px 20px;
     }

     .why-strip>h2 {
         font-size: 2.2rem;
         margin-bottom: 30px;
     }

     .why-grid {
         grid-template-columns: 1fr;
         gap: 14px;
     }

     .why-card {
         padding: 26px 18px;
         border-radius: 16px;
     }

     .why-emoji {
         font-size: 2.3rem;
     }

     .why-card p {
         font-size: .82rem;
     }

     /* CTA */
     .cta-banner {
         padding: 60px 20px;
     }

     .cta-banner h2 {
         font-size: 2.4rem;
         line-height: 1.1;
     }

     .cta-banner p {
         font-size: .9rem;
         margin-bottom: 28px;
     }

     .cta-row {
         flex-direction: column;
         gap: 12px;
     }

     .cta-yellow,
     .cta-white {
         width: 100%;
         text-align: center;
         padding: 14px 20px;
     }
 }