/* =========================================================================
   Kawatra Impex - Global Logistics & Tradewebsite
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
  /* Colors */
  --primary-color: #003B73;
  /* Maritime Blue */
  --secondary-color: #1E293B;
  /* Slate Dark */
  --accent-color: #F97316;
  /* Energetic Orange */
  --accent-hover: #EA580C;
  --bg-light: #F8FAFC;
  --text-dark: #0F172A;
  --text-light: #64748B;
  --white: #FFFFFF;

  /* Typography */
  --font-main: 'Outfit', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
}

p {
  color: var(--text-light);
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================================================================
   Utility Classes
   ========================================================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* =========================================================================
   Navigation Bar
   ========================================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links li a {
  font-weight: 500;
  color: var(--secondary-color);
  position: relative;
  transition: var(--transition-fast);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: var(--white);
  min-width: 250px;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  list-style: none;
  padding: 0.5rem 0;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  padding: 0.75rem 1.5rem;
  display: block;
  font-weight: 400;
  color: var(--secondary-color);
}

.dropdown-menu li a::after {
  display: none !important;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--accent-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Accounts for fixed navbar height */
  position: relative;
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 59, 115, 0.9) 0%, rgba(30, 41, 59, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp 1s forwards;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.hero-btns .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

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

/* =========================================================================
   Features / About Section
   ========================================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* =========================================================================
   Products Grid Page Highlight
   ========================================================================= */
.products-showcase {
  background-color: var(--secondary-color);
  color: var(--white);
}

.products-showcase .section-title {
  color: var(--white);
}

/* Legacy hero-section product items (index.html showcase) stay minimal */
.product-item-hero {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

/* =========================================================================
   Footer
   ========================================================================= */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* =========================================================================
   Page Header (for internal pages)
   ========================================================================= */
.page-header {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  position: relative;
  margin-top: 70px;
}

/* =========================================================================
   Animations
   ========================================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================================
   Responsive Design
   ========================================================================= */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    padding-top: 0;
    margin-top: 0.5rem;
    background-color: transparent;
    min-width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-btns {
    flex-direction: column;
  }
}

/* =========================================================================
   Order Query Modal
   ========================================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.45);
  width: 92%;
  max-width: 530px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0055aa 100%);
  padding: 1.6rem 2rem;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.modal-header-text h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.modal-badge {
  background: var(--accent-color);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
}

.modal-close {
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

.modal-body {
  padding: 1.75rem 2rem 2rem;
}

.modal-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-color);
  border: 1.5px solid rgba(249, 115, 22, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.modal-form-group {
  margin-bottom: 1.1rem;
}

.modal-form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--secondary-color);
}

.modal-control {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  background: #FAFBFC;
}

.modal-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
  background: var(--white);
}

.modal-control[readonly] {
  background: #F1F5F9;
  color: var(--text-light);
  cursor: default;
}

textarea.modal-control {
  resize: vertical;
  min-height: 85px;
}

.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal-divider {
  border: none;
  border-top: 1px solid #F1F5F9;
  margin: 1.25rem 0;
}

.modal-submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.modal-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.modal-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.modal-success {
  text-align: center;
  padding: 2.5rem 1rem;
  display: none;
}

.modal-success .success-icon {
  width: 70px;
  height: 70px;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.25rem;
}

.modal-success h4 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.modal-success p {
  font-size: 0.9rem;
  max-width: 300px;
  margin: 0 auto;
}

/* Order Query button on product cards */
.product-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
  white-space: nowrap;
  margin-top: 0.6rem;
}

.product-item:hover .product-order-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-order-btn:hover {
  background: var(--accent-hover);
}

@media (max-width: 600px) {
  .modal-form-row {
    grid-template-columns: 1fr;
  }

  .modal-card {
    width: 96%;
    max-height: 96vh;
  }

  .modal-body {
    padding: 1.25rem;
  }

  .product-order-btn {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================================
   Contact Pop-up — Compact Widget
   ========================================================================= */
.contact-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.contact-popup-card {
  background: var(--white);
  width: 92%;
  max-width: 360px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-popup-overlay.is-visible .contact-popup-card {
  transform: scale(1) translateY(0);
}

.contact-popup-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #005bb7 100%);
  padding: 1.25rem 1.25rem 1rem;
  color: var(--white);
  text-align: center;
  position: relative;
}

.contact-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
  z-index: 10;
}

.contact-popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.contact-popup-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.contact-popup-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  max-width: 260px;
  margin: 0 auto;
}

.contact-popup-body {
  padding: 1rem 1.25rem 1.25rem;
}

.contact-popup-form .form-group {
  margin-bottom: 0.75rem;
}

.contact-popup-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--secondary-color);
}

.contact-popup-input {
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #F8FAFC;
}

.contact-popup-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
  background-color: var(--white);
}

.contact-popup-submit {
  width: 100%;
  padding: 0.7rem;
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  margin-top: 0.25rem;
}

.contact-popup-submit:hover:not(:disabled) {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(249, 115, 22, 0.35);
}

.contact-popup-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-popup-success {
  text-align: center;
  padding: 1.5rem 0;
  display: none;
}

.contact-popup-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-popup-success h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

@keyframes stroke { 100% { stroke-dashoffset: 0; } } @keyframes scale { 0%, 100% { transform: none; } 50% { transform: scale3d(1.1, 1.1, 1); } } @keyframes fill { 100% { box-shadow: inset 0px 0px 0px 30px #4bb71b; } } .checkmark { width: 40px; height: 40px; border-radius: 50%; display: block; stroke-width: 4; stroke: #fff; stroke-miterlimit: 10; margin: 10px auto; box-shadow: inset 0px 0px 0px #4bb71b; animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both; } .checkmark__circle { stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 4; stroke-miterlimit: 10; stroke: #4bb71b; fill: none; animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; } .checkmark__check { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; }
 .modal-success-overlay { position: relative; z-index: 10; background: var(--white); border-radius: 12px; } .checkmark { width: 80px; height: 80px; }

/* =========================================================================
   Amazon-Style Product Grid & Cards
   ========================================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* The card itself — white box, shadow, rounded */
.product-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e8ecf0;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}

/* Square image container */
.product-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f8fa;
  border-bottom: 1px solid #edf0f3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

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

.product-item:hover .product-img-wrap img {
  transform: scale(1.07);
}

/* Card body below the image */
.product-card-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}

.product-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.3;
  margin: 0;
}

.product-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

/* Orange CTA button at bottom of card */
.product-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.6rem 1rem;
  margin-top: 0.75rem;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.product-order-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Responsive breakpoints */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-img-wrap {
    padding: 0.75rem;
  }

  .product-card-body {
    padding: 0.75rem;
  }
}
