  :root {
            --prm-amc-prd-primary: #111111;
            --prm-amc-prd-accent: #d4af77;
            --prm-amc-prd-text: #111111;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background: #ffffff;
            color: var(--prm-amc-prd-text);
            line-height: 1.6;
        }









  .amx-hr-sec {
      position: relative;
      width: 100%;
      padding: 1%;
      background: #ffffff;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      color: #111111;
      margin: 100px auto;
    }

    .amx-hr-sec-container {
      width: 100%;
      /* max-width: 1180px; */
      padding: 0 15px;
      margin: 0 auto;
    }

    .amx-hr-sec-content {
      text-align: center;
      max-width: 820px;
      margin: 0 auto;
    }

    .amx-hr-sec-h1 {
      font-size: clamp(2.6rem, 6.8vw, 4.2rem);
      font-weight: 700;
      letter-spacing: -0.8px;
      line-height: 1.12;
      margin: 0 0 28px;
      color: #000000;
    }

    .amx-hr-sec-subtitle {
      font-size: clamp(1.18rem, 2.4vw, 1.42rem);
      font-weight: 400;
      color: #444444;
      line-height: 1.45;
      margin: 0 0 54px;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .amx-hr-sec-buttons {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .amx-hr-sec-btn {
      position: relative;
      padding: 16px 40px;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.4px;
      text-decoration: none;
      text-transform: uppercase;
      border-radius: 50px;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 220px;
    }

    .amx-hr-sec-btn:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 38px rgba(0,0,0,0.12);
    }

    /* Gold button – premium metallic gold */
    .amx-hr-sec-btn-gold {
      background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
      color: #0f0f0f;
      box-shadow: 0 8px 24px rgba(212,175,55,0.28);
    }

    .amx-hr-sec-btn-gold:hover {
      background: linear-gradient(135deg, #e6c456 0%, #d4af37 50%, #e6c456 100%);
      box-shadow: 0 16px 36px rgba(212,175,55,0.38);
    }

    /* Metal / Platinum button – clean metallic look */
    .amx-hr-sec-btn-metal {
      background: linear-gradient(145deg, #f8f8f8, #e0e0e0);
      color: #111111;
      border: 1px solid #d0d0d0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .amx-hr-sec-btn-metal:hover {
      background: linear-gradient(145deg, #ffffff, #f0f0f0);
      border-color: #b8b8b8;
      box-shadow: 0 16px 36px rgba(0,0,0,0.12);
    }

    /* Subtle shine / highlight effect */
    .amx-hr-sec-btn::after {
      content: '';
      position: absolute;
      top: -60%;
      left: -120%;
      width: 50%;
      height: 220%;
      background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.55),
        transparent
      );
      transform: skewX(-20deg);
      transition: left 0.8s ease;
      pointer-events: none;
    }

    .amx-hr-sec-btn:hover::after {
      left: 220%;
    }

    .amx-hr-sec-btn-text {
      position: relative;
      z-index: 2;
    }

    /* ────────────────────────────────────────────────
       Responsive adjustments
    ──────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .amx-hr-sec {
        padding: 110px 0 90px;
      }
      .amx-hr-sec-h1 {
        font-size: clamp(2.8rem, 7vw, 3.8rem);
      }
    }

    @media (max-width: 768px) {
      .amx-hr-sec {
        padding: 90px 0 80px;
      }
      .amx-hr-sec-h1 {
        font-size: clamp(2.4rem, 6.5vw, 3.2rem);
      }
      .amx-hr-sec-subtitle {
        font-size: 1.24rem;
        margin-bottom: 48px;
      }
      .amx-hr-sec-buttons {
        flex-direction: column;
        gap: 20px;
      }
      .amx-hr-sec-btn {
        min-width: 280px;
        padding: 18px 48px;
      }
    }

    @media (max-width: 480px) {
      .amx-hr-sec {
        padding: 80px 0 70px;
      }
      .amx-hr-sec-h1 {
        font-size: 2.6rem;
        letter-spacing: -0.6px;
      }
      .amx-hr-sec-subtitle {
        font-size: 1.15rem;
      }
      .amx-hr-sec-btn {
        min-width: 260px;
        padding: 16px 44px;
        font-size: 1rem;
      }
    }






        
        /* PRODUCTS SECTION - EXACTLY LIKE SHOPIFY STYLE */
        .prm-amc-prd-products-section {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .prm-amc-prd-products-header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .prm-amc-prd-products-header h2 {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--prm-amc-prd-primary);
        }
        
        .prm-amc-prd-products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: center;
            justify-content: center;
            /* gap: 15px; */
            max-width: 1400px;
            margin: 10px;
        }
        
        /* SINGLE PRODUCT CARD */
        .prm-amc-prd-product-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); */
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            /* min-width: 400px; */
            margin: 15px 10px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .prm-amc-prd-product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        }
        
        /* IMAGE CONTAINER - 400px max width × 320px height */
        .prm-amc-prd-product-image-wrapper {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            /* background: #f8f8f8; */
        }
        
        .prm-amc-prd-product-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .prm-amc-prd-product-card:hover img {
            transform: scale(1.07);
        }
        
        /* GOLDEN SHINY 10% OFF BADGE - CONTINUOUSLY MOVING */
        .prm-amc-prd-sale-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(90deg, #d4ce77, #f0e9a8, #cac410, #f0d9a8);
            background-size: 300% 300%;
            color: #111111;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 8px 14px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(212, 175, 119, 0.35);
            animation: prm-amc-prd-shine 3.5s linear infinite;
            z-index: 2;
            text-transform: uppercase;
        }
        
        @keyframes prm-amc-prd-shine {
            0% { background-position: 0% 50%; }
            50% { background-position: 300% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* PRODUCT INFO */
        .prm-amc-prd-product-info {
            padding: 24px 28px 32px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .prm-amc-prd-product-name {
            font-size: 22px;
            font-weight: 600;
            color: #111111;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        
        /* BOTTOM ROW - PRICE LEFT | RATING + BUTTON RIGHT */
        .prm-amc-prd-product-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }
        
        .prm-amc-prd-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--prm-amc-prd-primary);
        }
        
        .prm-amc-prd-rating-group {
            display: flex;
            align-items: center;
            gap: 2px;
            font-size: 12px;
        }
        
        .prm-amc-prd-rating-group i {
            color: #ffe015;
        }
        
        .prm-amc-prd-rating-text {
            color: #666;
            font-weight: 500;
            margin-left: 4px;
        }
        
        /* VIEW BUTTON */
        .prm-amc-prd-view-btn {
            display: inline-block;
            background: var(--prm-amc-prd-primary);
            border: 1px solid var(--prm-amc-prd-primary);
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
        }
        
        .prm-amc-prd-view-btn:hover {
            background: transparent;
            color: #111111;
            transform: translateY(-2px);
        }



.crd-btm-info{
  display: flex;
  align-items: center;
  gap: 16px;  
}





        
        /* RESPONSIVE - EXACTLY LIKE SHOPIFY */
        @media (max-width: 1200px) {
            .prm-amc-prd-products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .prm-amc-prd-products-grid {
                grid-template-columns: 1fr;
            }
            .prm-amc-prd-products-section {
                margin: 50px auto;
                padding: 0 15px;
            }
            .prm-amc-prd-product-image-wrapper {
                /* height: 300px; */
            }
        }
        
        @media (max-width: 480px) {
            .prm-amc-prd-product-card {
                max-width: 100%;
            }
        }



         @media (max-width: 550px) {

.prm-amc-prd-product-card{
  margin: 25px 8px;
}
.prm-amc-prd-products-section{
  padding: 0px 5px;
}

         .prm-amc-prd-products-grid {
            grid-template-columns: repeat(2, 1fr);
            margin: 10px 0px;
         }
         .prm-amc-prd-product-image-wrapper{
          height: auto;
         }
         .prm-amc-prd-product-image-wrapper img{
          height: auto;
         }

.prm-amc-prd-product-info{
  padding: 8px;
  flex-grow: 0;
}

.prm-amc-prd-product-bottom{
  display: block;
}


.card-btm-bt{
  display: block;
}

.prm-amc-prd-view-btn{
  margin-top: 8px;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 12px;
}

.prm-amc-prd-sale-badge{
  top: 8px;
  left: 8px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
}

.crd-btm-info{
  display: block;
}

        }