/*
 * Ocean Group – Shop CSS
 * ============================================================
 * Place this file at:
 * wp-content/themes/YOUR-THEME/assets/css/shop.css
 *
 * Then enqueue it in functions.php:
 *
 *   wp_enqueue_style(
 *     'ocean-shop',
 *     get_template_directory_uri() . '/assets/css/shop.css',
 *     [], '1.0.0'
 *   );
 *
 * Also enqueue Google Fonts in functions.php:
 *
 *   wp_enqueue_style(
 *     'ocean-fonts',
 *     'https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600&display=swap',
 *     [], null
 *   );
 * ============================================================
 */


/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */

:root {
  --teal:       #3db8b8;
  --teal-dark:  #2a9a9a;
  --teal-light: #e8f7f7;
  --white:      #ffffff;
  --off:        #f7fafa;
  --border:     #e5e5e5;
  --gray:       #888888;
  --dark:       #222222;
  --text:       #555555;
}


img {
  display: block;
  max-width: 100%;
}

.dropdown-menu>li>a{
    border: 0;
    font-family: 'Montserrat', 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #555555 !important;
    transition: color 0.12s;
    flex: 1;
}

.navbar-default .dropdown-menu {
     background: #f5f5f5;
}

.dropdown-menu>li>a:hover {
    background-color: #ffffff !important;
    color: #00b4a6 !important;
    
}

.dropdown-menu>.active>a{
    background-color: #ffffff !important;
    color: #00b4a6 !important;
}

/* ============================================================
   2. NAVIGATION
   ============================================================ */

/* ============================================================
   3. PAGE BANNER  (shop + category pages)
   ============================================================ */

/* Used on shop page */
.banner,
/* Used on category pages */
.ocean-banner {
  background: linear-gradient(120deg, #1e8a8a 0%, var(--teal) 55%, #6ddada 100%);
  padding: 180px 30px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Shop page has margin-top from fixed nav */
.banner { margin-top: 70px; }

.banner::before,
.banner::after,
.ocean-banner::before,
.ocean-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.banner::before,
.ocean-banner::before {
  width: 320px; height: 320px;
  top: -80px; right: -60px;
}

.banner::after,
.ocean-banner::after {
  width: 200px; height: 200px;
  bottom: -60px; left: -40px;
}

.ocean-banner .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
    background-color: transparent !important;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  letter-spacing: .5px;
  transition: color .2s;
}

.breadcrumb a:hover { color: #fff; }

.breadcrumb .sep  { color: rgba(255, 255, 255, .45); font-size: 12px; }
.breadcrumb .cur  { color: #fff; font-size: 12px; font-weight: 600; }

.banner h1,
.ocean-banner h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.banner p,
.ocean-banner p {
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}




.shop-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 30px 100px;
}

.sec-intro {
  text-align: center;
  margin-bottom: 55px;
}

.sec-intro h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.sec-intro h2 em {
  color: var(--teal);
  font-style: normal;
}

.rule {
  width: 55px;
  height: 3px;
  background: var(--teal);
  margin: 0 auto 14px;
  border-radius: 2px;
}

.sec-intro p {
  font-size: 14px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

/* 3-column category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.cat-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 14px 36px rgba(61, 184, 184, .16) !important;
  border-color: var(--teal) !important;
  text-decoration: none !important;
}

.cat-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

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

.cat-img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 6%, rgba(10, 70, 70, .6) 100%);
}

.cat-chip {
  position: absolute;
  bottom: 14px; left: 16px;
  background: var(--teal);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.cat-body  { padding: 22px 22px 20px; }
.cat-name  { font-family: 'Raleway', sans-serif; font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.cat-desc  { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.cat-foot  { display: flex; align-items: center; justify-content: space-between; }
.cat-count { font-size: 12px; color: var(--teal); font-weight: 700; letter-spacing: .5px; }

.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  transition: all .25s;
}

.cat-card:hover .cat-btn {
  background: var(--teal);
  color: #fff;
}

/* fade-in animation for category cards */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cat-card { opacity: 0; animation: fadeUp .5s ease forwards; }
.cat-card:nth-child(1) { animation-delay: .05s; }
.cat-card:nth-child(2) { animation-delay: .12s; }
.cat-card:nth-child(3) { animation-delay: .19s; }
.cat-card:nth-child(4) { animation-delay: .26s; }
.cat-card:nth-child(5) { animation-delay: .33s; }
.cat-card:nth-child(6) { animation-delay: .40s; }


/* ============================================================
   5. SUBCATEGORY PAGE
   ============================================================ */

.page-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 30px 100px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: .5px;
  margin-bottom: 32px;
  transition: gap .2s;
}

.back-link:hover { gap: 10px; }

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Sub-category image cards — 5 per row */
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}

.sc-card {
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.sc-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 22px rgba(61, 184, 184, .14) !important;
  border-color: var(--teal) !important;
    text-decoration:none !important;
}

.sc-card.active {
  border-color: var(--teal);
  box-shadow: 0 4px 18px rgba(61, 184, 184, .2);
}

.sc-img {
  height: 110px;
  overflow: hidden;
  position: relative;
}

.sc-img img {
  width: 100%;
  height: 110px !important;
  object-fit: contain;
  transition: transform .5s;
}

.sc-card:hover .sc-img img,
.sc-card.active .sc-img img { transform: scale(1.07); }

.sc-img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 60, 60, .5) 100%);
}

.sc-body        { padding: 10px 12px 12px; text-align: center; }
.sc-name        { font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.sc-count       { font-size: 11px; color: var(--teal); font-weight: 600;margin:0px; }

.sc-bar {
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.sc-card.active .sc-bar,
.sc-card:hover  .sc-bar { transform: scaleX(1); }

/* Products top bar */
.prod-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.prod-topbar-left h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.prod-topbar-left p { font-size: 12px; color: var(--gray); }

.sort-sel {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}

.sort-sel:focus { outline: none; border-color: var(--teal); }

/* 4-column products grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.prod-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}

.prod-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 30px rgba(61, 184, 184, .15) !important;
  border-color: var(--teal) !important;
  text-decoration:none !important;
}

.prod-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.prod-img img {
  width: 100%;
  height: 160px !important;
  object-fit: contain;
  transition: transform .5s;
}

.prod-card:hover .prod-img img { transform: scale(1.06); }

/* Product badge */
.prod-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--teal);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.prod-badge.sale    { background: #e05a5a; }
.prod-badge.eq,
.prod-badge.enquire {
  background: #fff;
  color: var(--teal);
  border: 1px solid var(--teal);
}

.prod-body         { padding: 16px 16px 18px; }
.prod-brand        { font-size: 10px; color: var(--teal); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
.prod-name         { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.prod-price        { font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 800; color: var(--teal); margin-bottom: 12px; }
.prod-price-note   { font-size: 11px; color: var(--gray); margin-bottom: 12px; }

/* WooCommerce price overrides */
.woo-price .woocommerce-Price-amount,
.woo-price bdi {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--teal);
}

.prod-btn {
  display: block;
  width: 100%;
  padding: 9px;
  text-align: center;
  background: var(--teal-light);
  color: var(--teal);
  border: 1px solid rgba(61, 184, 184, .3);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .25s;
  cursor: pointer;
}

.prod-card:hover .prod-btn {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

/* WooCommerce pagination override */
.pagination,
.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  list-style: none;
  padding: 0;
}

.pagination .pg-btn,
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
}

.pagination .pg-btn:hover,
.pagination .pg-btn.active,
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}


/* ============================================================
   6. SINGLE PRODUCT PAGE
   ============================================================ */

/* Breadcrumb bar (product page — light background) */
.bread-bar {
  margin-top: 70px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 13px 30px;
}

.bread-inner { max-width: 1180px; margin: 0 auto; }

/* On single product the breadcrumb has dark text, not white */
.bread-bar .breadcrumb a   { color: var(--gray); }
.bread-bar .breadcrumb a:hover { color: var(--teal); }
.bread-bar .breadcrumb .sep { color: #ccc; }
.bread-bar .breadcrumb .cur { color: var(--dark); font-weight: 600; }

/* Main product layout */
.product-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 30px 80px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.gallery-col {}

.main-img-wrap {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--off);
  margin-bottom: 10px;
}

.main-img-wrap img {
  width: 100%;
  height: 420px !important;
  object-fit: contain;
  display: block;
  transition: opacity .25s ease;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.thumb-item {
  border: 2px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}

.thumb-item:hover,
.thumb-item.active { border-color: var(--teal); }

.thumb-item img {
  width: 100%;
  height: 70px !important;
  object-fit: contain;
  display: block;
}

/* Product info panel */
.info-col {}

.prod-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.prod-brand-lbl {
  font-size: 11px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.prod-title {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.prod-meta {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.prod-meta a { color: var(--teal); }

/* Price box */
.price-box {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 24px;
}

.price-lbl {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.price-val {
  font-size: 30px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}

/* WooCommerce price inside .price-val */
.price-val .woocommerce-Price-amount,
.price-val bdi {
  font-family: 'Raleway', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--teal);
}

.price-note { font-size: 12px; color: var(--gray); }

/* Short description */
.prod-short-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 22px;
}

/* Specs table */
.specs-wrap {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.specs-title {
  background: var(--teal);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(odd)  { background: #fff; }
.spec-row:nth-child(even) { background: var(--off); }
.sk { color: var(--gray); }
.sv { color: var(--dark); font-weight: 600; text-align: right; }

/* Quantity control */
.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.qty-lbl {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.qbtn {
  width: 36px; height: 40px;
  background: var(--off);
  border: none;
  font-size: 18px;
  color: var(--dark);
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qbtn:hover { background: var(--teal-light); }

.qinp {
  width: 50px; height: 40px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--dark);
}

.qinp:focus { outline: none; }

/* WooCommerce quantity override */
.woocommerce .quantity input.qty {
  width: 50px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

/* CTA buttons */
.cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.btn-cart,
.woocommerce .single_add_to_cart_button {
  flex: 1;
  background: var(--teal) !important;
  color: #fff !important;
  border: none !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 15px 20px !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: background .25s, transform .2s;
}

.btn-cart:hover,
.woocommerce .single_add_to_cart_button:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-2px);
}

.btn-enq {
  flex: 1;
  background: #fff;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration:none;
}

.btn-enq:hover { background: var(--teal-light); }

/* Trust badges */
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray);
}


/* ============================================================
   7. PRODUCT TABS
   ============================================================ */

.tabs-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 30px 80px;
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 34px;
  overflow-x: auto;
}

.tab-btn {
  flex-shrink: 0;
  padding: 13px 26px;
  background: none;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
box-shadow: none !important;
}

.tab-btn:hover {
  color: var(--teal);
}

.tab-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  border:unset !important;
  border-radius:0 !important;
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

.tab-pane p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

/* Feature cards grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.fi-icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.fi-text h5 { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.fi-text p  { font-size: 12px; color: var(--gray); line-height: 1.6; margin: 0; }

/* WooCommerce reviews */
.woocommerce #reviews #comments ol.commentlist li {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 14px;
  background: #fff;
}

.woocommerce #reviews .star-rating { color: var(--teal); }


/* ============================================================
   8. RELATED PRODUCTS
   ============================================================ */

.related-section {
  background: var(--off);
  border-top: 1px solid var(--border);
  padding: 65px 30px;
}

.rel-inner { max-width: 1180px; margin: 0 auto; }

.rel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.rel-head h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.rel-rule { flex: 1; height: 1px; background: var(--border); }
.rel-head a { font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 700; color: var(--teal); white-space: nowrap; }

.rel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.rel-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration:none !important;
}

.rel-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 26px rgba(61, 184, 184, .14) !important;
  border-color: var(--teal) !important;
  text-decoration:none !important;
}

.rel-img { height: 160px !important; overflow: hidden; }

.rel-img img {
  width: 100%; 
height: 160px !important;
  object-fit: contain;
  display: block;
  transition: transform .5s;
}

.rel-card:hover .rel-img img { transform: scale(1.06); }

.rel-body   { padding: 14px; }
.rel-brand  { font-size: 10px; color: var(--teal); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.rel-name   { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }
.rel-price  { font-size: 14px; font-weight: 800; color: var(--teal); }


/* ============================================================
   9. WHY US BAND  (shared across all pages)
   ============================================================ */

.why-band {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 46px 30px;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.why-icon { font-size: 26px; margin-bottom: 8px; }
.why-t    { font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700; color: var(--dark); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.why-d    { font-size: 12px; color: var(--gray); }


/* ============================================================
   10. FOOTER
   ============================================================ */

footer {
  background: #1c1c1c;
  padding: 60px 30px 28px;
}

.foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 46px;
  margin-bottom: 36px;
}

.foot-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--teal);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.foot-about { font-size: 13px; color: #777; line-height: 1.8; max-width: 240px; }

.foot-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.foot-col ul         { list-style: none; }
.foot-col ul li      { margin-bottom: 8px; }
.foot-col ul li a    { color: #777; text-decoration: none; font-size: 13px; transition: color .2s; }
.foot-col ul li a:hover { color: var(--teal); }

.foot-bottom {
  border-top: 1px solid #2e2e2e;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.foot-bottom p { font-size: 12px; color: #555; }


/* ============================================================
   11. TOAST NOTIFICATION
   ============================================================ */

.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  background: var(--teal);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 13px 22px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(16px);
  transition: all .35s;
  pointer-events: none;
}

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


/* ============================================================
   12. RESPONSIVE
   ============================================================ */

/* Tablet — 960px */
@media (max-width: 960px) {
  .cat-grid     { grid-template-columns: repeat(2, 1fr); }
  .prod-grid    { grid-template-columns: repeat(3, 1fr); }
  .subcat-grid  { grid-template-columns: repeat(4, 1fr); }
  .rel-grid     { grid-template-columns: repeat(2, 1fr); }
  .feat-grid    { grid-template-columns: 1fr; }
  .foot-inner   { grid-template-columns: 1fr 1fr; }
  .why-inner    { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Small tablet — 768px */
@media (max-width: 768px) {
  .prod-grid   { grid-template-columns: repeat(2, 1fr); }
  .subcat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile — 600px */
@media (max-width: 600px) {
  .nav-links   { display: none; }
  .cat-grid    { grid-template-columns: 1fr; }
  .prod-grid   { grid-template-columns: repeat(2, 1fr); }
  .subcat-grid { grid-template-columns: repeat(2, 1fr); }
  .rel-grid    { grid-template-columns: repeat(2, 1fr); }
  .cta-row     { flex-direction: column; }

  .banner h1,
  .ocean-banner h1 { font-size: 28px; letter-spacing: 3px; }

  .product-wrap,
  .tabs-section { padding-left: 16px; padding-right: 16px; }
  .page-body { padding-left: 16px; padding-right: 16px; }
}

/* Extra small — 420px */
@media (max-width: 420px) {
  .prod-grid    { grid-template-columns: 1fr; }
  .foot-inner   { grid-template-columns: 1fr; }
  .thumb-row    { grid-template-columns: repeat(3, 1fr); }
}
