/*
Theme Name: Oceano Sales LLP Showroom Theme
Theme URI: https://oceanosales.com
Author: Antigravity AI
Author URI: https://oceanosales.com
Description: Premium bathware and sanitaryware dealer showroom theme inspired by Hindware. Fully editable using native WordPress core APIs (no ACF).
Version: 1.0.0
Text Domain: oceano-theme
*/

/* ==========================================================================
   Oceano Sales LLP - Design System & Custom Styles
   Inspired by Hindware.com - Premium Showroom Aesthetic
   ========================================================================== */

/* Custom Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Archivo:expanded,wght@700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette (Extracted from Logo & Luxury Theme) */
  --color-ocean-blue: #0270AD;   /* Primary Brand Color */
  --color-ocean-dark: #0169A8;   /* Dark brand accent for depth */
  --color-ocean-light: #017FB2;  /* Lighter brand accent */
  --color-charcoal: #1C1E21;     /* Primary Ink color (WCAG AAA contrast) */
  --color-charcoal-light: #4A4A4A; /* Secondary text */
  --color-ivory: #F2EFEA;        /* Warm Light-section background */
  --color-white: #FFFFFF;        /* Pure white */
  --color-accent-gold: #C9A24E;  /* Luxury bathware accent (decorative/CTAs) */
  --color-accent-gold-hover: #B58F3D;
  --color-navy-dark: #091724;    /* Deep navy for layouts, hero blocks */
  --color-shadow: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout Constants */
  --header-height: 80px;
  --header-shrink-height: 65px;
  --max-width: 1440px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  scroll-behavior: smooth;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 1.0625rem; /* 17px base size */
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll Reduction */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-charcoal);
}

.display-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 0;
  }
}

.bg-ivory {
  background-color: var(--color-ivory);
}

.bg-navy {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
}

.bg-navy h1, .bg-navy h2, .bg-navy h3 {
  color: var(--color-white);
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-gold {
  background-color: var(--color-accent-gold);
  color: var(--color-white);
}

.btn-gold:hover {
  background-color: var(--color-accent-gold-hover);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background-color: transparent;
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
}

.btn-outline-gold:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

.btn-white:hover {
  background-color: var(--color-ivory);
  transform: translateY(-2px);
}

/* Signature Element: Gold Diamond Divider */
.diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.diamond-divider::before,
.diamond-divider::after {
  content: '';
  height: 1px;
  width: 40px;
  background-color: var(--color-accent-gold);
}

.diamond-divider::before {
  margin-right: 10px;
}

.diamond-divider::after {
  margin-left: 10px;
}

.diamond-divider .diamond {
  color: var(--color-accent-gold);
  font-size: 0.85rem;
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

header.shrink {
  height: var(--header-shrink-height);
  background-color: var(--color-white);
}

/* Transparent header floating over the homepage hero, matching Hindware's overlay nav.
   Turns solid (via .shrink, added by app.js on scroll) once the visitor scrolls past the hero. */
header.header-transparent {
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

header.header-transparent:not(.shrink) .logo-icon,
header.header-transparent:not(.shrink) .logo-title,
header.header-transparent:not(.shrink) .logo-subtitle {
  color: var(--color-white);
}

header.header-transparent:not(.shrink) .nav-link {
  color: rgba(255, 255, 255, 0.92);
}

header.header-transparent:not(.shrink) .nav-link::after {
  background-color: var(--color-white);
}

header.header-transparent:not(.shrink) #header-call-cta {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

header.header-transparent:not(.shrink) #header-call-cta:hover {
  background-color: var(--color-white);
  color: var(--color-navy-dark);
}

header.header-transparent:not(.shrink) .hamburger span {
  background-color: var(--color-white);
}

header.header-transparent.shrink {
  background-color: var(--color-white);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-ocean-blue);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-ocean-blue);
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-charcoal-light);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-ocean-blue);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Navigation Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--color-charcoal);
  transition: var(--transition-smooth);
}

/* Accessibility Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent-gold);
  outline-offset: 3px;
}

/* Footer Section */
footer {
  background-color: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

.footer-brand .logo-title {
  color: var(--color-white);
}

.footer-brand p {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-title {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  color: var(--color-accent-gold);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Micro-animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .nav-link {
    font-size: 1.2rem;
    display: block;
    width: 100%;
  }

  .nav-cta {
    display: flex; /* Keep container visible so the hamburger (nested inside it) stays visible */
  }

  #header-call-cta {
    display: none; /* Hide only the desktop-specific Call Now button on mobile */
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* The slide-out mobile menu panel is always white, even when the header
     itself is transparent (homepage hero). Force dark, visible text/underline
     for nav links inside that panel so they never inherit the
     transparent-header's white styling. */
  header.header-transparent .nav-menu .nav-link,
  .nav-menu .nav-link {
    color: var(--color-charcoal);
  }

  header.header-transparent .nav-menu .nav-link::after,
  .nav-menu .nav-link::after {
    background-color: var(--color-ocean-blue);
  }
}

/* ==========================================================================
   Oceano Sales LLP - Theme Layouts Stylesheet
   ========================================================================== */

/* Hero Section — Full-bleed, centered overlay text (Hindware-inspired) */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background-color: var(--color-navy-dark);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.hero-image,
.hero-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image {
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

/* Soft gradient so centered text stays legible over any photo, without flattening the image like Hindware's cool wash */
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 23, 36, 0.15) 0%, rgba(9, 23, 36, 0.1) 45%, rgba(9, 23, 36, 0.65) 100%);
  pointer-events: none;
}

.hero-content-centered {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 4.5rem;
  text-align: center;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content-centered .hero-eyebrow {
  color: rgba(255, 255, 255, 0.85);
  text-transform: none;
  letter-spacing: 1px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.hero-content-centered .hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 2rem;
  max-width: 640px;
}

@media (min-width: 640px) {
  .hero-content-centered .hero-headline {
    font-size: 2.75rem;
  }
}

@media (min-width: 1025px) {
  .hero-content-centered .hero-headline {
    font-size: 3.25rem;
  }
}

.hero-content-centered .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-btn-outline-white {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-navy-dark);
  border-color: var(--color-white);
}

/* Slider Dots (decorative, mirrors Hindware's banner-slider indicator) */
.hero-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
  cursor: pointer;
}

.hero-dot-active {
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 2px solid var(--color-white);
  position: relative;
}

.hero-dot-active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: transparent;
  animation: hero-dot-spin 1.6s linear infinite;
}

@keyframes hero-dot-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 560px;
  }
  .hero-content-centered {
    padding-bottom: 3rem;
  }
}

/* Respect reduced-motion preference: freeze video on first frame */
@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .video-banner-video {
    animation: none;
  }
  .hero-dot-active::after {
    animation: none;
  }
}

/* ==========================================================================
   Shower Video Banner Section (between "Explore by Space" and "Our Brands")
   ========================================================================== */
.video-banner-section {
  position: relative;
  height: 60vh;
  min-height: 340px;
  max-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-navy-dark);
}

.video-banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-banner-video,
.video-banner-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.video-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 23, 36, 0.55) 0%, rgba(9, 23, 36, 0.35) 50%, rgba(9, 23, 36, 0.65) 100%);
  pointer-events: none;
}

.video-banner-content {
  position: relative;
  z-index: 5;
  max-width: 640px;
  text-align: center;
  padding: 0 1.5rem;
  color: var(--color-white);
}

.video-banner-content .display-title {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.video-banner-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .video-banner-section {
    height: 70vh;
  }
  .video-banner-content .display-title {
    font-size: 2.75rem;
  }
  .video-banner-text {
    font-size: 1.15rem;
  }
}

@media (min-width: 1025px) {
  .video-banner-section {
    height: 80vh;
    max-height: 720px;
  }
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: var(--transition-fast);
  z-index: 10;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  width: 2px;
  height: 30px;
  background-color: var(--color-accent-gold);
  position: relative;
  display: block;
}

/* Explore by Space Grid */
.section-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header .eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-ocean-blue);
  font-weight: 600;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-top: 0.5rem;
}

.space-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .space-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.space-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--color-shadow);
  display: block;
}

.space-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.space-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 23, 36, 0.9) 0%, rgba(9, 23, 36, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.space-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.space-link-btn {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.space-card:hover img {
  transform: scale(1.05);
}

.space-card:hover .space-overlay {
  background: linear-gradient(to top, rgba(9, 23, 36, 0.95) 0%, rgba(9, 23, 36, 0.3) 100%);
}

.space-card:hover .space-link-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Authorized Brands Strip */
.brands-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .brands-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}

.brand-item {
  background-color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  cursor: pointer;
  color: var(--color-navy-dark);
  padding: 0.75rem;
}

.brand-item:hover {
  border-color: var(--color-white);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.brand-badge {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--color-navy-dark);
}

.brand-logo-img {
  max-width: 80%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Show the logo in its real, uploaded colors at all times - a white
     card background works with any logo file, transparent or not. */
  filter: none;
  transition: var(--transition-smooth);
}

/* Local SEO Location Grid */
.location-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1025px) {
  .location-section {
    grid-template-columns: 1.2fr 1fr;
  }
}

.location-details {
  padding-right: 0;
}

@media (min-width: 1025px) {
  .location-details {
    padding-right: 3rem;
  }
}

.location-details h2 {
  font-size: 2.2rem;
  margin-top: 0.5rem;
}

.contact-info-block {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Story Page & USP Grids */
.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1025px) {
  .story-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .usp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.usp-card {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--color-shadow);
  transition: var(--transition-smooth);
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--color-shadow);
}

.usp-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.usp-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* Category Filter & Catalog Products Card */
.filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0.65rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--color-ocean-blue);
  color: var(--color-white);
  border-color: var(--color-ocean-blue);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px var(--color-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--color-shadow);
}

.product-img-container {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #F8F9FA;
}

.product-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.product-description {
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.2rem;
}

.product-brand-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-ocean-blue);
  background-color: rgba(2, 112, 173, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* Contact Grid & Form Layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1025px) {
  .contact-split {
    grid-template-columns: 1.2fr 1fr;
  }
}

.contact-form-wrapper {
  background-color: var(--color-white);
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px var(--color-shadow);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.form-group label .required {
  color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-ocean-blue);
  box-shadow: 0 0 0 3px rgba(2, 112, 173, 0.1);
  outline: none;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px var(--color-shadow);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--color-shadow);
}

.info-icon {
  font-size: 2rem;
}

.info-text h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp + Back to Top)
   Hindware-style bottom-right floating stack, shown site-wide via footer.php
   ========================================================================== */
.float-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1200;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
  color: var(--color-white);
}

.float-btn:hover {
  transform: translateY(-3px);
}

.float-btn-whatsapp {
  background-color: #25D366;
}

.float-btn-top {
  background-color: var(--color-navy-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.float-btn-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .float-actions {
    right: 1rem;
    bottom: 1rem;
  }
  .float-btn {
    width: 46px;
    height: 46px;
  }
}
