/* ==========================================================================
   OCEAN CERAMIC - Master Design System & Stylesheet
   Inspired by Donato Vitrified Luxury Ceramic Architecture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary: #00437a;
  --primary-dark: #002d54;
  --primary-light: #005a9e;
  --accent: #a7cd3a;
  --accent-hover: #93b72c;
  --accent-glow: rgba(167, 205, 58, 0.35);

  /* Neutrals & Dark Tones */
  --dark: #0b1320;
  --dark-surface: #131e30;
  --gray-900: #1e293b;
  --gray-800: #334155;
  --gray-700: #475569;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;

  /* Typography */
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Outfit', 'DM Sans', sans-serif;

  /* Spacing & Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 14px rgba(0, 67, 122, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 67, 122, 0.12);
  --shadow-xl: 0 20px 45px rgba(0, 0, 0, 0.16);
  --shadow-accent: 0 8px 24px rgba(167, 205, 58, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background-color: #fdfdfd;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

h1 em, h2 em {
  font-style: normal;
  color: var(--accent);
}

.sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.sub-title span {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BUTTONS & DONATO SWIPE EFFECT
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all var(--transition-normal);
}

/* Donato Signature Swipe-Left-Hover Effect */
.btn-swipe {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

.btn-swipe::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  z-index: -1;
  transition: left 0.35s ease;
}

.btn-swipe:hover::before {
  left: 0;
}

.btn-swipe:hover {
  color: #1a2a05 !important;
  box-shadow: var(--shadow-accent);
}

.btn-accent {
  background-color: var(--accent);
  color: #1a2a05;
}

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

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

.btn-white:hover {
  background: var(--accent);
  color: #1a2a05;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-contact-item i {
  color: var(--accent);
  font-size: 12px;
}

.top-contact-item a:hover {
  color: var(--white);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-social-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.top-social-list a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all var(--transition-fast);
}

.top-social-list a:hover {
  background: var(--accent);
  color: #1a2a05;
  transform: translateY(-2px);
}

/* Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-symbol {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, #002244 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 67, 122, 0.25);
  position: relative;
  overflow: hidden;
}

.logo-symbol::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(167, 205, 58, 0.3), transparent);
  transform: rotate(45deg);
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary);
  line-height: 1;
}

.logo-title span {
  color: var(--accent);
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 3px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-900);
  padding: 30px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.nav-link i.fa-chevron-down {
  font-size: 10px;
  color: var(--gray-500);
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--accent);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 10px 24px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-800);
  transition: all var(--transition-fast);
}

.dropdown-item a:hover {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 28px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--primary);
  cursor: pointer;
}

/* ==========================================================================
   PAGE BANNER / BREADCRUMB SECTION
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, rgba(0, 45, 84, 0.95) 0%, rgba(0, 67, 122, 0.92) 100%),
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><rect width="80" height="80" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  padding: 60px 0 65px;
  color: var(--white);
  position: relative;
  text-align: center;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
}

.page-banner h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 12px;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-list a:hover {
  color: var(--accent);
}

.breadcrumb-list span.current {
  color: var(--accent);
  font-weight: 600;
}

/* ==========================================================================
   CONTACT VIEW (PRIMARY FEATURE MATCHING DONATO)
   ========================================================================== */
.contact-section {
  padding: 80px 0 90px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

/* Left Column: Company Card */
.contact-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 45px 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary);
}

.contact-info-card h3 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 12px;
}

.company-tagline-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0, 67, 122, 0.08);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 35px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(0, 67, 122, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all var(--transition-fast);
}

.contact-detail-item:hover .contact-icon-box {
  background: var(--accent);
  color: #1a2a05;
  transform: scale(1.08);
}

.contact-detail-content h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-detail-content p,
.contact-detail-content a {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.5;
  font-weight: 500;
}

.contact-detail-content a:hover {
  color: var(--primary);
}

.card-social-strip {
  padding-top: 25px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-social-strip span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-700);
}

.card-social-icons {
  display: flex;
  gap: 10px;
}

.card-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.card-social-icons a:hover {
  background: var(--accent);
  color: #1a2a05;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Right Column: Interactive Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 45px 42px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

.form-lead-text {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: 28px;
}

.form-lead-text strong {
  color: #dc2626;
}

.ocean-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-label span.req {
  color: #dc2626;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 14.5px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--gray-900);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 67, 122, 0.12);
}

.form-control::placeholder {
  color: var(--gray-500);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-control.is-invalid {
  border-color: #dc2626;
  background-color: #fff8f8;
}

.error-message {
  font-size: 12px;
  color: #dc2626;
  display: none;
}

.error-message.show {
  display: block;
}

.form-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 16px;
}

.form-privacy-note {
  font-size: 12.5px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-privacy-note i {
  color: var(--accent);
}

/* Map Section */
.map-embed-section {
  width: 100%;
  height: 440px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
}

.map-embed-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.95) contrast(1.05);
}

.map-floating-card {
  position: absolute;
  top: 30px;
  left: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent);
  max-width: 320px;
  z-index: 10;
}

.map-floating-card h5 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 4px;
}

.map-floating-card p {
  font-size: 12.5px;
  color: var(--gray-700);
  line-height: 1.4;
  margin-bottom: 8px;
}

.map-floating-card a {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.map-floating-card a:hover {
  color: var(--accent);
}

/* ==========================================================================
   LET'S TALK BANNER SECTION (DONATO SIGNATURE)
   ========================================================================== */
.lets-talk-section {
  background: var(--primary-dark);
  color: var(--white);
  padding: 75px 0 70px;
  text-align: center;
  position: relative;
}

.lets-talk-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(167, 205, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lets-talk-section h2 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 8px;
}

.lets-talk-section p.sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 45px;
}

.talk-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.talk-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  transition: all var(--transition-normal);
}

.talk-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.talk-card-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: var(--accent);
  color: #1a2a05;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-accent);
}

.talk-card-content h5 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.talk-card-content p,
.talk-card-content a {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* ==========================================================================
   HERO SLIDER SECTION (HOME VIEW)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background: var(--dark);
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 19, 32, 0.95) 0%, rgba(11, 19, 32, 0.75) 50%, rgba(11, 19, 32, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 60px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(167, 205, 58, 0.18);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero-title {
  color: var(--white);
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--accent);
  color: #1a2a05;
  border-color: var(--accent);
}

.slider-prev {
  left: 28px;
}

.slider-next {
  right: 28px;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.slider-dot.active {
  width: 32px;
  background: var(--accent);
}

/* ==========================================================================
   METRICS COUNTER BAR (MATCHING DONATO'S COUNTERS)
   ========================================================================== */
.metrics-section {
  background: var(--primary);
  color: var(--white);
  padding: 55px 0;
  position: relative;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.metric-card {
  padding: 0 16px;
  position: relative;
}

.metric-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.metric-number-wrapper {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

/* ==========================================================================
   ABOUT HIGHLIGHT SECTION
   ========================================================================== */
.about-preview-section {
  padding: 90px 0;
  background: var(--white);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-media-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-media-graphic {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(167, 205, 58, 0.25) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(0, 67, 122, 0.6) 0%, transparent 50%);
}

.media-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.media-badge h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 2px;
}

.media-badge p {
  font-size: 12.5px;
  color: var(--gray-700);
}

.about-content-box h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-content-box p {
  color: var(--gray-700);
  margin-bottom: 18px;
  font-size: 16px;
}

.about-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 35px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-900);
}

.about-feature-item i {
  color: var(--accent);
  font-size: 16px;
}

/* ==========================================================================
   PRODUCTS & COLLECTIONS VIEW
   ========================================================================== */
.products-section {
  padding: 85px 0 95px;
  background: var(--gray-50);
}

.section-header-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 45px;
}

.section-header-centered h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.section-header-centered p {
  color: var(--gray-600);
  font-size: 16px;
}

/* Category Filter Chips */
.filter-chips-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-chip {
  padding: 8px 20px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 67, 122, 0.2);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-thumb-container {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.product-texture-preview {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card:hover .product-texture-preview {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-badge.gold {
  background: #d97706;
}

.product-badge.accent {
  background: var(--accent);
  color: #1a2a05;
}

.product-size-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-hover);
  font-weight: 700;
  margin-bottom: 6px;
}

.product-title {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.product-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-meta-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  margin-bottom: 18px;
  font-size: 12.5px;
  color: var(--gray-500);
}

.product-meta-specs span strong {
  color: var(--gray-800);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 12.5px;
}

/* ==========================================================================
   INTERACTIVE TILES CALCULATOR VIEW (UTILITY)
   ========================================================================== */
.calculator-section {
  padding: 85px 0 95px;
  background: #ffffff;
}

.calculator-card-wrapper {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 45px;
  box-shadow: var(--shadow-md);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
}

/* Calculator Inputs Form */
.calc-inputs-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-section-title {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 6px;
}

.calc-unit-toggle {
  display: inline-flex;
  background: var(--gray-200);
  padding: 4px;
  border-radius: var(--radius-full);
  gap: 4px;
}

.calc-unit-btn {
  padding: 6px 18px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--gray-700);
  transition: all var(--transition-fast);
}

.calc-unit-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.calc-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wastage-pill-selector {
  display: flex;
  gap: 10px;
}

.wastage-pill {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition-fast);
}

.wastage-pill:hover,
.wastage-pill.active {
  border-color: var(--accent);
  background: rgba(167, 205, 58, 0.12);
  color: var(--primary);
}

/* Calculator Results Box */
.calc-results-container {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-results-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.calc-results-header h4 {
  color: var(--white);
  font-size: 20px;
}

.calc-results-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.results-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.result-metric-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}

.result-metric-card.highlight {
  background: rgba(167, 205, 58, 0.2);
  border-color: var(--accent);
}

.result-metric-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

.result-metric-card.highlight .result-metric-value {
  color: var(--white);
}

.result-metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.calc-summary-details {
  list-style: none;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}

.calc-summary-details li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 4px;
}

/* ==========================================================================
   TABLES: PACKING DETAILS & TECHNICAL SPECIFICATIONS
   ========================================================================== */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.ocean-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.ocean-table thead {
  background: var(--primary);
  color: var(--white);
}

.ocean-table th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ocean-table th:last-child {
  border-right: none;
}

.ocean-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition-fast);
}

.ocean-table tbody tr:hover {
  background: var(--gray-50);
}

.ocean-table td {
  padding: 14px 20px;
  color: var(--gray-800);
  border-right: 1px solid var(--gray-100);
}

.ocean-table td:last-child {
  border-right: none;
}

.ocean-table td strong {
  color: var(--primary);
}

.badge-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(167, 205, 58, 0.2);
  color: #3b530c;
}

/* ==========================================================================
   GLOBAL EXPORT NETWORK SHOWCASE
   ========================================================================== */
.export-section {
  padding: 85px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 100%);
}

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

.export-country-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-fast);
}

.export-country-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.country-flag-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(0, 67, 122, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--primary);
  font-weight: 700;
}

.country-info h5 {
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.country-info p {
  font-size: 12px;
  color: var(--gray-500);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--accent);
}

.footer-about p {
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

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

.footer-links-list a i {
  font-size: 10px;
  color: var(--accent);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ==========================================================================
   PRODUCT MODAL & TOAST NOTIFICATION
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 32, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.92);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-content-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  font-size: 16px;
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #ef4444;
  color: var(--white);
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 5px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2500;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

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

.toast-icon {
  font-size: 22px;
  color: var(--accent);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Back to Top */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  border: none;
  transition: all var(--transition-fast);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--accent);
  color: #1a2a05;
  transform: translateY(-4px);
}

/* ==========================================================================
   MULTI-PAGE UTILITIES (SEARCH, MACHINERY, LOOKBOOKS, FEATURES)
   ========================================================================== */
.product-search-wrapper {
  max-width: 520px;
  margin: 0 auto 35px;
  position: relative;
}

.product-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  font-size: 15px;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.product-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 67, 122, 0.12);
}

.product-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  font-size: 16px;
  pointer-events: none;
}

.machinery-grid,
.features-grid,
.lookbooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-box-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.feature-box-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.feature-box-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 67, 122, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: all var(--transition-fast);
}

.feature-box-card:hover .feature-box-icon {
  background: var(--accent);
  color: #1a2a05;
}

.feature-box-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-box-card p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Form status alerts */
.alert-box {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: none;
  font-size: 14.5px;
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

/* ==========================================================================
   CATALOGUE CARDS WITH FIRST PAGE THUMBNAILS & DUAL ACTIONS
   ========================================================================== */
.catalogue-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.catalogue-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.catalogue-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.catalogue-cover-container {
  position: relative;
  height: 340px;
  background: #0f172a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.catalogue-cover-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(11, 19, 32, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.catalogue-cover-badge i {
  color: #ef4444;
}

.catalogue-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catalogue-series-badge {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
  display: inline-block;
}

.catalogue-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.catalogue-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}

.catalogue-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

/* Lookbook Viewer Modal */
.lookbook-modal-dialog {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: var(--radius-lg);
  width: 94%;
  max-width: 960px;
  max-height: 94vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  color: white;
}

.lookbook-modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0b1320;
}

.lookbook-modal-header h4 {
  margin: 0;
  font-size: 18px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lookbook-modal-header .modal-close-btn {
  position: static;
  background: none;
  border: none;
  color: var(--gray-300);
  font-size: 20px;
  cursor: pointer;
}

.lookbook-modal-header .modal-close-btn:hover {
  color: white;
}

.lookbook-viewer-stage {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 440px;
  background: #050b14;
}

.lookbook-page-img {
  max-height: 440px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease;
}

.lookbook-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
}

.lookbook-arrow:hover {
  background: var(--accent);
  color: #1a2a05;
}

.lookbook-arrow.prev { left: 20px; }
.lookbook-arrow.next { right: 20px; }

.lookbook-thumbnails-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  background: #0b1320;
  border-top: 1px solid #1e293b;
  overflow-x: auto;
}

.lookbook-thumb-btn {
  width: 50px;
  height: 65px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s;
  padding: 0;
  background: #222;
}

.lookbook-thumb-btn.active,
.lookbook-thumb-btn:hover {
  opacity: 1;
  border-color: var(--accent);
  transform: scale(1.05);
}

.lookbook-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-modal-footer {
  padding: 16px 24px;
  background: #070d17;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #1e293b;
  flex-wrap: wrap;
  gap: 14px;
}


