/* =========================================================
   RENBUYMALL — STOREFRONT DESIGN SYSTEM
   Brand: Navy #092c63 · Orange #f36b00
========================================================= */

:root{
  --rbm-navy:#092c63;
  --rbm-navy-dark:#061d42;
  --rbm-orange:#f36b00;
  --rbm-orange-light:#ff9d31;
  --rbm-bg:#f5f7fb;
  --rbm-text:#33394a;
  --rbm-muted:#788292;
  --rbm-border:#e5e9f0;
  --rbm-white:#ffffff;
  --rbm-radius:14px;
  --rbm-shadow:0 10px 30px rgba(9,44,99,.08);
  font-size:16px;
}

*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:"Manrope","Poppins",Arial,sans-serif;
  color:var(--rbm-text);
  background:var(--rbm-bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;}
input,select,textarea{font-family:inherit;}

.rbm-container{width:100%;max-width:1320px;margin:0 auto;padding:0 20px;}

h1,h2,h3,h4,h5{font-family:"Poppins",Arial,sans-serif;color:var(--rbm-navy);font-weight:800;letter-spacing:-.5px;}

/* =========================================================
   TOP UTILITY BAR
========================================================= */
.rbm-topbar{background:var(--rbm-navy);color:rgba(255,255,255,.85);font-size:12px;}
.rbm-topbar-inner{display:flex;align-items:center;justify-content:space-between;padding:8px 20px;}
.rbm-topbar-links{display:flex;gap:18px;}
.rbm-topbar-links a:hover{color:var(--rbm-orange-light);}

/* =========================================================
   HEADER
========================================================= */
.rbm-header{background:var(--rbm-white);position:sticky;top:0;z-index:100;box-shadow:0 2px 14px rgba(9,44,99,.06);}
.rbm-header-inner{display:flex;align-items:center;gap:30px;padding:16px 20px;}

.rbm-logo{display:flex;align-items:center;gap:9px;flex-shrink:0;}
.rbm-logo-mark{
  width:38px;height:38px;border-radius:11px;
  background:linear-gradient(135deg,var(--rbm-orange-light),var(--rbm-orange));
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-family:"Poppins";font-weight:800;font-size:19px;
}
.rbm-logo-text{font-family:"Poppins";font-weight:700;font-size:21px;color:var(--rbm-navy);}
.rbm-logo-text b{color:var(--rbm-orange);font-weight:800;}

.rbm-search{flex:1;display:flex;max-width:640px;background:#f2f4f8;border:1px solid var(--rbm-border);border-radius:50px;overflow:hidden;}
.rbm-search input{flex:1;border:0;background:transparent;padding:12px 18px;font-size:13px;outline:none;}
.rbm-search button{background:var(--rbm-orange);border:0;color:#fff;width:46px;display:flex;align-items:center;justify-content:center;}

.rbm-header-actions{display:flex;align-items:center;gap:22px;flex-shrink:0;}
.rbm-action{position:relative;display:flex;flex-direction:column;align-items:center;gap:2px;font-size:10px;font-weight:600;color:var(--rbm-navy);}
.rbm-action svg{color:var(--rbm-navy);}
.rbm-action:hover{color:var(--rbm-orange);}
.rbm-action:hover svg{color:var(--rbm-orange);}
.rbm-badge{position:absolute;top:-6px;right:-10px;background:var(--rbm-orange);color:#fff;font-size:9px;font-weight:700;width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center;}

/* =========================================================
   NAVBAR / MEGA MENU
========================================================= */
.rbm-navbar{background:var(--rbm-navy);}
.rbm-navbar-inner{display:flex;align-items:center;gap:26px;position:relative;}
.rbm-allcats-btn{
  background:var(--rbm-orange);color:#fff;border:0;padding:13px 18px;
  display:flex;align-items:center;gap:8px;font-size:12px;font-weight:700;
  border-radius:0;flex-shrink:0;
}
.rbm-navlinks{display:flex;gap:22px;padding:13px 0;overflow-x:auto;}
.rbm-navlinks li a{color:rgba(255,255,255,.88);font-size:12px;font-weight:600;white-space:nowrap;}
.rbm-navlinks li a:hover{color:var(--rbm-orange-light);}
.rbm-nav-highlight{color:var(--rbm-orange-light)!important;}

.rbm-megamenu{
  display:none;position:absolute;top:100%;left:0;
  background:#fff;box-shadow:0 25px 60px rgba(9,44,99,.18);
  border-radius:0 0 14px 14px;padding:26px;
  grid-template-columns:repeat(4,1fr);gap:22px;
  width:920px;max-width:90vw;z-index:200;
}
.rbm-megamenu.show{display:grid;}
.rbm-megamenu-title{display:block;color:var(--rbm-navy);font-weight:700;font-size:13px;margin-bottom:10px;padding-bottom:8px;border-bottom:2px solid var(--rbm-orange);}
.rbm-megamenu-col ul li{margin-bottom:6px;}
.rbm-megamenu-col ul li a{color:var(--rbm-muted);font-size:11.5px;}
.rbm-megamenu-col ul li a:hover{color:var(--rbm-orange);}

/* =========================================================
   FLASH MESSAGES
========================================================= */
.rbm-flash{margin-top:14px;padding:12px 18px;border-radius:10px;font-size:13px;font-weight:600;}
.rbm-flash-success{background:#e7f7ee;color:#1c7d47;border:1px solid #bfe9d1;}
.rbm-flash-error{background:#fdecec;color:#c0392b;border:1px solid #f6c9c6;}
.rbm-flash-info{background:#eaf1fb;color:var(--rbm-navy);border:1px solid #cfe0f6;}

/* =========================================================
   BUTTONS
========================================================= */
.rbm-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 24px;border-radius:9px;font-size:12.5px;font-weight:700;border:0;transition:all .2s ease;}
.rbm-btn-primary{background:var(--rbm-navy);color:#fff;box-shadow:0 10px 22px rgba(9,44,99,.18);}
.rbm-btn-primary:hover{background:var(--rbm-orange);transform:translateY(-2px);}
.rbm-btn-accent{background:var(--rbm-orange);color:#fff;box-shadow:0 10px 22px rgba(243,107,0,.22);}
.rbm-btn-accent:hover{background:var(--rbm-navy);transform:translateY(-2px);}
.rbm-btn-outline{background:#fff;border:1.5px solid var(--rbm-border);color:var(--rbm-navy);}
.rbm-btn-outline:hover{border-color:var(--rbm-orange);color:var(--rbm-orange);}
.rbm-btn-block{width:100%;}
.rbm-btn-sm{padding:9px 14px;font-size:11px;}
.rbm-btn:disabled{opacity:.55;cursor:not-allowed;}

/* =========================================================
   SECTION HEADER (shared across home sections)
========================================================= */
.rbm-section{padding:60px 0;}
.rbm-sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:32px;}
.rbm-sec-tag{display:inline-flex;align-items:center;gap:7px;color:var(--rbm-orange);font-size:11px;font-weight:700;letter-spacing:.6px;text-transform:uppercase;margin-bottom:8px;}
.rbm-sec-tag::before{content:"";width:18px;height:2px;background:var(--rbm-orange);display:inline-block;}
.rbm-sec-head h2{font-size:30px;}
.rbm-sec-head h2 span{color:var(--rbm-orange);}
.rbm-sec-head p{color:var(--rbm-muted);font-size:13px;max-width:520px;margin-top:6px;}
.rbm-sec-link{flex-shrink:0;display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:700;color:var(--rbm-navy);padding:10px 16px;border:1.5px solid var(--rbm-border);border-radius:8px;}
.rbm-sec-link:hover{border-color:var(--rbm-orange);color:var(--rbm-orange);}

/* =========================================================
   HOME · HERO BANNER (single wide banner style — different
   layout from a slider to keep the design distinct)
========================================================= */
.rbm-hero{padding:26px 0 0;}
.rbm-hero-grid{display:grid;grid-template-columns:2.2fr 1fr;gap:18px;}
.rbm-hero-main{
  position:relative;border-radius:22px;overflow:hidden;min-height:420px;
  background:linear-gradient(120deg,var(--rbm-navy) 0%,#0d3c80 65%,#124b96 100%);
  display:flex;align-items:center;color:#fff;
}
.rbm-hero-main-content{position:relative;z-index:3;padding:50px 55px;max-width:560px;}
.rbm-hero-eyebrow{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.12);padding:7px 14px;border-radius:50px;font-size:10.5px;font-weight:700;letter-spacing:.5px;margin-bottom:18px;}
.rbm-hero-eyebrow i{width:7px;height:7px;border-radius:50%;background:var(--rbm-orange-light);display:inline-block;}
.rbm-hero-main-content h1{color:#fff;font-size:46px;line-height:1.08;margin-bottom:16px;letter-spacing:-1.5px;}
.rbm-hero-main-content h1 span{color:var(--rbm-orange-light);}
.rbm-hero-main-content p{color:rgba(255,255,255,.78);font-size:13px;margin-bottom:26px;max-width:440px;}
.rbm-hero-circle{position:absolute;border-radius:50%;background:rgba(255,255,255,.06);}
.rbm-hero-circle.c1{width:300px;height:300px;right:-70px;top:-60px;}
.rbm-hero-circle.c2{width:200px;height:200px;right:60px;bottom:-90px;}

.rbm-hero-side{display:flex;flex-direction:column;gap:18px;}
.rbm-hero-card{
  position:relative;border-radius:18px;overflow:hidden;min-height:195px;
  display:flex;align-items:flex-end;padding:22px;color:#fff;
}
.rbm-hero-card::before{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(9,44,99,.85),rgba(9,44,99,.15));z-index:1;}
.rbm-hero-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.rbm-hero-card-content{position:relative;z-index:2;}
.rbm-hero-card-content span{font-size:9px;font-weight:700;color:var(--rbm-orange-light);letter-spacing:.5px;}
.rbm-hero-card-content h3{color:#fff;font-size:16px;margin:5px 0 0;}

/* =========================================================
   HOME · TRUST STRIP
========================================================= */
.rbm-trust-strip{background:#fff;border-radius:18px;margin-top:-34px;position:relative;z-index:5;box-shadow:var(--rbm-shadow);}
.rbm-trust-inner{display:grid;grid-template-columns:repeat(4,1fr);}
.rbm-trust-item{display:flex;align-items:center;gap:13px;padding:22px 24px;border-right:1px solid var(--rbm-border);}
.rbm-trust-item:last-child{border-right:0;}
.rbm-trust-icon{width:44px;height:44px;border-radius:12px;background:#fff1e5;color:var(--rbm-orange);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.rbm-trust-item h4{font-size:12.5px;color:var(--rbm-navy);}
.rbm-trust-item p{font-size:10.5px;color:var(--rbm-muted);margin-top:2px;}

/* =========================================================
   HOME · CATEGORY RAIL (circular icons, distinct from card-grid)
========================================================= */
.rbm-catrail{display:grid;grid-template-columns:repeat(8,1fr);gap:14px;}
.rbm-catrail-item{background:#fff;border:1px solid var(--rbm-border);border-radius:16px;padding:20px 10px;text-align:center;transition:all .25s ease;}
.rbm-catrail-item:hover{border-color:var(--rbm-orange);transform:translateY(-4px);box-shadow:var(--rbm-shadow);}
.rbm-catrail-icon{width:56px;height:56px;border-radius:50%;background:#f2f4f8;margin:0 auto 12px;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.rbm-catrail-icon img{width:100%;height:100%;object-fit:cover;}
.rbm-catrail-item span{font-size:10.5px;font-weight:700;color:var(--rbm-navy);}

/* =========================================================
   PRODUCT GRID + CARD
========================================================= */
.rbm-product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.rbm-pcard{background:#fff;border:1px solid var(--rbm-border);border-radius:16px;overflow:hidden;position:relative;transition:all .25s ease;}
.rbm-pcard:hover{box-shadow:var(--rbm-shadow);transform:translateY(-4px);border-color:transparent;}
.rbm-pcard-img{position:relative;height:190px;background:#f7f9fc;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.rbm-pcard-img img{width:100%;height:100%;object-fit:contain;padding:14px;transition:transform .4s ease;}
.rbm-pcard:hover .rbm-pcard-img img{transform:scale(1.06);}
.rbm-pcard-badge{position:absolute;top:10px;left:10px;background:var(--rbm-orange);color:#fff;font-size:9px;font-weight:700;padding:5px 9px;border-radius:6px;z-index:2;}
.rbm-pcard-wish{position:absolute;top:10px;right:10px;width:30px;height:30px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,.1);z-index:2;color:var(--rbm-navy);border:0;}
.rbm-pcard-wish.active{color:var(--rbm-orange);}
.rbm-pcard-body{padding:14px 15px 16px;}
.rbm-pcard-cat{font-size:9px;color:var(--rbm-muted);text-transform:uppercase;letter-spacing:.4px;margin-bottom:5px;display:block;}
.rbm-pcard-title{font-size:12.5px;font-weight:600;color:var(--rbm-text);margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:32px;}
.rbm-pcard-price{display:flex;align-items:center;gap:8px;margin-bottom:11px;}
.rbm-pcard-price .now{font-size:15px;font-weight:800;color:var(--rbm-navy);}
.rbm-pcard-price .old{font-size:11px;color:var(--rbm-muted);text-decoration:line-through;}
.rbm-pcard-price .off{font-size:10px;color:#1c9a52;font-weight:700;}
.rbm-pcard-addbtn{width:100%;padding:10px;border-radius:8px;background:var(--rbm-navy);color:#fff;font-size:11px;font-weight:700;border:0;}
.rbm-pcard-addbtn:hover{background:var(--rbm-orange);}
.rbm-stars{color:var(--rbm-orange);font-size:10px;letter-spacing:1px;margin-bottom:6px;}

/* =========================================================
   HOME · PROMO BANNER STRIP
========================================================= */
.rbm-promo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.rbm-promo-card{position:relative;min-height:220px;border-radius:18px;overflow:hidden;display:flex;align-items:flex-end;padding:24px;color:#fff;}
.rbm-promo-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.rbm-promo-card::before{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(9,44,99,.9) 5%,rgba(9,44,99,.15) 75%);z-index:1;}
.rbm-promo-body{position:relative;z-index:2;}
.rbm-promo-body span{font-size:9px;font-weight:700;color:var(--rbm-orange-light);letter-spacing:.6px;}
.rbm-promo-body h3{color:#fff;font-size:19px;margin:6px 0 12px;}
.rbm-promo-body a{display:inline-flex;align-items:center;gap:6px;background:#fff;color:var(--rbm-navy);font-size:10.5px;font-weight:700;padding:9px 14px;border-radius:7px;}

/* =========================================================
   HOME · TESTIMONIALS (distinct card style: centered quote)
========================================================= */
.rbm-testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.rbm-testi-card{background:#fff;border-radius:16px;padding:26px;text-align:center;border:1px solid var(--rbm-border);}
.rbm-testi-avatar{width:52px;height:52px;border-radius:50%;background:var(--rbm-navy);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;margin:0 auto 14px;}
.rbm-testi-card .rbm-stars{justify-content:center;display:flex;margin-bottom:12px;}
.rbm-testi-card p{font-size:12px;color:var(--rbm-muted);margin-bottom:14px;font-style:italic;}
.rbm-testi-card h5{font-size:12.5px;color:var(--rbm-navy);}
.rbm-testi-card small{font-size:10px;color:var(--rbm-muted);}

/* =========================================================
   HOME · NEWSLETTER / FINAL CTA
========================================================= */
.rbm-cta-band{background:linear-gradient(120deg,var(--rbm-navy),#124b96);border-radius:24px;padding:50px 55px;display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;}
.rbm-cta-band h2{color:#fff;font-size:28px;max-width:480px;}
.rbm-cta-band h2 span{color:var(--rbm-orange-light);}
.rbm-cta-band p{color:rgba(255,255,255,.75);font-size:12.5px;margin-top:8px;max-width:440px;}
.rbm-cta-form{display:flex;gap:10px;flex-shrink:0;}
.rbm-cta-form input{padding:14px 18px;border-radius:9px;border:0;width:260px;font-size:12.5px;}

/* =========================================================
   BREADCRUMB
========================================================= */
.rbm-breadcrumb{padding:16px 0;font-size:11.5px;color:var(--rbm-muted);}
.rbm-breadcrumb a:hover{color:var(--rbm-orange);}

/* =========================================================
   SHOP PAGE
========================================================= */
.rbm-shop-layout{display:grid;grid-template-columns:250px 1fr;gap:26px;align-items:start;padding:10px 0 60px;}
.rbm-filter-box{background:#fff;border:1px solid var(--rbm-border);border-radius:14px;padding:18px;margin-bottom:16px;}
.rbm-filter-box h5{font-size:12px;color:var(--rbm-navy);margin-bottom:12px;text-transform:uppercase;letter-spacing:.4px;}
.rbm-filter-box ul li{margin-bottom:9px;}
.rbm-filter-box ul li a{font-size:12px;color:var(--rbm-muted);display:flex;justify-content:space-between;}
.rbm-filter-box ul li a:hover,.rbm-filter-box ul li a.active{color:var(--rbm-orange);font-weight:700;}
.rbm-filter-box label{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--rbm-muted);margin-bottom:9px;}
.rbm-shop-toolbar{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px;flex-wrap:wrap;gap:10px;}
.rbm-shop-toolbar select{padding:9px 12px;border-radius:8px;border:1px solid var(--rbm-border);font-size:12px;}
.rbm-price-inputs{display:flex;gap:8px;align-items:center;}
.rbm-price-inputs input{width:70px;padding:7px 8px;border:1px solid var(--rbm-border);border-radius:6px;font-size:11px;}

/* =========================================================
   PAGINATION
========================================================= */
.rbm-pagination{display:flex;justify-content:center;gap:8px;margin-top:34px;}
.rbm-pagination a,.rbm-pagination span{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:8px;border:1px solid var(--rbm-border);font-size:12px;font-weight:600;color:var(--rbm-navy);background:#fff;}
.rbm-pagination a:hover,.rbm-pagination .active{background:var(--rbm-navy);color:#fff;border-color:var(--rbm-navy);}

/* =========================================================
   PRODUCT DETAIL PAGE
========================================================= */
.rbm-product-view{display:grid;grid-template-columns:1fr 1fr;gap:44px;padding:20px 0 60px;}
.rbm-pv-gallery-main{background:#fff;border:1px solid var(--rbm-border);border-radius:18px;height:440px;display:flex;align-items:center;justify-content:center;overflow:hidden;margin-bottom:14px;}
.rbm-pv-gallery-main img{width:100%;height:100%;object-fit:contain;padding:24px;}
.rbm-pv-thumbs{display:flex;gap:10px;}
.rbm-pv-thumbs img{width:74px;height:74px;object-fit:contain;border:1.5px solid var(--rbm-border);border-radius:10px;padding:6px;background:#fff;cursor:pointer;}
.rbm-pv-thumbs img.active{border-color:var(--rbm-orange);}
.rbm-pv-title{font-size:24px;margin-bottom:10px;}
.rbm-pv-meta{display:flex;align-items:center;gap:14px;margin-bottom:16px;font-size:12px;color:var(--rbm-muted);}
.rbm-pv-price{display:flex;align-items:baseline;gap:12px;margin-bottom:18px;padding-bottom:18px;border-bottom:1px solid var(--rbm-border);}
.rbm-pv-price .now{font-size:30px;font-weight:800;color:var(--rbm-navy);}
.rbm-pv-price .old{font-size:15px;color:var(--rbm-muted);text-decoration:line-through;}
.rbm-pv-price .off{background:#fff1e5;color:var(--rbm-orange);font-size:11px;font-weight:700;padding:4px 9px;border-radius:6px;}
.rbm-pv-desc{font-size:13px;color:var(--rbm-muted);margin-bottom:22px;}
.rbm-qty-selector{display:flex;align-items:center;border:1px solid var(--rbm-border);border-radius:9px;width:fit-content;}
.rbm-qty-selector button{width:38px;height:40px;border:0;background:transparent;font-size:16px;color:var(--rbm-navy);}
.rbm-qty-selector input{width:44px;text-align:center;border:0;font-size:13px;font-weight:700;}
.rbm-pv-actions{display:flex;gap:12px;margin:22px 0;}
.rbm-pv-actions .rbm-btn{flex:1;}
.rbm-pv-tabs{display:flex;gap:26px;border-bottom:1px solid var(--rbm-border);margin:40px 0 22px;}
.rbm-pv-tabs button{background:none;border:0;padding:0 0 14px;font-size:13px;font-weight:700;color:var(--rbm-muted);border-bottom:2px solid transparent;}
.rbm-pv-tabs button.active{color:var(--rbm-navy);border-color:var(--rbm-orange);}
.rbm-review-row{display:flex;gap:14px;padding:16px 0;border-bottom:1px solid var(--rbm-border);}

/* =========================================================
   CART PAGE
========================================================= */
.rbm-cart-layout{display:grid;grid-template-columns:1fr 360px;gap:26px;padding:20px 0 60px;align-items:start;}
.rbm-cart-item{display:flex;gap:16px;background:#fff;border:1px solid var(--rbm-border);border-radius:14px;padding:16px;margin-bottom:14px;align-items:center;}
.rbm-cart-item img{width:80px;height:80px;object-fit:contain;background:#f7f9fc;border-radius:10px;padding:6px;}
.rbm-cart-item-info{flex:1;min-width:0;}
.rbm-cart-item-info h4{font-size:13px;margin-bottom:6px;}
.rbm-cart-summary{background:#fff;border:1px solid var(--rbm-border);border-radius:16px;padding:22px;}
.rbm-cart-summary h3{font-size:16px;margin-bottom:16px;}
.rbm-summary-row{display:flex;justify-content:space-between;font-size:12.5px;color:var(--rbm-muted);margin-bottom:11px;}
.rbm-summary-row.total{font-size:15px;font-weight:800;color:var(--rbm-navy);border-top:1px solid var(--rbm-border);padding-top:12px;margin-top:6px;}
.rbm-coupon-box{display:flex;gap:8px;margin:16px 0;}
.rbm-coupon-box input{flex:1;padding:11px 12px;border:1px solid var(--rbm-border);border-radius:8px;font-size:12px;}

/* =========================================================
   FORMS (auth, checkout, admin shared)
========================================================= */
.rbm-form-card{background:#fff;border:1px solid var(--rbm-border);border-radius:18px;padding:36px;max-width:460px;margin:40px auto;box-shadow:var(--rbm-shadow);}
.rbm-form-card h2{font-size:22px;margin-bottom:6px;}
.rbm-form-card p.rbm-sub{color:var(--rbm-muted);font-size:12.5px;margin-bottom:24px;}
.rbm-field{margin-bottom:16px;}
.rbm-field label{display:block;font-size:11.5px;font-weight:700;color:var(--rbm-navy);margin-bottom:7px;text-transform:uppercase;letter-spacing:.3px;}
.rbm-field input,.rbm-field select,.rbm-field textarea{
  width:100%;padding:12px 14px;border:1px solid var(--rbm-border);border-radius:9px;font-size:13px;outline:none;transition:border .2s;
}
.rbm-field input:focus,.rbm-field select:focus,.rbm-field textarea:focus{border-color:var(--rbm-orange);}
.rbm-field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.rbm-form-foot{text-align:center;font-size:12.5px;color:var(--rbm-muted);margin-top:18px;}

/* =========================================================
   GENERIC CONTENT PAGE
========================================================= */
.rbm-page{padding:30px 0 60px;}
.rbm-page-header{background:var(--rbm-navy);padding:44px 0;text-align:center;color:#fff;margin-bottom:10px;}
.rbm-page-header h1{color:#fff;font-size:30px;}
.rbm-content-box{background:#fff;border:1px solid var(--rbm-border);border-radius:16px;padding:34px;max-width:900px;margin:0 auto;}
.rbm-content-box h2{font-size:18px;margin:22px 0 10px;}
.rbm-content-box p{color:var(--rbm-muted);font-size:13px;margin-bottom:12px;}

/* =========================================================
   FOOTER
========================================================= */
.rbm-footer{background:#0a1d3d;color:rgba(255,255,255,.7);margin-top:60px;}
.rbm-footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1.4fr;gap:30px;padding:60px 20px 40px;}
.rbm-footer-col h4{color:#fff;font-size:13px;margin-bottom:16px;text-transform:uppercase;letter-spacing:.5px;}
.rbm-footer-col ul li{margin-bottom:10px;}
.rbm-footer-col ul li a{font-size:12px;}
.rbm-footer-col ul li a:hover{color:var(--rbm-orange-light);}
.rbm-footer-brand p{font-size:12px;margin:14px 0;line-height:1.7;}
.rbm-logo-footer .rbm-logo-text{color:#fff;}
.rbm-footer-social{display:flex;gap:10px;}
.rbm-footer-social a{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;font-size:11px;}
.rbm-newsletter-form{display:flex;gap:8px;margin:14px 0;}
.rbm-newsletter-form input{flex:1;padding:10px 12px;border-radius:7px;border:0;font-size:11.5px;}
.rbm-newsletter-form button{background:var(--rbm-orange);color:#fff;border:0;padding:10px 14px;border-radius:7px;font-size:11px;font-weight:700;}
.rbm-footer-contact{font-size:11px;line-height:2;margin-top:10px;}
.rbm-footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:18px 0;}
.rbm-footer-bottom-inner{display:flex;justify-content:space-between;align-items:center;font-size:11px;flex-wrap:wrap;gap:10px;}
.rbm-payment-icons{display:flex;gap:10px;}
.rbm-payment-icons span{background:rgba(255,255,255,.08);padding:5px 10px;border-radius:5px;font-size:10px;}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:1100px){
  .rbm-product-grid{grid-template-columns:repeat(3,1fr);}
  .rbm-catrail{grid-template-columns:repeat(4,1fr);}
  .rbm-trust-inner{grid-template-columns:repeat(2,1fr);}
  .rbm-footer-top{grid-template-columns:1fr 1fr;}
}
@media (max-width:900px){
  .rbm-hero-grid{grid-template-columns:1fr;}
  .rbm-hero-side{flex-direction:row;}
  .rbm-shop-layout{grid-template-columns:1fr;}
  .rbm-product-view{grid-template-columns:1fr;}
  .rbm-cart-layout{grid-template-columns:1fr;}
  .rbm-promo-grid{grid-template-columns:1fr;}
  .rbm-testi-grid{grid-template-columns:1fr;}
}
@media (max-width:700px){
  .rbm-topbar-msg{display:none;}
  .rbm-search{order:3;max-width:100%;flex-basis:100%;}
  .rbm-header-inner{flex-wrap:wrap;}
  .rbm-header-actions span{display:none;}
  .rbm-product-grid{grid-template-columns:repeat(2,1fr);}
  .rbm-catrail{grid-template-columns:repeat(3,1fr);}
  .rbm-hero-main-content h1{font-size:32px;}
  .rbm-hero-main-content{padding:32px 26px;}
  .rbm-cta-band{flex-direction:column;text-align:center;}
  .rbm-cta-form{width:100%;}
  .rbm-cta-form input{width:100%;}
  .rbm-footer-top{grid-template-columns:1fr;padding:40px 20px;}
}
