/* 
  TACKLE BABA LIGHT-THEME STYLESHEET (FULL E-COMMERCE SUITE)
  Upload this file as assets/tackle-baba-custom.css in your Shopify theme.
  Primary Brand Color: Teal (#00828a) matching the "Tackle Baba: Cast | Catch | Conquer" logo.
*/

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f4f8f9;
  --bg-card: #ffffff;
  
  --color-teal: #00828a;       /* Logo Teal */
  --color-teal-light: #e0f2f1; /* Light Teal Tint */
  --color-teal-dark: #005a60;  /* Dark Teal for buttons/hovers */
  --color-orange-sale: #ff7a00; /* Sale/Discount Badge */
  
  --color-text-primary: #111827; /* Rich Slate 900 for premium contrast */
  --color-text-secondary: #4b5563; /* Slate 600 */
  --color-text-muted: #9ca3af;
  
  --border-color: rgba(0, 130, 138, 0.1);
  --border-color-hover: rgba(0, 130, 138, 0.3);
  
  --shadow-soft: 0 4px 15px rgba(0, 130, 138, 0.03);
  --shadow-hover: 0 10px 30px rgba(0, 130, 138, 0.08);
  
  --font-headings: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* Global Heading Typography Defaults */
h1, h2, h3, h4, h5, h6,
.tb-section-title,
.tb-product-title,
.tb-category-title,
.tb-combo-header h3,
.tb-trust-badge-title,
.tb-captain-name,
.tb-activity-title {
  font-family: var(--font-headings);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-text-primary);
}

/* Global Section Frameworks */
.tb-light-section {
  background-color: var(--bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  padding: 80px 0;
}

.tb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header Typography */
.tb-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.tb-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.tb-section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--color-teal);
  border-radius: 0;
}

.tb-section-subtitle {
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.5;
}

/* 1. Custom Brand Logo Strip */
/* 1. Seamless Brand Logo Ticker (Infinite Marquee) */
.tb-brand-ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(0, 130, 138, 0.08);
  border-bottom: 1px solid rgba(0, 130, 138, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.tb-brand-ticker-container {
  display: inline-flex;
  gap: 60px;
  animation: ticker-animation 25s linear infinite;
  width: max-content;
}

.tb-brand-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.tb-brand-ticker-logo {
  height: 38px;
  width: auto;
  max-width: 140px;
  flex-shrink: 0; /* Prevent flex items from squeezing/stretching */
  object-fit: contain; /* Maintain perfect aspect ratio */
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  vertical-align: middle;
}

.tb-brand-ticker-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.04);
}

@keyframes ticker-animation {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}


/* 2. Product Grids & Cards */
.tb-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 15px;
}

.tb-product-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  padding: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.tb-product-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.tb-product-badge-wrap {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tb-badge {
  padding: 4px 10px;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tb-badge-sale {
  background-color: var(--color-orange-sale);
  color: #ffffff;
}

.tb-badge-bestseller {
  background-color: var(--color-teal);
  color: #ffffff;
}

.tb-product-image-container {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.tb-product-image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.tb-product-card:hover .tb-product-image-container img {
  transform: scale(1.06);
}

.tb-product-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tb-product-brand {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.tb-product-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 8px 0;
  line-height: 1.4;
  height: 40px; /* Two-line limit height */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tb-product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.tb-stars {
  color: #ffb703; /* Gold */
}

.tb-product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.tb-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.tb-price-compare {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

/* Buttons */
.tb-btn-primary {
  display: inline-block;
  background-color: var(--color-teal);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 0;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--color-teal);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tb-btn-primary:hover {
  background-color: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  transform: translateY(-1px);
}

.tb-btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--color-teal) !important;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--color-teal);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tb-btn-secondary:hover {
  background-color: var(--color-teal-light);
  transform: translateY(-1px);
}

.tb-btn-card-buy {
  width: 100%;
  padding: 10px 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 3. Category Showcase Grid */
.tb-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.tb-category-card {
  position: relative;
  height: 280px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tb-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 40%, rgba(15, 23, 42, 0.75) 100%);
  z-index: 2;
}

.tb-category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}

.tb-category-card:hover .tb-category-bg {
  transform: scale(1.08);
}

.tb-category-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.tb-category-info {
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.tb-category-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff; /* Fix dark title contrast issue */
}

.tb-category-count {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

/* 4. Specialized Combos Comparative Grid */
.tb-combos-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.tb-combo-box {
  background-color: var(--bg-card);
  border: 1px solid rgba(0, 130, 138, 0.15);
  border-radius: 0;
  padding: 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.tb-combo-box:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-teal);
}

.tb-combo-box.premium-highlight {
  border: 2px solid var(--color-teal);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-secondary) 100%);
}

.tb-combo-badge {
  position: absolute;
  top: -14px;
  right: 25px;
  background-color: var(--color-teal);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tb-combo-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

.tb-combo-price-row {
  margin-bottom: 25px;
}

.tb-combo-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-teal);
}

.tb-combo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}

.tb-combo-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.tb-combo-check-icon {
  color: var(--color-teal);
  flex-shrink: 0;
}

/* 5. Trust Badges Section */
.tb-trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.tb-trust-badge-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.tb-trust-badge-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.tb-trust-badge-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: var(--color-teal-light);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tb-trust-badge-card:hover .tb-trust-badge-icon-wrap {
  background: var(--color-teal);
  color: #ffffff;
}

.tb-trust-badge-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.tb-trust-badge-content {
  display: flex;
  flex-direction: column;
}

.tb-trust-badge-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 4px 0;
}

.tb-trust-badge-desc {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--color-text-secondary);
  margin: 0;
}

/* 6. Gear Concierge Section */
.tb-concierge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start; /* Align image top to the text eyebrow */
}

.tb-concierge-image-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.tb-concierge-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.tb-concierge-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-teal);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tb-concierge-content-wrap h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin: 0 0 12px 0;
}

.tb-concierge-highlights {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}

.tb-concierge-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.tb-concierge-highlight-check {
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 1px;
}

.tb-concierge-highlight-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: var(--color-text-primary);
}

.tb-concierge-highlight-text p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .tb-concierge-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .tb-combos-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .tb-section-title {
    font-size: 1.8rem;
  }
  .tb-trust-badges-grid {
    grid-template-columns: 1fr;
  }
  .tb-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* 7. Dropdown Menu Styles (Simplified Navigation) */
.mock-nav-links li {
  position: relative;
  display: inline-block;
}

.mock-nav-links li > a {
  padding: 10px 15px;
  display: block;
}

.mock-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #ffffff;
  border: 1px solid rgba(0, 130, 138, 0.08);
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  min-width: 180px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
  margin: 0;
}

.mock-dropdown li {
  display: block;
  width: 100%;
}

.mock-dropdown li a {
  padding: 8px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  display: block;
  text-align: left;
  transition: all 0.2s ease;
}

.mock-dropdown li a:hover {
  background-color: var(--bg-secondary);
  color: var(--color-teal);
}

.mock-nav-links li:hover .mock-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* 8. Captains & Guides Team Profile Section */
.tb-captains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.tb-captain-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.tb-captain-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.tb-captain-img-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-secondary);
}

.tb-captain-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tb-captain-card:hover .tb-captain-img-wrap img {
  transform: scale(1.06);
}

.tb-captain-info {
  padding: 24px;
}

.tb-captain-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.tb-captain-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--color-text-primary);
}

.tb-captain-bio {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}



