/* =========================================
   BLANKS & ACCESSORIES — GATEWAY CARDS
   ========================================= */

.gateway-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

.gateway-section{
  margin-top: 3.5rem;
}


.gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 320px));
  justify-content: center;
  gap: 2rem;
}

.gateway-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.6rem 1.8rem 1.9rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.gateway-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.gateway-title {
  font-size: 1.15rem;
  font-weight: 650;
  margin-bottom: 0.45rem;
}

.gateway-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

.gateway-card .btn {
  font-size: 0.9rem;
  padding: 0.55rem 1.2rem;
   margin-top: auto; 
}

/* =====================================
   ACCESSORIES  SECTION POP
   ===================================== */

.accessories-page .category-section {
  background: rgba(26, 52, 86, 0.03); /* ultra-light navy wash */
  border-radius: 14px;
  padding: 2.25rem 2rem;
  margin-bottom: 3.5rem;
}

/* =====================================
   ACCESSORIES  FIX IMAGE/TEXT STACKING
   ===================================== */

/* Establish stacking context ONLY for accessories cards */
.accessories-page .product-card {
  position: relative;
}

/* Image layer stays below text */
.accessories-page .product-image {
  position: relative;
  z-index: 1;
}

/* Text + CTA always stay on top */
.accessories-page .product-info {
  position: relative;
  z-index: 2;
}


.accessories-page .product-cta {
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.accessories-page .product-card:hover .product-cta {
  opacity: 1;
  color: #c5152a;
  text-decoration: underline;
}

/* =====================================
   ACCESSORIES  CARD HOVER BORDER
   ===================================== */

.accessories-page .product-card:hover {
  outline: 1px solid rgba(197, 21, 42, 0.28); /* brand red, very light */
  outline-offset: -1px;
}

/* =====================================
   ACCESSORIES  SECTION FRAMING
   ===================================== */

.accessories-page .category-section {
  border: 1px solid rgba(0, 0, 0, 0.09);
}


/* =====================================
   SUPPORTING GATEWAY CARDS
   ===================================== */

.supporting-gateways {
  margin-top: 4rem;
  padding-top: 2.8rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.gateway-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 26px 50px rgba(0,0,0,0.28),
    0 0 0 1px rgba(197,21,42,0.25);
	}


.supporting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 880px;
  margin: 0 auto;
}

.supporting-card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  background: #f7f9fc;
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  text-align: center;
  text-decoration: none;
  color: inherit;

  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.supporting-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.18),
    0 0 0 1px rgba(26,52,86,0.18);
}

/* Icon */
.supporting-icon{
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 44px;     /* ← THIS is the size control for emoji */
  line-height: 1;      /* prevents extra vertical space */
  margin: 0 auto 0.9rem;

  filter: grayscale(20%);
  opacity: 0.9;
  
  transition: transform 0.25s ease;
}

.supporting-card:hover .supporting-icon{
  transform: scale(1.08);
}

.supporting-icon img {
  width: 100%;
  height: auto;
  opacity: 0.85;
}

/* Text */
.supporting-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.supporting-card p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #444;
  margin-bottom: 0.8rem;
}

/* Softer CTA */
.supporting-cta{
  margin-top: auto;          /* 🔑 THIS fixes alignment */
  padding-top: 0.8rem;

  font-size: 0.85rem;
  font-weight: 600;
  color: #1a3456;
  opacity: 0.85;   
}

/* Normalize product image height so text aligns */

.accessories-page .product-image {
  height: 220px;              /* adjust slightly if needed */
  display: flex;
  align-items: center;
  justify-content: center;
}





/* Responsive */
@media (max-width: 900px) {
  .gateway-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 600px) {
  .gateway-grid {
    grid-template-columns: 1fr;
  }
}
