/* ============================================================
   Style.css — Subender Inflatables
   Shared stylesheet for index, product-listing, product-detail
   Bootstrap 5 is loaded separately; this file extends it.
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --green: #6aaa3a;
  --green-dark: #4e8a25;
  --green-light: #d4edaa;
  --red: #c0392b;
  --gold: #f5c518;
  --cat-label: #3a9bd5;
  --bg: #ebebeb;
  --white: #fff;
}

/* ── Global Reset & Body ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  max-width: 900px;
  margin: 0 auto;
  font-size: 14px;
  padding-bottom: 62px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--green-light);
  padding: 10px 12px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--green);
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 85px;
  height: 85px;
  border-radius: 50%; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
}

.logo-circle .logo-letter {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-circle .logo-star {
  font-size: 10px;
  color: var(--gold);
}

.header-text .company-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--red);
  font-weight: 700;
  line-height: 1.1;
}

.header-text .since {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
}

.header-text .tagline {
  font-size: 11px;
  color: var(--green-dark);
  font-style: italic;
  font-weight: 600;
}

.header-flag img {
  width: 32px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* ── CSS-only Tab switching via radio inputs ── */
.tab-radios {
  display: none;
}

.tab-radios:nth-of-type(1):checked~.content-tabs .tab-btn:nth-child(1),
.tab-radios:nth-of-type(2):checked~.content-tabs .tab-btn:nth-child(2) {
  /* handled below */
}

#tab-radio-category:checked~.content-tabs label[for="tab-radio-category"],
#tab-radio-videos:checked~.content-tabs label[for="tab-radio-videos"] {
  color: var(--primary, #e74c3c);
  border-bottom: 3px solid var(--primary, #e74c3c);
}

#tab-radio-category:checked~#tab-category {
  display: block;
}

#tab-radio-category:checked~#tab-videos {
  display: none;
}

#tab-radio-videos:checked~#tab-videos {
  display: block;
}

#tab-radio-videos:checked~#tab-category {
  display: none;
}

/* ── CSS-only Mobile menu via :target ── */
.mob-menu {
  display: none;
}

.mob-menu:target {
  display: flex;
}

.mob-menu:target~* {
  /* nothing needed */
}

/* ── CSS-only Enquiry modal via :target ── */
.enquiry-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.enquiry-modal:target {
  display: flex;
}

/* Close backdrop click — inner box stops propagation via pointer-events */
.enquiry-modal .enquiry-box {
  pointer-events: all;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
  background: var(--green);
  display: flex;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 2px;
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .3);
  transition: background .2s;
}

.main-nav a:last-child {
  border-right: none;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--green-dark);
}

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
}

.contact-strip a {
  color: #ffe;
  text-decoration: none;
}

/* ============================================================
   HERO OWL CAROUSEL
   ============================================================ */
.hero-carousel-wrap {
  background: #000;
  position: relative;
}

.hero-carousel .owl-item .video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.hero-carousel .owl-item .video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 0, 0, .88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform .2s, background .2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .5);
}

.video-thumb .play-btn:hover {
  background: #f00;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumb .play-btn i {
  width: 53px;
  height: 50px;
  fill: #fff;
  margin-left: 4px;
  font-size: 50px;
}

.video-thumb .vid-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 20px 10px 8px;
  z-index: 2;
}

.video-thumb .vid-platform {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 4;
}

.vid-platform.yt {
  background: #c00;
}

.vid-platform.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.hero-carousel .owl-prev,
.hero-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .45) !important;
  color: #fff !important;
  font-size: 22px !important;
  width: 36px;
  height: 36px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-carousel .owl-prev {
  left: 6px;
}

.hero-carousel .owl-next {
  right: 6px;
}

.owl-dots {
  text-align: center;
  padding: 6px 0;
  background: #000;
}

.owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255, 255, 255, .4) !important;
}

.owl-dot.active span {
  background: var(--green) !important;
}

/* ============================================================
   FOLLOW / SOCIAL SECTION
   ============================================================ */
.follow-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.follow-section h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  font-style: italic;
}

.social-icons {
  display: flex;
  gap: 7px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: transform .2s;
}

.social-icons a:hover {
  transform: scale(1.12);
}

.si-yt {
  background: #ff0000;
}

.si-tt {
  background: #010101;
}

.si-fb {
  background: #1877f2;
}

.si-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.si-tw {
  background: #1da1f2;
}

/* ============================================================
   HOT THEMES BANNER
   ============================================================ */
.hot-themes-banner {
  width: 100%;
  overflow: hidden;
  background: #111;
}

.hot-themes-banner img {
  width: 100%;
  display: block;
}

.hot-themes-fallback {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 18px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hot-themes-fallback .hot-tag {
  background: #e74c3c;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 4px;
  transform: skewX(-8deg);
  display: inline-block;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #900;
}

.hot-themes-fallback .hot-tag span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
}

.theme-icons {
  display: flex;
  gap: 8px;
}

.theme-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .3);
}

/* ============================================================
   TABS (index.html)
   ============================================================ */
.content-tabs {
  display: flex;
  border-bottom: 3px solid var(--green);
}

.tab-btn {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: #e8f5e9;
  color: #555;
  border: none;
  border-right: 1px solid #ccc;
  transition: background .2s, color .2s;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active {
  background: var(--green);
  color: #fff;
}

.tab-content {
  display: none;
  background: #fff;
}

.tab-content.active {
  display: block;
}

/* ============================================================
   CATEGORY GRID (index.html)
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: #e0e0e0;
}

.cat-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}

.cat-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.cat-item:hover img {
  transform: scale(1.06);
}

.cat-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--cat-label);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 4px 2px;
  letter-spacing: .3px;
}

/* ============================================================
   VIDEO GRID (index.html)
   ============================================================ */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
  background: #e0e0e0;
}

.vid-card {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  text-decoration: none;
  color: inherit;
  display: block;
}

.vid-card .thumb-wrap {
  position: relative;
  padding-top: 62%;
}

.vid-card .thumb-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vid-card .play-sm {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.vid-card .play-sm .dot {
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  display: inline-block;
}

.vid-card .play-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 0, 0, .85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vid-card .play-center svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 3px;
}

.vid-card-title {
  font-size: 10px;
  font-weight: 600;
  color: #222;
  padding: 5px 6px;
  background: #fff;
  line-height: 1.3;
}

/* ============================================================
   BOTTOM BAR (shared)
   ============================================================ */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--green);
  display: flex;
  z-index: 100;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, .2);
}

.bottom-bar a,
.bottom-bar button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  gap: 3px;
  border: none;
  background: none;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, .25);
  letter-spacing: .5px;
  transition: background .2s;
}

.bottom-bar a:last-child,
.bottom-bar button:last-child {
  border-right: none;
}

.bottom-bar a:hover,
.bottom-bar button:hover {
  background: var(--green-dark);
}

.bottom-bar i {
  font-size: 17px;
}

.page-end {
  height: 60px;
}

/* ============================================================
   ENQUIRY MODAL (shared)
   ============================================================ */
.enquiry-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 998;
  align-items: flex-end;
  justify-content: center;
}

.enquiry-modal.open {
  display: flex;
}

.enquiry-box {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 16px 16px 0 0;
  padding: 20px;
  animation: slideUp .3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.enquiry-box h3 {
  color: var(--green-dark);
  font-size: 16px;
  margin-bottom: 14px;
  text-align: center;
  font-weight: 700;
}

.enquiry-box .enq-prod-name {
  font-size: 12px;
  color: #555;
  text-align: center;
  margin-bottom: 14px;
  font-style: italic;
}

.enquiry-box input,
.enquiry-box textarea,
.enquiry-box select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border .2s;
}

.enquiry-box input:focus,
.enquiry-box textarea:focus {
  border-color: var(--green);
}

.enquiry-box textarea {
  height: 80px;
  resize: none;
}

.enq-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.enq-close {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #999;
  font-size: 13px;
  cursor: pointer;
}

/* ============================================================
   MOBILE MENU (index.html)
   ============================================================ */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 997;
}

.mob-menu.open {
  display: block;
}

.mob-menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 240px;
  background: #fff;
  padding: 20px 0;
  animation: slideInRight .3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.mob-menu-panel .menu-header {
  padding: 0 16px 14px;
  border-bottom: 2px solid var(--green-light);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
}

.mob-menu-panel a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
}

.mob-menu-panel a:hover {
  background: #f4f9ec;
  color: var(--green-dark);
}

.mob-menu-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

/* ============================================================
   PRODUCT LISTING — category sub-nav chips
   ============================================================ */
.cat-subnav {
  background: #fff;
  padding: 8px 10px;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  border-bottom: 1px solid #ddd;
  scrollbar-width: none;
}

.cat-subnav::-webkit-scrollbar {
  display: none;
}

.cat-chip {
  flex-shrink: 0;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  border: 1.5px solid var(--green);
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.cat-chip.active,
.cat-chip:hover {
  background: var(--green);
  color: #fff;
}

/* ============================================================
   PRODUCT LISTING — page bar
   ============================================================ */
.page-bar {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

.page-bar .back-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #444;
  cursor: pointer;
  width: 32px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.page-bar .page-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.page-bar .grid-icon {
  font-size: 20px;
  color: #555;
  text-decoration: none;
}

.view-toggle {
  display: flex;
  gap: 6px;
}

.view-btn {
  background: none;
  border: 1.5px solid #bbb;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  transition: border-color .2s, color .2s;
}

.view-btn.active {
  border-color: var(--green);
  color: var(--green);
  background: #e8f5e9;
}

/* ============================================================
   PRODUCT LISTING — filter bar
   ============================================================ */
.filter-bar {
  background: #f7f7f7;
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}

.filter-btn {
  flex: 1;
  padding: 8px 6px;
  background: none;
  border: none;
  border-right: 1px solid #ddd;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background .2s;
}

.filter-btn:last-child {
  border-right: none;
}

.filter-btn:hover {
  background: #efefef;
}

.filter-btn i {
  font-size: 12px;
  color: var(--green-dark);
}

/* ============================================================
   PRODUCT LISTING — result count
   ============================================================ */
.result-count {
  padding: 6px 12px;
  font-size: 11px;
  color: #888;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.result-count span {
  color: var(--green-dark);
  font-weight: 700;
}

/* ============================================================
   PRODUCT LISTING — product grid & cards
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 6px;
}

.product-grid.one-col {
  grid-template-columns: 1fr;
}

.product-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.prod-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
  cursor: pointer;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}

.prod-card:active {
  transform: scale(.98);
}

.prod-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.card-thumb {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: #eee;
  display: block;
  text-decoration: none;
}

.card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.prod-card:hover .card-thumb img {
  transform: scale(1.06);
}

.vid-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 3;
}

.vid-badge .vdot {
  width: 7px;
  height: 7px;
  background: #ff3b30;
  border-radius: 50%;
  display: inline-block;
}

.hot-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #e74c3c;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 3;
  letter-spacing: .5px;
}

.new-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #f39c12;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 3;
  letter-spacing: .5px;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-overlay .pcircle {
  width: 44px;
  height: 44px;
  background: rgba(255, 0, 0, .82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .4);
  transition: transform .2s;
}

.prod-card:hover .pcircle {
  transform: scale(1.1);
}

.pcircle svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 3px;
}

.card-body {
  padding: 7px 8px 9px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-code {
  font-size: 10px;
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: .3px;
}

.card-name {
  font-size: 12px;
  font-weight: 600;
  color: #222;
  line-height: 1.35;
}

.three-col .card-name {
  font-size: 10px;
}

.three-col .card-code {
  font-size: 9px;
}

/* 1-col list layout */
.one-col .prod-card {
  flex-direction: row;
}

.one-col .card-thumb {
  padding-top: 0;
  width: 130px;
  min-width: 130px;
  height: auto;
}

.one-col .card-thumb img {
  position: static;
  width: 100%;
  height: 100%;
}

.one-col .card-body {
  padding: 10px 12px;
}

.one-col .card-name {
  font-size: 13px;
}

.card-desc {
  display: none;
  font-size: 11px;
  color: #666;
  line-height: 1.4;
  margin-top: 2px;
}

.one-col .card-desc {
  display: block;
}

.card-enquiry-btn {
  display: none;
  margin-top: auto;
  padding: 6px 10px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.one-col .card-enquiry-btn {
  display: flex;
}

/* Load more */
.load-more-wrap {
  text-align: center;
  padding: 16px 12px 8px;
}

.load-more-btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px 36px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.load-more-btn:hover {
  background: var(--green-dark);
}

/* ============================================================
   PRODUCT DETAIL — media slider
   ============================================================ */
.media-slider-wrap {
  background: #000;
  position: relative;
}

.media-slide.is-video {
  padding-top: 56.25%;
  background: #000;
}

.media-slide.is-video .vid-thumb-inner {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.media-slide.is-video .vid-thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-slide.is-video .play-big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(255, 0, 0, .88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .55);
  z-index: 4;
  transition: transform .2s;
}

.media-slide.is-video .play-big svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  margin-left: 4px;
}

.media-slide.is-video .vid-thumb-inner:hover .play-big {
  transform: translate(-50%, -50%) scale(1.1);
}

.media-slide.is-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 5;
}

.media-slide.is-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.media-slider .owl-prev,
.media-slider .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .45) !important;
  color: #fff !important;
  font-size: 20px !important;
  width: 34px;
  height: 34px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.media-slider .owl-prev {
  left: 6px;
}

.media-slider .owl-next {
  right: 6px;
}

.media-slider .owl-dots {
  position: absolute;
  display: none;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
}

.media-slider .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255, 255, 255, .5) !important;
  margin: 2px 3px !important;
}

.media-slider .owl-dot.active span {
  background: #fff !important;
}

/* ============================================================
   PRODUCT DETAIL — detail body & table
   ============================================================ */
.detail-body {
  background: #fff;
  padding: 14px 14px 0;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  padding: 10px 14px 6px;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  margin: 0 -14px;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0 4px;
}

.tag {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
}

.tag:hover {
  opacity: .8;
}

.tag-hot {
  background: var(--green);
  color: #fff;
}

.tag-theme {
  background: #3a9bd5;
  color: #fff;
}

.tag-new {
  background: #f39c12;
  color: #fff;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 12px;
}

.info-table thead tr {
  background: var(--green);
  color: #fff;
}

.info-table thead th {
  padding: 9px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
}

.info-table tbody tr {
  border-bottom: 1px solid #e8e8e8;
}

.info-table tbody tr:nth-child(even) {
  background: #f7fdf2;
}

.info-table td {
  padding: 9px 12px;
  vertical-align: top;
  line-height: 1.5;
}

.info-table td:first-child {
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  width: 36%;
}

.info-table td:last-child {
  color: #444;
}

.customize-note {
  color: #e67e22;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}

.prod-desc {
  font-size: 13px;
  color: #444;
  line-height: 1.75;
  padding: 10px 0 16px;
}

.prod-desc p {
  margin-bottom: 10px;
}

.prod-desc p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   PRODUCT DETAIL — action buttons
   ============================================================ */
.action-row {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border-top: 1px solid #eee;
  position: sticky;
  bottom: 56px;
  z-index: 40;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, .06);
}

.btn-enquiry {
  flex: 1;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .2s;
  text-decoration: none;
}

.btn-enquiry:hover {
  background: var(--green-dark);
}

.btn-whatsapp {
  flex: 1;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  transition: background .2s;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.btn-call {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  flex-shrink: 0;
}

.btn-call:hover {
  background: #a93226;
}

/* ============================================================
   PRODUCT DETAIL — related products
   ============================================================ */
.related-section {
  padding: 14px;
  background: #f5f5f5;
}

.related-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.related-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
  transition: box-shadow .2s;
}

.related-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .14);
}

.related-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.related-card .rc-name {
  font-size: 10px;
  font-weight: 600;
  padding: 5px 6px;
  line-height: 1.3;
  color: #333;
}

.related-card .rc-code {
  font-size: 9px;
  color: var(--green-dark);
  padding: 0 6px 6px;
  font-weight: 700;
}

/* ===== ABOUT BODY ===== */
.about-body {
  background: #fff;
  padding: 10px 0;
}

/* Brand intro block */
.brand-intro {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.brand-intro .mini-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid #900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-intro .mini-logo .ltr {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}

.brand-intro .mini-logo .star {
  font-size: 8px;
  color: var(--gold);
}

.brand-intro-text .brand-name {
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  font-family: 'Playfair Display', serif;
}

.brand-intro-text .brand-sub {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}

.brand-intro-text .brand-made {
  color: #888;
  font-size: 11px;
  margin-top: 2px;
  font-style: italic;
}

/* Factory hero banner */
.factory-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.factory-banner img {
  width: 100%;
  display: block;
  max-height: 200px;
  object-fit: cover;
}

.factory-banner .banner-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 60, 0, .6));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 12px;
}

.factory-banner .banner-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
  line-height: 1.4;
  font-style: italic;
}

.factory-banner .banner-label {
  margin-top: 6px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  letter-spacing: 1px;
}

/* Red intro text */
.intro-text-red {
  color: var(--red);
  font-size: 12px;
  line-height: 1.7;
  padding: 12px 14px 6px;
  font-weight: 500;
}

/* 3-image strip */
.img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 14px 12px;
}

.img-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.img-strip .strip-label {
  position: relative;
}

.img-strip .strip-label img {
  border-radius: 4px;
}

.img-strip .strip-label .lbl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 100, 0, .75);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  padding: 3px 2px;
  border-radius: 0 0 4px 4px;
}

/* Section title — left green border style (no heading tag) */
.sec-title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  border-left: 4px solid var(--green);
  padding: 2px 0 2px 10px;
  margin: 14px 14px 10px;
  line-height: 1.4;
}

/* Body text block */
.body-block {
  padding: 0 14px 10px;
  font-size: 12.5px;
  line-height: 1.8;
  color: #444;
}

.body-block .bold-label {
  font-weight: 700;
  color: #222;
  display: block;
  margin-top: 8px;
  margin-bottom: 2px;
}

.body-block a {
  color: var(--green-dark);
  text-decoration: none;
}

.body-block a:hover {
  text-decoration: underline;
}

/* Side image + text row */
.side-img-row {
  display: flex;
  gap: 10px;
  padding: 0 14px 12px;
  align-items: flex-start;
}

.side-img-row img {
  width: 120px;
  flex-shrink: 0;
  border-radius: 5px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.side-img-row .side-text {
  flex: 1;
  font-size: 12px;
  line-height: 1.75;
  color: #444;
}

/* Full width image */
.full-img {
  width: 100%;
  padding: 0 14px 14px;
}

.full-img img {
  width: 100%;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  max-height: 170px;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green);
  margin: 4px 14px 14px;
  border-radius: 8px;
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 12px 6px;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 9px;
  color: rgba(255, 255, 255, .85);
  margin-top: 4px;
  line-height: 1.3;
  display: block;
  font-weight: 600;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 4px 14px 4px;
}

/* Products list */
.prod-list-item {
  padding: 0 14px 6px;
}

.prod-list-item .prod-cat {
  font-weight: 700;
  color: #222;
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

.prod-list-item .prod-cat-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}

.prod-list-item .prod-cat-desc a {
  color: var(--green-dark);
  text-decoration: none;
}

/* Certifications row */
.cert-row {
  display: flex;
  gap: 10px;
  padding: 10px 14px 14px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f4fdf0;
  border: 1.5px solid var(--green-light);
  border-radius: 8px;
  padding: 8px 12px;
  flex: 1;
  min-width: 130px;
}

.cert-badge i {
  font-size: 20px;
  color: var(--green);
}

.cert-badge .cert-text {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

/* Contact block */
.contact-block {
  margin: 0 14px 14px;
  background: #f4fdf0;
  border: 1.5px solid var(--green-light);
  border-radius: 10px;
  padding: 14px;
}

.contact-block .ct-title {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 13px;
  margin-bottom: 10px;
  display: block;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #444;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-row i {
  color: var(--green);
  font-size: 16px;
  width: 20px;
}

.contact-row a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
}

/* ===== BOTTOM BAR ===== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--green);
  display: flex;
  z-index: 100;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, .2);
}

.bottom-bar a,
.bottom-bar button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  color: #fff;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  gap: 3px;
  border: none;
  background: none;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, .25);
  letter-spacing: .5px;
  transition: background .2s;
}

.bottom-bar a:last-child {
  border-right: none;
}

.bottom-bar a:hover {
  background: var(--green-dark);
}

.bottom-bar i {
  font-size: 17px;
}

/* ===== HERO BANNER ===== */
.contact-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a3a1a;
}

.contact-hero img {
  width: 100%;
  display: block;
  max-height: 160px;
  object-fit: cover;
  opacity: .55;
}

.contact-hero .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
}

.contact-hero .hero-title {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
  font-family: 'Playfair Display', serif;
}

.contact-hero .hero-sub {
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
}

.contact-hero .hero-badge {
  margin-top: 8px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* ===== QUICK ACTION BUTTONS ===== */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border-bottom: 2px solid var(--green-light);
}

.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  text-decoration: none;
  color: #333;
  border-right: 1px solid #eee;
  transition: background .2s;
  gap: 6px;
}

.quick-action-btn:last-child {
  border-right: none;
}

.quick-action-btn:hover {
  background: var(--green-light);
}

.quick-action-btn i {
  font-size: 22px;
}

.quick-action-btn .qa-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3px;
}

.qa-call i,
.qa-call .qa-label {
  color: var(--red);
}

.qa-wa i,
.qa-wa .qa-label {
  color: #25d366;
}

.qa-email i,
.qa-email .qa-label {
  color: #3a9bd5;
}

/* ===== SECTION TITLE (no heading tag) ===== */
.sec-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  border-left: 4px solid var(--green);
  padding: 2px 0 2px 10px;
  margin: 16px 14px 12px;
  line-height: 1.4;
}

/* ===== CONTACT CARDS ===== */
.contact-cards {
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .15s;
}

.contact-card:active {
  transform: scale(.98);
}

.contact-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, .13);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.icon-green {
  background: #e8f5e9;
  color: var(--green);
}

.icon-red {
  background: #fdecea;
  color: var(--red);
}

.icon-wa {
  background: #e8f8ef;
  color: #25d366;
}

.icon-blue {
  background: #e3f2fd;
  color: #1976d2;
}

.icon-orange {
  background: #fff3e0;
  color: #e65100;
}

.icon-purple {
  background: #f3e5f5;
  color: #7b1fa2;
}

.card-content {
  flex: 1;
}

.card-label {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: .6px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.card-value {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  display: block;
  line-height: 1.35;
}

.card-sub {
  font-size: 11px;
  color: #888;
  display: block;
  margin-top: 2px;
}

.card-arrow {
  font-size: 14px;
  color: #bbb;
  align-self: center;
}

/* ===== MAP SECTION ===== */
.map-wrap {
  margin: 16px 14px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

.map-overlay-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

/* ===== HOURS TABLE ===== */
.hours-table {
  margin: 0 14px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .07);
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.today {
  background: #f4fdf0;
}

.hours-day {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hours-day .today-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.hours-time {
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

.hours-time.closed {
  color: #e74c3c;
  font-weight: 700;
}

.hours-time.open-now {
  color: var(--green);
  font-weight: 700;
}

/* ===== ENQUIRY FORM ===== */
.form-wrap {
  margin: 0 14px;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
}

.form-intro {
  font-size: 12px;
  color: #666;
  margin-bottom: 14px;
  line-height: 1.6;
}

.form-row {
  margin-bottom: 12px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #555;
  margin-bottom: 5px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #222;
  background: #fafafa;
  outline: none;
  transition: border-color .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  background: #fff;
}

.form-textarea {
  height: 90px;
  resize: vertical;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

/* Custom select arrow */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 13px;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
  letter-spacing: .3px;
}

.form-submit:hover {
  background: var(--green-dark);
}

/* ===== SOCIAL STRIP ===== */
.social-strip {
  margin: 16px 14px 0;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .07);
}

.social-strip .ss-label {
  font-size: 12px;
  font-weight: 700;
  color: #555;
  margin-bottom: 12px;
  display: block;
  letter-spacing: .3px;
}

.social-icons-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  transition: opacity .2s;
  flex: 1;
  min-width: 120px;
  color: #fff;
}

.social-link:hover {
  opacity: .88;
}

.social-link i {
  font-size: 18px;
}

.sl-yt {
  background: #ff0000;
}

.sl-fb {
  background: #1877f2;
}

.sl-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sl-tt {
  background: #010101;
}

/* ===== ADDRESS BLOCK ===== */
.address-block {
  margin: 16px 14px 0;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .07);
}

.addr-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 12px;
  color: #444;
  line-height: 1.6;
}

.addr-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.addr-row i {
  color: var(--green);
  font-size: 15px;
  margin-top: 2px;
  width: 18px;
  flex-shrink: 0;
}

.addr-row strong {
  color: #222;
  display: block;
  margin-bottom: 1px;
  font-size: 12px;
}

/* spacer */
.spacer {
  height: 16px;
}

/* ===== BOTTOM BAR ===== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--green);
  display: flex;
  z-index: 100;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, .2);
}

.bottom-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  color: #fff;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
      gap: 3px;
      border-right: 1px solid rgba(255, 255, 255, .25);
      letter-spacing: .5px;
      transition: background .2s;
    }

    .bottom-bar a:last-child {
      border-right: none;
    }

    .bottom-bar a:hover {
      background: var(--green-dark);
    }

    .bottom-bar i {
      font-size: 17px;
    }



.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.sitemap-title {
  color: #2b2a28;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sitemap-card {
  background-color: white;
  border: 2px solid #d59e06;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: #2b2a28;
}

.sitemap-card:hover {
  background-color: #d59e06;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
  text-decoration: none;
}

.card-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.sitemap-card:hover .card-description {
  opacity: 1;
}

.category-section {
  margin-bottom: 40px;
}

.category-header {
  color: #d59e06;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #d59e06;
}

.main-links {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .sitemap-title {
      font-size: 1.8rem;
      margin-bottom: 30px;
  }
  
  .category-header {
      font-size: 1.2rem;
      margin-bottom: 15px;
  }
  
  .sitemap-card {
      padding: 15px;
  }
  
  .card-label {
      font-size: 1rem;
  }
}