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

    :root {
      --maroon: #7B1C1C;
      --maroon-dark: #5a1414;
      --beige: #F5EFE6;
      --beige-dark: #E8DDD0;
      --gold: #A07828;
      --gold-light: #C5A059;
      --sage: #D8D8C8;
      --text-dark: #2C2C2A;
      --text-mid: #5F5E5A;
      --white: #ffffff;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans: 'Jost', sans-serif;
    }

    body {
      font-family: var(--font-sans);
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* â”€â”€ ELEGANT BORDERED LOGO â”€â”€ */
    .brand-logo-container {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1.5px solid var(--gold);
      padding: 6px 18px;
      border-radius: 2px;
      background: #faf8f5;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    .brand-logo-container:hover {
      border-color: var(--maroon);
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(123, 28, 28, 0.08);
    }
    .brand-logo-title {
      font-family: var(--font-serif);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 2.5px;
      color: var(--maroon);
      text-transform: uppercase;
      line-height: 1.1;
    }
    .brand-logo-sub {
      font-family: var(--font-serif);
      font-size: 11px;
      font-style: italic;
      color: var(--gold);
      letter-spacing: 1px;
      margin-top: 2px;
    }

    /* â”€â”€ HEADER â”€â”€ */
    .header-top {
      background: var(--maroon);
      padding: 12px 40px;
      display: flex;
      align-items: center;
      gap: 24px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .search-bar {
      flex: 1;
      display: flex;
      align-items: center;
      background: var(--white);
      border-radius: 50px;
      padding: 8px 18px;
      gap: 10px;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
    }

    .search-bar input {
      border: none;
      outline: none;
      width: 100%;
      font-family: var(--font-sans);
      font-size: 14px;
      color: var(--text-dark);
      background: transparent;
    }

    .header-icons {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .header-icons a, .header-icons button {
      color: var(--gold);
      background: transparent;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      font-size: 13px;
      font-weight: 500;
    }

    .icon-badge {
      position: absolute;
      top: -6px;
      right: -8px;
      background: var(--gold);
      color: white;
      font-size: 10px;
      font-weight: 600;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* â”€â”€ NAV â”€â”€ */
    .header-nav {
      background: var(--beige);
      border-bottom: 1px solid var(--beige-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      padding: 12px 40px;
      position: sticky;
      top: 76px;
      z-index: 999;
    }

    .header-nav a {
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 500;
      color: var(--text-dark);
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }

    .header-nav a:hover, .header-nav a.active { color: var(--maroon); font-weight: 600; }

    /* â”€â”€ PRODUCT CARD REUSABLE METHOD â”€â”€ */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
      padding: 20px 0;
    }

    .product-card {
      background: var(--white);
      border: 1px solid var(--beige-dark);
      border-radius: 6px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      cursor: pointer;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.08);
      border-color: var(--gold);
    }

    .product-img-wrap {
      position: relative;
      width: 100%;
      height: 300px;
      background: #f9f8f6;
      overflow: hidden;
    }

    .product-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .product-card:hover .product-img-wrap img {
      transform: scale(1.05);
    }

    .discount-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--maroon);
      color: var(--white);
      font-size: 11px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 2px;
      letter-spacing: 0.5px;
    }

    .wishlist-btn-icon {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(255,255,255,0.85);
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }
    .wishlist-btn-icon:hover {
      background: var(--white);
      color: var(--maroon);
      transform: scale(1.1);
    }

    .product-info {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .product-cat {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 4px;
    }

    .product-title {
      font-family: var(--font-serif);
      font-size: 17px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 8px;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-top: auto;
      padding-top: 8px;
    }

    .sale-price {
      font-size: 18px;
      font-weight: 600;
      color: var(--maroon);
    }

    .regular-price {
      font-size: 14px;
      text-decoration: line-through;
      color: var(--text-mid);
    }

    .add-cart-btn {
      width: 100%;
      margin-top: 12px;
      background: var(--maroon);
      color: var(--white);
      border: none;
      padding: 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .add-cart-btn:hover {
      background: var(--maroon-dark);
    }

    /* â”€â”€ CONTAINERS & VIEWS â”€â”€ */
    .view-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 40px 24px;
      min-height: 70vh;
    }

    .page-title {
      font-family: var(--font-serif);
      font-size: 36px;
      color: var(--maroon);
      text-align: center;
      margin-bottom: 8px;
    }

    .page-sub {
      text-align: center;
      color: var(--text-mid);
      font-size: 14px;
      margin-bottom: 36px;
    }

    /* â”€â”€ HOMEPAGE: HERO â”€â”€ */
    .hero-section {
      background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
      padding: 70px 40px;
      display: flex;
      align-items: center;
      gap: 50px;
    }
    .hero-content { flex: 1; max-width: 520px; }
    .hero-content h1 {
      font-family: var(--font-serif);
      font-size: 46px;
      color: var(--maroon);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .hero-content p {
      font-size: 16px;
      color: var(--text-mid);
      margin-bottom: 28px;
      line-height: 1.6;
    }
    .hero-shop-btn {
      display: inline-block;
      background: var(--maroon);
      color: #fff;
      padding: 14px 36px;
      border: none;
      border-radius: 2px;
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
    }
    .hero-shop-btn:hover { background: var(--maroon-dark); }
    .hero-placeholder {
      flex: 1;
      height: 380px;
      background: repeating-linear-gradient(45deg, #ececec, #ececec 12px, #f7f5f2 12px, #f7f5f2 24px);
      border: 1.5px dashed var(--gold-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--text-mid);
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    @media (max-width: 800px) {
      .hero-section { flex-direction: column; padding: 40px 20px; text-align: center; }
      .hero-content { max-width: 100%; }
      .hero-placeholder { width: 100%; height: 220px; }
    }

    .home-section { max-width: 1280px; margin: 0 auto; padding: 60px 24px; }
    .home-section-title {
      font-family: var(--font-serif);
      font-size: 28px;
      color: var(--maroon);
      text-align: center;
      margin-bottom: 8px;
    }
    .home-section-sub {
      text-align: center;
      color: var(--text-mid);
      font-size: 14px;
      margin-bottom: 36px;
    }

    .category-tile-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
    }
    .category-tile {
      cursor: pointer;
      text-align: center;
      border: 1px solid var(--beige-dark);
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .category-tile:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.08);
      border-color: var(--gold);
    }
    .category-tile-img {
      height: 150px;
      background: repeating-linear-gradient(45deg, #ececec, #ececec 10px, #f7f5f2 10px, #f7f5f2 20px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-mid);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0 10px;
      text-align: center;
    }
    .category-tile-label {
      padding: 14px;
      font-weight: 500;
      font-size: 14px;
      color: var(--text-dark);
    }

    .feature-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      background: var(--beige);
      padding: 44px 24px;
      border-radius: 8px;
    }
    .feature-item { text-align: center; padding: 10px; }
    .feature-item .feature-icon { font-size: 30px; margin-bottom: 10px; }
    .feature-item h4 {
      font-family: var(--font-serif);
      font-size: 18px;
      color: var(--maroon);
      margin-bottom: 6px;
    }
    .feature-item p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

    .cta-banner {
      background: var(--maroon);
      color: #fff;
      text-align: center;
      padding: 60px 24px;
      border-radius: 8px;
    }
    .cta-banner h2 { font-family: var(--font-serif); font-size: 28px; margin-bottom: 12px; }
    .cta-banner p { font-size: 14px; margin-bottom: 24px; opacity: 0.9; }
    .cta-banner .hero-shop-btn { background: var(--gold); }
    .cta-banner .hero-shop-btn:hover { background: var(--gold-light); }

    /* â”€â”€ LOGIN / ACCOUNT â”€â”€ */
    .auth-wrap {
      max-width: 420px;
      margin: 0 auto;
      border: 1px solid var(--beige-dark);
      border-radius: 8px;
      padding: 36px 32px;
      background: #fff;
    }
    .auth-tabs {
      display: flex;
      margin-bottom: 26px;
      border-bottom: 1px solid var(--beige-dark);
    }
    .auth-tab {
      flex: 1;
      text-align: center;
      padding: 10px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-mid);
      border-bottom: 2px solid transparent;
      background: none;
      border-top: none; border-left: none; border-right: none;
      font-family: var(--font-sans);
    }
    .auth-tab.active { color: var(--maroon); border-bottom-color: var(--maroon); font-weight: 600; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-size: 13px;
      margin-bottom: 6px;
      color: var(--text-dark);
      font-weight: 500;
    }
    .form-group input {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid var(--beige-dark);
      border-radius: 4px;
      font-family: var(--font-sans);
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus { border-color: var(--gold); }
    .auth-submit-btn {
      width: 100%;
      background: var(--maroon);
      color: #fff;
      border: none;
      padding: 13px;
      border-radius: 2px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      margin-top: 6px;
    }
    .auth-submit-btn:hover { background: var(--maroon-dark); }
    .auth-error {
      color: #b33333;
      font-size: 13px;
      margin-bottom: 14px;
      background: #fbeaea;
      padding: 8px 12px;
      border-radius: 4px;
      display: none;
    }
    .auth-switch-note { text-align: center; font-size: 13px; color: var(--text-mid); margin-top: 18px; }
    .auth-switch-note a { color: var(--maroon); font-weight: 600; text-decoration: none; cursor: pointer; }

    .account-dashboard { max-width: 700px; margin: 0 auto; }
    .account-card {
      border: 1px solid var(--beige-dark);
      border-radius: 8px;
      padding: 24px;
      margin-bottom: 20px;
    }
    .account-card h3 {
      font-family: var(--font-serif);
      color: var(--maroon);
      margin-bottom: 12px;
      font-size: 18px;
    }
    .account-row {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid var(--beige-dark);
      font-size: 14px;
    }
    .account-row:last-child { border-bottom: none; }
    .account-row span:first-child { color: var(--text-mid); }
    .logout-btn {
      background: transparent;
      border: 1.5px solid var(--maroon);
      color: var(--maroon);
      padding: 10px 24px;
      border-radius: 2px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
    }
    .logout-btn:hover { background: var(--maroon); color: #fff; }

    /* â”€â”€ SIZE SELECTOR â”€â”€ */
    .size-btn {
      min-width: 44px;
      padding: 8px 12px;
      background: var(--white);
      border: 1px solid var(--beige-dark);
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      color: var(--text-dark);
      transition: all 0.15s;
    }
    .size-btn:hover { border-color: var(--gold); }
    .size-btn.active {
      background: var(--maroon);
      color: var(--white);
      border-color: var(--maroon);
    }

    /* â”€â”€ TESTIMONIALS â”€â”€ */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 24px;
      max-width: 1280px;
      margin: 0 auto;
    }
    .testimonial-card {
      background: var(--beige);
      border: 1px solid var(--beige-dark);
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .testimonial-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      object-position: top center;
    }
    .testimonial-body { padding: 16px; }
    .star-rating {
      color: var(--gold);
      font-size: 15px;
      letter-spacing: 1px;
    }
    .rating-num {
      color: var(--text-mid);
      font-size: 12px;
      letter-spacing: normal;
      margin-left: 4px;
    }
    .testimonial-text {
      font-size: 13px;
      color: var(--text-dark);
      line-height: 1.6;
      margin: 10px 0 12px;
    }
    .testimonial-badge {
      display: inline-block;
      background: var(--maroon);
      color: var(--white);
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 4px 10px;
      border-radius: 20px;
    }

    /* â”€â”€ CHECKOUT â”€â”€ */
    .checkout-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      max-width: 980px;
      margin: 0 auto;
    }
    @media (max-width: 800px) {
      .checkout-grid { grid-template-columns: 1fr; }
    }
    .checkout-col { display: flex; flex-direction: column; gap: 24px; }
    .checkout-card {
      background: var(--beige);
      border: 1px solid var(--beige-dark);
      border-radius: 8px;
      padding: 24px;
    }
    .checkout-card-title {
      font-family: var(--font-serif);
      color: var(--maroon);
      font-size: 20px;
      margin-bottom: 14px;
    }
    .checkout-input {
      width: 100%;
      padding: 10px 12px;
      margin-bottom: 12px;
      border: 1px solid var(--beige-dark);
      border-radius: 4px;
      font-family: var(--font-sans);
      font-size: 14px;
      background: var(--white);
      resize: vertical;
    }
    .checkout-input:focus { outline: none; border-color: var(--gold); }
    .pay-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }
    .pay-tab {
      flex: 1;
      min-width: 100px;
      padding: 10px 8px;
      background: var(--white);
      border: 1px solid var(--beige-dark);
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
      color: var(--text-mid);
      transition: all 0.2s;
    }
    .pay-tab.active {
      background: var(--maroon);
      color: var(--white);
      border-color: var(--maroon);
    }
    .upi-box {
      text-align: center;
      background: var(--white);
      border: 1px solid var(--beige-dark);
      border-radius: 8px;
      padding: 18px;
      margin-bottom: 16px;
    }
    .upi-qr-img {
      width: 180px;
      height: auto;
      border-radius: 6px;
      margin-bottom: 12px;
    }
    .upi-id-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      word-break: break-all;
    }
    .copy-btn {
      background: var(--gold);
      color: var(--white);
      border: none;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 11px;
      cursor: pointer;
      white-space: nowrap;
    }
    .copy-btn:hover { background: var(--gold-light); }

    /* â”€â”€ FOOTER â”€â”€ */
    footer {
      background: var(--sage);
      padding: 60px 40px 30px;
      margin-top: 60px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 40px;
    }
    @media (max-width: 800px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    /* WordPress and WooCommerce responsive hardening */
    img, video, iframe {
      max-width: 100%;
      height: auto;
    }

    a {
      color: inherit;
    }

    .custom-logo {
      max-width: 190px;
      height: auto;
      display: block;
    }

    .brand-logo-container img {
      max-height: 58px;
      width: auto;
    }

    .product-title a,
    .product-cat a,
    footer a {
      text-decoration: none;
    }

    .product-info .button,
    .single_add_to_cart_button,
    .checkout-button,
    .wc-block-components-button,
    .woocommerce-button,
    .button {
      background: var(--maroon);
      color: var(--white);
      border: none;
      border-radius: 4px;
      padding: 10px 14px;
      font-family: var(--font-sans);
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      max-width: 100%;
      white-space: normal;
    }

    .product-info .button:hover,
    .single_add_to_cart_button:hover,
    .checkout-button:hover,
    .woocommerce-button:hover,
    .button:hover {
      background: var(--maroon-dark);
      color: var(--white);
    }

    .price-row .price,
    .price-row .woocommerce-Price-amount,
    .sale-price,
    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
      color: var(--maroon);
      font-weight: 600;
    }

    .woocommerce ul.products {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
      padding: 20px 0;
      margin: 0;
    }

    .woocommerce ul.products li.product {
      width: auto;
      margin: 0;
      float: none;
      list-style: none;
    }

    .woocommerce-notices-wrapper,
    .woocommerce-result-count,
    .woocommerce-ordering,
    .woocommerce-pagination,
    .page-content,
    .woocommerce-cart-form,
    .cart-collaterals,
    .woocommerce-checkout,
    .woocommerce-account .woocommerce {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .woocommerce table.shop_table,
    .woocommerce-cart-form,
    .woocommerce-checkout,
    .woocommerce-account .woocommerce,
    .page-content {
      width: 100%;
      overflow-x: auto;
    }

    .woocommerce input.input-text,
    .woocommerce textarea,
    .woocommerce select,
    .input-text {
      width: 100%;
      max-width: 100%;
      border: 1px solid var(--beige-dark);
      border-radius: 4px;
      padding: 10px 12px;
      font-family: var(--font-sans);
    }

    .woocommerce div.product {
      max-width: 1100px;
      margin: 0 auto;
    }

    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
      margin-bottom: 28px;
    }

    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error {
      border-top-color: var(--gold);
      background: var(--beige);
      color: var(--text-dark);
      word-break: break-word;
    }

    .whatsapp-btn {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 1000;
      background: #25d366;
      color: #fff;
      border-radius: 999px;
      padding: 12px 16px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    }

    @media (max-width: 900px) {
      .header-top {
        padding: 10px 16px;
        gap: 12px;
        flex-wrap: wrap;
      }

      .brand-logo-container {
        flex: 0 0 auto;
        padding: 5px 12px;
      }

      .brand-logo-title {
        font-size: 14px;
        letter-spacing: 1.4px;
      }

      .search-bar {
        order: 3;
        flex-basis: 100%;
        min-width: 0;
      }

      .header-icons {
        margin-left: auto;
        gap: 12px;
      }

      .header-icons a {
        font-size: 12px;
      }

      .header-nav {
        position: sticky;
        top: 104px;
        justify-content: flex-start;
        gap: 22px;
        overflow-x: auto;
        padding: 10px 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .header-nav::-webkit-scrollbar {
        display: none;
      }

      .header-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
      }

      .home-section,
      .view-container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .product-grid,
      .woocommerce ul.products,
      .category-tile-grid,
      .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }

      .product-img-wrap {
        height: 230px;
      }
    }

    @media (max-width: 600px) {
      html,
      body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }

      .header-top {
        align-items: center;
      }

      .header-icons span:not(.icon-badge) {
        display: none;
      }

      .icon-badge {
        right: -10px;
      }

      .header-nav {
        top: 102px;
      }

      .hero-section {
        padding: 32px 16px;
        gap: 24px;
      }

      .hero-content h1 {
        font-size: 34px;
        line-height: 1.05;
      }

      .hero-content p,
      .home-section-sub,
      .page-sub {
        font-size: 14px;
      }

      .hero-placeholder {
        width: 100%;
        min-height: 240px;
      }

      .home-section {
        padding-top: 42px;
        padding-bottom: 42px;
      }

      .home-section-title,
      .page-title {
        font-size: 30px;
        line-height: 1.1;
      }

      .product-grid,
      .woocommerce ul.products,
      .category-tile-grid,
      .testimonial-grid,
      .feature-strip,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .product-img-wrap {
        height: auto;
        aspect-ratio: 4 / 5;
      }

      .product-info,
      .testimonial-body {
        min-width: 0;
      }

      .product-title,
      .product-title a,
      .testimonial-text,
      .category-tile-label,
      .checkout-card-title {
        overflow-wrap: anywhere;
      }

      .cta-banner {
        padding: 32px 16px;
      }

      .cta-banner h2 {
        font-size: 28px;
      }

      .woocommerce table.shop_table_responsive tr,
      .woocommerce-page table.shop_table_responsive tr {
        display: block;
      }

      .woocommerce .cart-collaterals .cart_totals,
      .woocommerce-page .cart-collaterals .cart_totals,
      .woocommerce div.product div.images,
      .woocommerce div.product div.summary {
        float: none;
        width: 100%;
      }

      .whatsapp-btn {
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
      }
    }

    .footer-bottom {
      border-top: 1px solid var(--beige-dark);
      padding-top: 20px;
      text-align: center;
      font-size: 12px;
      color: var(--text-mid);
    }

    /* â”€â”€ WHATSAPP BUTTON â”€â”€ */
    .whatsapp-btn {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 52px;
      height: 52px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      box-shadow: 0 4px 16px rgba(37,211,102,0.4);
      text-decoration: none;
      transition: transform 0.2s ease;
    }
    .whatsapp-btn:hover { transform: scale(1.08); }
