/* =========================================================
   GLOBAL SYSTEM FIX PATCH (STABILITY + ALIGNMENT CORE)
========================================================= */

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

img {
  display: block;
  height: auto;
}

section,
.section {
  width: 100%;
}

.container {
  width: min(1320px, 90%);
}

/* Prevent flex/grid distortion issues globally */
* {
  min-width: 0;
}

/* Better default media handling */
video,
iframe {
  max-width: 100%;
  border: 0;
}

/* Normalize form elements */
button,
input,
select,
textarea {
  font: inherit;
}

/* Fix inconsistent spacing behavior */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

:root {
  --gold: #d6be63;
  --gold-dark: #b89f42;
  --blue: #006c8e;
  --blue-light: #0b89b1;
  --navy: #083b4c;
  --navy-dark: #062d39;
  --white: #ffffff;
  --light: #f7f9fb;
  --light-2: #eef3f6;
  --text: #333333;
  --text-light: #666666;
  --border: rgba(214, 190, 99, 0.18);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Poppins, sans-serif;
  line-height: 1.7;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/*
|--------------------------------------------------------------------------
| TYPOGRAPHY
|--------------------------------------------------------------------------
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--navy);
  line-height: 1.3;
  font-weight: 700;
}

p {
  color: var(--text);
}

.section-title {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-subtitle {
  max-width: 760px;
  color: var(--text-light);
}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

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

.btn-outline {
  background: transparent;
  border: 1px solid rgba(214, 190, 99, 0.4);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--blue);
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
}

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

.logo img.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  transition: var(--transition);
  font-size: 15px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-icon {
  position: relative;
  color: var(--navy);
  font-size: 20px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 30px;
}

/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(8, 59, 76, 0.7)),
    url("../img/hero.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(214, 190, 99, 0.18);
  border: 1px solid rgba(214, 190, 99, 0.4);
  padding: 12px 18px;
  border-radius: 50px;
  color: #fff;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: var(--gold);
}

.hero h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
}

.hero h1,
.logistics-hero h1,
.page-hero h1 {
  word-break: break-word;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 35px;
}

/* Home hero CTA spacing polish */
.hero .btn {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.hero-trust-item i {
  color: var(--gold);
}

/*
|--------------------------------------------------------------------------
| PAGE HERO
|--------------------------------------------------------------------------
*/

.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(8, 59, 76, 0.72)),
    url("../img/packaging.jpeg");
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  color: #fff;
  font-size: 52px;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 760px;
}

/*
|--------------------------------------------------------------------------
| GLOBAL SECTIONS
|--------------------------------------------------------------------------
*/

.section {
  padding: 100px 0;
}

.bg-light {
  background: var(--light);
}

/*
|--------------------------------------------------------------------------
| FILTERS
|--------------------------------------------------------------------------
*/

.filter-section {
  position: sticky;
  top: 84px;
  z-index: 500;
  background: #fff;
  will-change: transform;
  padding: 35px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--navy);
  border: 1px solid rgba(214, 190, 99, 0.25);
  background: #fff;
  transition: var(--transition);
  font-weight: 500;
  font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.products-search-filter {
  margin-top: 20px;
  background: var(--light);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 20px;
}

.products-search-row {
  display: grid;
  grid-template-columns: 1.2fr 180px 180px 220px auto auto;
  gap: 15px;
  align-items: end;
}

.products-search-input,
.products-search-select,
.form-control {
  width: 100%;
  padding: 15px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-family: Poppins, sans-serif;
  transition: var(--transition);
  background: #fff;
}

.products-search-input:focus,
.products-search-select:focus,
.form-control:focus {
  border-color: rgba(0, 108, 142, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 108, 142, 0.1);
}

/*
|--------------------------------------------------------------------------
| PRODUCTS
|--------------------------------------------------------------------------
*/

.products-section {
  padding: 90px 0;
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.product-card,
.category-card,
.card-base,
.why-card,
.stat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(214, 190, 99, 0.15);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  background: var(--gold);
  color: #000;
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
}

.product-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f2f2f2;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-content {
  padding: 28px;
}

.product-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  background: rgba(214, 190, 99, 0.12);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.product-content h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.product-content p {
  color: var(--text-light);
  margin-bottom: 22px;
  min-height: 78px;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--light);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.highlight-pill i {
  color: var(--gold-dark);
}

.product-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  list-style: none;
}

.product-meta li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.product-meta strong {
  color: var(--navy);
}

.product-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-buttons .btn {
  flex: 1 1 auto;
  min-width: 120px;
  margin-top: 0;
}

.product-docs {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.product-doc-link {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: var(--light);
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.product-doc-link:hover {
  background: var(--navy);
  color: #fff;
}

/*
|--------------------------------------------------------------------------
| PRODUCT DETAILS
|--------------------------------------------------------------------------
*/

.product-details-section {
  padding: 100px 0;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.main-product-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.product-info-card {
  background: var(--light);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border);
  margin-top: 30px;
}

.product-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 35px;
}

/*
|--------------------------------------------------------------------------
| CARDS
|--------------------------------------------------------------------------
*/

.card-base,
.why-card,
.category-card,
.stat-card,
.doc-card,
.container-card,
.timeline-content,
.rfq-form-wrapper,
.order-summary,
.checkout-form-wrapper {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/*
|--------------------------------------------------------------------------
| CATEGORY GRID
|--------------------------------------------------------------------------
*/

.category-grid,
.categories-grid,
.why-cards,
.stats-grid,
.docs-grid,
.container-grid,
.sustain-grid {
  display: grid;
  gap: 30px;
}

.products-grid,
.category-grid,
.categories-grid {
  align-content: start;
}

.category-grid,
.categories-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.category-card {
  overflow: hidden;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-media {
  height: 230px;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-body {
  padding: 28px;
}

.category-body h3 {
  margin-bottom: 14px;
}

.category-description {
  color: var(--text-light);
  margin-bottom: 25px;
}

/*
|--------------------------------------------------------------------------
| FORMS
|--------------------------------------------------------------------------
*/

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

.form-group label {
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 15px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-family: Poppins, sans-serif;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(0, 108, 142, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 108, 142, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.full-width {
  grid-column: 1 / -1;
}

/*
|--------------------------------------------------------------------------
| RFQ
|--------------------------------------------------------------------------
*/

.rfq-section {
  padding: 100px 0;
  background: var(--light);
}

.rfq-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 35px;
}

.rfq-info {
  background: linear-gradient(180deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 20px;
  padding: 40px;
}

.rfq-info h2,
.rfq-info p,
.rfq-info h3 {
  color: #fff;
}

.rfq-feature {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.rfq-feature i {
  color: var(--gold);
}

/*
|--------------------------------------------------------------------------
| LOGISTICS
|--------------------------------------------------------------------------
*/

.logistics-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(8, 59, 76, 0.75)),
    url("../img/logistics.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.logistics-hero h1 {
  color: #fff;
  font-size: 68px;
}

.logistics-hero p {
  color: rgba(255, 255, 255, 0.92);
}

.timeline {
  position: relative;
  margin-top: 50px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  padding-left: 110px;
  margin-bottom: 50px;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 76px;
  height: 76px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}

.timeline-content {
  padding: 30px;
}

/*
|--------------------------------------------------------------------------
| TRACKING
|--------------------------------------------------------------------------
*/

.tracking-section {
  padding: 100px 0;
  background: var(--navy);
  color: #fff;
}

.tracking-box {
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.tracking-box h2 {
  color: #fff;
}

.tracking-form {
  display: flex;
  gap: 14px;
  margin-top: 35px;
}

.tracking-form input {
  flex: 1;
}

.shipment-card {
  margin-top: 35px;
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 16px;
}

.shipment-progress {
  width: 100%;
  height: 12px;
  border-radius: 40px;
  overflow: hidden;
  background: #eee;
  margin-top: 25px;
}

.progress-bar {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

/*
|--------------------------------------------------------------------------
| FOOTER CTA
|--------------------------------------------------------------------------
*/

.footer-cta {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  padding: 80px 0;
}

.footer-cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-cta h2 {
  color: #fff;
  font-size: 46px;
}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.main-footer {
  background: var(--navy-dark);
  color: #fff;
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 45px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 24px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 25px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 22px;
}

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

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges span {
  background: rgba(214, 190, 99, 0.15);
  border: 1px solid rgba(214, 190, 99, 0.28);
  padding: 10px 14px;
  border-radius: 30px;
  color: #fff;
  font-size: 12px;
}

.footer-newsletter-form,
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-newsletter-form input,
.newsletter-form input {
  padding: 15px;
  border-radius: 10px;
  border: none;
}

.footer-newsletter-form button,
.newsletter-form button {
  border: none;
}

.footer-contact {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 18px;
}

.support-status {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 6px rgba(46, 204, 113, 0.15);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
}

.cart-table th,
.cart-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  font-size: 14px;
}

.cart-total {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.tracking-result {
  margin-top: 22px;
}

.product-price {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-badges span {
  background: rgba(214, 190, 99, 0.12);
  border: 1px solid rgba(214, 190, 99, 0.22);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

/* Cert modal (about.php) */
.cert-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cert-modal.open {
  display: flex;
}

.cert-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cert-modal-content {
  position: relative;
  width: min(680px, 92vw);
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.cert-modal-header {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cert-modal-close {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
}

.cert-modal-close:hover {
  border-color: rgba(214, 190, 99, 0.5);
  background: rgba(214, 190, 99, 0.12);
}

.cert-modal-body {
  padding: 24px;
}

.cert-modal-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(214, 190, 99, 0.18);
  border: 1px solid rgba(214, 190, 99, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-size: 20px;
}

.cert-modal-text {
  color: var(--text-light);
  margin-bottom: 18px;
}

.cert-modal-actions {
  display: flex;
}

.cert-modal-actions .btn {
  width: 100%;
}

.product-details-content {
  margin-top: 0;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  color: #000;
}

.footer-trust-strip {
  margin-top: 70px;
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.trust-item i {
  color: var(--gold);
  font-size: 24px;
}

.footer-payments {
  text-align: center;
  padding: 45px 0 25px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 44px;
  color: var(--gold);
  margin-top: 20px;
}

.export-destinations {
  text-align: center;
  padding-bottom: 45px;
}

.destination-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.destination-tags span {
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

/*
|--------------------------------------------------------------------------
| ALERTS
|--------------------------------------------------------------------------
*/

.alert-success,
.alert-error {
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-weight: 500;
}

.alert-success {
  background: #d4edda;
  color: #155724;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
}

/*
|--------------------------------------------------------------------------
| CHECKOUT
|--------------------------------------------------------------------------
*/

.checkout-page,
.cart-page {
  padding: 100px 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 35px;
}

.checkout-form-wrapper,
.order-summary {
  padding: 40px;
}

.summary-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.summary-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.summary-total {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| WHATSAPP FLOAT
|--------------------------------------------------------------------------
*/

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: whatsappPulse 1.6s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 1200px) {
  .products-search-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

@media (max-width: 992px) {
  .hero h1,
  .logistics-hero h1 {
    font-size: 52px;
  }

  .product-details-grid,
  .checkout-grid,
  .rfq-grid {
    grid-template-columns: 1fr;
  }

  .products-search-row {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 85px;
    background: #fff;
    flex-direction: column;
    gap: 16px;
    padding: 25px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .logistics-hero {
    min-height: 80vh;
  }

  .hero h1,
  .logistics-hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-buttons,
  .product-buttons,
  .footer-cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-grid,
  .category-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-search-row {
    grid-template-columns: 1fr;
  }

  .tracking-form {
    flex-direction: column;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 70px;
  }

  .timeline-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .payment-icons {
    font-size: 34px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .hero h1,
  .logistics-hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero p,
  .page-hero p {
    font-size: 15px;
  }

  .product-content {
    padding: 22px;
  }

  .product-buttons {
    flex-direction: column;
  }

  .footer-cta h2 {
    font-size: 32px;
  }
}
