/* KILIMANJARO FLOWERS HUB — Premium Flower Export Brand */
:root {
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --gold: #C9A961;
  --gold-light: #E0C88A;
  --gold-dark: #A68B4B;
  --cream: #F8F6F0;
  --text-light: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.65);
  --glass: rgba(27, 67, 50, 0.6);
  --glass-border: rgba(201, 169, 97, 0.28);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  background: var(--green-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, .section-title, .hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.02em;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--green-dark);
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(27, 67, 50, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--glass-border);
}

.navbar { padding: 0.75rem 0; }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold) !important;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition), left var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
  left: 20%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark) !important;
  border-radius: 50px;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
}

.nav-cta::after { display: none; }
.nav-cta:hover { color: var(--green-dark) !important; opacity: 0.9; }

.navbar-toggler {
  border-color: var(--gold);
  padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(27, 67, 50, 0.98);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
  }
  .nav-cta { margin: 0.5rem 0 0; display: inline-block; }
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  border: none;
  padding: 0.85rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  background: transparent;
  transition: all var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* Glass card */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.9) 0%,
    rgba(27, 67, 50, 0.72) 45%,
    rgba(27, 67, 50, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats { padding: 1.75rem; }

.stat-item { padding: 0.5rem; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, transparent, rgba(2, 74, 53, 0.35), transparent);
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #fff;
}

.section-lead {
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Stats */
.section-stats {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(45, 106, 79, 0.25), transparent);
}

.stats-card {
  padding: 2rem 1.25rem;
  height: 100%;
}

.stats-card-num {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stats-card-suffix {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}

.stats-card-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* About */
.about-collage {
  position: relative;
  min-height: 420px;
}

.collage-main {
  width: 75%;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.collage-secondary {
  position: absolute;
  right: 0;
  top: 15%;
  width: 45%;
  border-radius: var(--radius);
  border: 2px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.collage-accent {
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 40%;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
}

.about-content { padding: 2rem; }

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.about-highlights li {
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.about-highlights i { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }

/* Feature cards */
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold);
  font-size: 1.5rem;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Product showcase */
.section-products {
  background: linear-gradient(180deg, transparent, rgba(45, 106, 79, 0.18), transparent);
  overflow: visible;
}

.product-showcase {
  margin-bottom: 4.5rem;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.product-showcase:last-child {
  margin-bottom: 0;
}

.product-showcase-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--glass-border);
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 320px;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.2);
}

.product-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-showcase-media:hover img {
  transform: scale(1.04);
}

.product-showcase-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.product-showcase-content {
  width: 100%;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(15, 45, 32, 0.98), rgba(27, 67, 50, 0.95));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .product-showcase-content {
    padding: 2.5rem;
    min-height: 100%;
  }

  .product-showcase-media {
    min-height: 480px;
    aspect-ratio: auto;
  }

  .product-showcase-media img {
    min-height: 480px;
  }
}

@media (max-width: 991px) {
  .product-showcase {
    margin-bottom: 3rem;
  }

  .product-showcase-reverse .order-lg-1,
  .product-showcase-reverse .order-lg-2 {
    order: unset !important;
  }

  .product-showcase-reverse .product-showcase-media {
    order: -1;
  }
}

.product-showcase-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-showcase-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.product-overview {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.product-features h4,
.packaging-details h4,
.export-markets h4 {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.product-features i {
  color: var(--gold);
  margin-top: 0.15rem;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  align-self: flex-start;
}

.product-showcase-content .btn-gold {
  margin-top: 0;
}

.spec-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.spec-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.spec-item strong {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
}

@media (max-width: 575px) {
  .product-specs-grid {
    grid-template-columns: 1fr;
  }
}

/* Packaging */
.section-packaging {
  background: linear-gradient(180deg, rgba(45, 106, 79, 0.15), transparent);
}

.packaging-details,
.packaging-visual {
  padding: 0;
  overflow: hidden;
}

.packaging-details {
  padding: 2.25rem;
}

.packaging-details h3 {
  font-family: var(--font-serif);
  color: #fff;
  margin-bottom: 1rem;
}

.packaging-details > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.rounded-packaging {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.packaging-specs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.packaging-spec {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.packaging-spec i {
  font-size: 1.35rem;
  color: var(--gold);
  margin-top: 0.15rem;
}

.packaging-spec strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.packaging-spec span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.country-tag {
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

/* CTA */
.section-cta {
  padding: 4rem 0;
}

.cta-banner {
  padding: 4rem 2rem;
  border: 1px solid var(--glass-border);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
}

/* Product cards (legacy) */
.product-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}

.product-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.product-card-body { padding: 1.5rem; display: flex; flex-direction: column; height: calc(100% - 220px);}

.product-card-body h3 {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-card-link-wrap {
  display: block;
  color: inherit;
  height: 100%;
}

.product-card-link-wrap:hover {
  color: inherit;
}

/* Product detail & listing pages */
.product-detail-page .site-header,
.products-page .site-header {
  background: rgba(27, 67, 50, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--glass-border);
}

.page-hero,
.product-detail-hero {
  padding: 7rem 0 2rem;
  background: linear-gradient(180deg, rgba(45, 106, 79, 0.25), transparent);
}

.page-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.section-title-sm {
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
}

.breadcrumb-nav {
  margin-bottom: 0;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--gold);
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.section-product-detail {
  padding-top: 1rem;
}

.product-detail-intro h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.product-detail-media {
  min-height: 360px;
}

.product-detail-block {
  padding: 2rem;
  height: 100%;
}

.product-detail-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.product-detail-block h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
  margin: 1.25rem 0 0.65rem;
}

.product-detail-block p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.detail-list i {
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.spec-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-table-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.spec-table-row span {
  color: var(--text-muted);
  flex-shrink: 0;
}

.spec-table-row strong {
  color: var(--gold);
  text-align: right;
  font-weight: 600;
}

.section-related-products {
  background: linear-gradient(180deg, rgba(45, 106, 79, 0.12), transparent);
}

.section-products-listing {
  padding-top: 2rem;
}

@media (max-width: 575px) {
  .spec-table-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .spec-table-row strong {
    text-align: left;
  }
}

/*=============================
   Products Toolbar
==============================*/

.products-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin:40px 0;
    flex-wrap:wrap;
}

.search-box{
    flex:1;
    position:relative;
    max-width:500px;
}

.search-box input{
    width:100%;
    height:56px;
    border:1px solid rgba(201,164,92,.4);
    border-radius:50px;
    background:#fff;
    padding:0 20px 0 55px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.search-box input:focus{
    border-color:#c9a45c;
    box-shadow:0 0 12px rgba(201,164,92,.2);
}

.search-box i{
    position:absolute;
    top:50%;
    left:22px;
    transform:translateY(-50%);
    color:#c9a45c;
    font-size:18px;
}

.cart-btn-toolbar{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#c9a45c;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    text-decoration:none;
    position:relative;
    transition:.3s;
}

.cart-btn-toolbar:hover{
    background:#111;
    color:#fff;
}

.cart-btn-toolbar span{
    position:absolute;
    top:-6px;
    right:-6px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:12px;
    font-weight:600;
    display:flex;
    justify-content:center;
    align-items:center;
}

@media(max-width:768px){

.products-toolbar{
    flex-direction:column;
    align-items:stretch;
}

.search-box{
    max-width:100%;
}

.cart-btn-toolbar{
    margin:auto;
}

}

/* Toast */

.cart-toast{
    position:fixed;
    top:25px;
    right:25px;
    background:#1c1c1c;
    color:#fff;
    padding:14px 22px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    transform:translateX(130%);
    transition:.4s;
    z-index:9999;
}

.cart-toast.show{
    transform:translateX(0);
}

.cart-toast i{
    color:#28a745;
    font-size:20px;
}

.quantity-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom: 15px;
    border:1px solid #d4af37;
    border-radius:50px;
    padding:10px 18px;
    width:170px;
    margin-left:auto;
    margin-right:auto;
    margin-top: auto;
}

.qty-btn{
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:#fff;
    font-size:22px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.qty-btn:hover{
    background:#111;
}

.qty-count{
    font-size:20px;
    font-weight:600;
    min-width:25px;
    text-align:center;
}

.cart-btn{
    width:100%;
    border:none;
    border-radius:50px;
    padding:13px;
    background:#d4af37;
    color:#fff;
    font-weight:600;
    transition:.3s;
    margin-top: 0;
}

.cart-btn:hover{
    background:#111;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 1.25rem;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  background: var(--green-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 1;
}

.timeline-content { padding: 1.5rem 2rem; }

.timeline-content h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.facility-stat { padding: 1.5rem; }

.facility-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
}

.facility-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rounded-facility {
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

/* World map */
.world-map-wrap { padding: 2rem; overflow: hidden; }

.world-map { width: 100%; height: auto; }

.map-land { fill: var(--gold); }

.map-marker {
  cursor: pointer;
  animation: pulse 2s ease-in-out infinite;
}

.map-marker circle {
  fill: url(#glow);
  stroke: var(--gold);
  stroke-width: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.country-tag {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: background var(--transition);
}

.country-tag:hover { background: rgba(212, 175, 55, 0.3); }

.export-countries { padding: 2rem; }

.export-countries h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.export-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.export-metric-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}

.export-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Cert cards */
.cert-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition);
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.cert-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.cert-card h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.cert-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Premium Gallery */
.section-gallery {
  background: linear-gradient(180deg, rgba(2, 74, 53, 0.2) 0%, transparent 50%, rgba(2, 74, 53, 0.15) 100%);
}

.premium-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .premium-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
  }
}

@media (min-width: 992px) {
  .premium-gallery {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }

  .gallery-card:nth-child(1) { grid-column: span 7; }
  .gallery-card:nth-child(2) { grid-column: span 5; }
  .gallery-card:nth-child(3) { grid-column: span 4; }
  .gallery-card:nth-child(4) { grid-column: span 4; }
  .gallery-card:nth-child(5) { grid-column: span 4; }
  .gallery-card:nth-child(6) { grid-column: span 6; }
  .gallery-card:nth-child(7) { grid-column: span 6; }
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  background: rgba(1, 50, 32, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 220px;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.15);
}

.gallery-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .gallery-card:nth-child(1) .gallery-card-media,
  .gallery-card:nth-child(2) .gallery-card-media {
    min-height: 300px;
  }
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-card:hover .gallery-card-media img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(1, 50, 32, 0) 35%,
    rgba(1, 50, 32, 0.75) 75%,
    rgba(1, 50, 32, 0.95) 100%
  );
  opacity: 0.85;
  transition: opacity var(--transition), background var(--transition);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(1, 50, 32, 0.15) 0%,
    rgba(1, 50, 32, 0.85) 60%,
    rgba(1, 50, 32, 0.98) 100%
  );
}

.gallery-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.gallery-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.gallery-card-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.gallery-card:hover .gallery-card-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-card:hover .gallery-card-zoom {
  background: var(--gold);
  color: var(--green-dark);
}

/* Testimonials */
.testimonial-slider { padding: 2.5rem; overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  text-align: center;
}

.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #fff;
}

.testimonial-author {
  color: var(--gold);
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.testimonial-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  cursor: pointer;
  transition: background var(--transition);
}

.testimonial-dot.active { background: var(--gold); }

/* Contact */
.contact-info { padding: 2rem; }

.contact-info h3 {
  color: var(--gold);
  font-size: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-info i { color: var(--gold); }

.contact-form { padding: 2rem; }

.contact-form .form-label {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form .form-control,
.contact-form select.form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.contact-form select.form-control option {
  background: var(--green-dark);
  color: #fff;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
}

.form-feedback { font-size: 0.9rem; }
.form-feedback.success { color: #7dcea0; }
.form-feedback.error { color: #e74c3c; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-wrap iframe { display: block; filter: grayscale(30%) contrast(1.1); }

.contact-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-right: 0.5rem;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--green-mid), #001a10);
  border-top: 2px solid var(--gold-dark);
  padding: 4rem 0 0;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-about {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 280px;
}

.site-footer h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li { margin-bottom: 0.4rem; }

.footer-links a,
.footer-contact a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-copyright-text {
  flex: 1;
  min-width: 240px;
}

.footer-copyright-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: left;
}

.footer-copyright-text a {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-copyright-text a:hover {
  color: var(--gold-light);
}

.footer-copyright-logo {
  flex-shrink: 0;
}

.footer-copyright-logo a {
  display: inline-block;
  opacity: 0.95;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-copyright-logo a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-copyright-logo img {
  display: block;
  width: 120px;
  height: auto;
  filter: brightness(1.05);
}

@media (max-width: 575px) {
  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copyright-logo {
    align-self: flex-end;
  }
}

/* Floating actions */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1020;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-btn.whatsapp { background: #25d366; }
.float-btn.email { background: var(--gold); color: var(--green-dark); }
.float-btn.contact { background: var(--green-light); border: 1px solid var(--gold); }

/* Modal */
.modal-content {
  background: var(--green-dark);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
}

.modal-title { color: var(--gold); font-family: var(--font-serif); }

.modal-product-img {
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--glass-border);
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.modal-detail-row span:first-child { color: var(--text-muted); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(1, 20, 14, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox[hidden] { display: none; }

.lightbox-stage {
  position: relative;
  max-width: min(960px, 92vw);
  width: 100%;
  text-align: center;
}

.lightbox-stage img {
  max-height: 72vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1.25rem;
  padding: 0 1rem;
}

.lightbox-caption-tag {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.lightbox-caption-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.5rem;
}

.lightbox-counter {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2001;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2001;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-nav:hover { background: var(--gold); color: var(--green-dark); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* Reveal animations — content visible by default; GSAP enhances when available */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
}

/* Before JS runs, everything stays visible */
html:not(.js-ready) .reveal-up,
html:not(.js-ready) .reveal-left,
html:not(.js-ready) .reveal-right {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-indicator { animation: none; }
  .map-marker { animation: none; }
}


/*==========================
ABOUT COMPANY
==========================*/

.about-images{
    position:relative;
}

.main-image{
    width:100%;
    border-radius:18px;
    border:2px solid #C9A961;
}

.small-image{
    width:230px;
    position:absolute;
    bottom:-30px;
    right:-30px;
    border-radius:18px;
    border:5px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,.3);
}

.about-counter{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;
    text-align:center;
    padding:25px;
    transition:.4s;
}

.about-counter:hover{
    transform:translateY(-8px);
    border-color:#C9A961;
}

.about-counter h3{
    color:#C9A961;
    font-size:42px;
    margin-bottom:10px;
}

.about-counter span{
    color:#fff;
}

/*==========================
TIMELINE
==========================*/

.timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.timeline-box{
    background:rgba(255,255,255,.05);
    border-radius:18px;
    padding:35px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.timeline-box:hover{
    transform:translateY(-10px);
    border-color:#C9A961;
}

.timeline-box h3{
    color:#C9A961;
    font-size:34px;
    margin-bottom:15px;
}

.timeline-box p{
    color:#fff;
}
/*==========================
MISSION & VISION
==========================*/

.mission-section{
    padding:100px 0;
}

.glass-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:45px 35px;
    height:100%;
    transition:.4s ease;
}

.glass-card:hover{
    transform:translateY(-10px);
    border-color:#c9a961;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.mission-card .icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#c9a961;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.mission-card h3{
    color:#fff;
    margin-bottom:18px;
}

.mission-card p{
    color:#d7d7d7;
    line-height:1.8;
}

/*==========================
VALUES
==========================*/

.values-section{
    padding:100px 0;
}

.feature-card{
    background:#fff;
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    transition:.4s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.feature-icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#c9a961;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:32px;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}

/*==========================
DIRECTOR
==========================*/

.director-section{
    padding:100px 0;
}

.director-section img{
    border-radius:25px;
    overflow:hidden;
}

.text-gold{
    color:#c9a961;
}



/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.hero-content h1{
    font-size:42px;
}

.timeline{
    grid-template-columns:repeat(2,1fr);
}

.small-image{
    width:180px;
    right:0;
}

.cta-section h2{
    font-size:34px;
}

}

@media(max-width:767px){

.timeline{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.small-image{
    display:none;
}

.feature-card,
.glass-card{
    padding:30px 22px;
}

.cta-section h2{
    font-size:28px;
}

.about-counter h3{
    font-size:32px;
}

}
/*==============================
PACKAGING HERO
==============================*/

.packaging-hero{
    position:relative;
    min-height:65vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:url("../images/packaging/banner.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.packaging-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(9,35,25,.72);
}

.packaging-hero .container{
    position:relative;
    z-index:2;
}

.packaging-hero .hero-content{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.packaging-hero h1{
    color:#fff;
    font-size:60px;
    margin:20px 0;
    line-height:1.15;
}

.packaging-hero p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
}

/*==============================
PACKAGING ABOUT
==============================*/

.packaging-about{
    padding:100px 0;
}

.packaging-about img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.mini-box{
    background:#fff;
    border-radius:16px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.mini-box:hover{
    transform:translateY(-8px);
}

.mini-box i{
    font-size:34px;
    color:#c9a961;
    margin-bottom:15px;
}

.mini-box h5{
    margin:0;
    font-size:18px;
}

/*==============================
PROCESS
==============================*/

.process-section{
    padding:100px 0;
}

.process-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-10px);
}

.process-card span{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#c9a961;
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:auto auto 20px;
}

.process-card h4{
    margin-bottom:15px;
}

.process-card p{
    color:#666;
    line-height:1.8;
}
/*==================================
PACKAGING GALLERY
==================================*/

.packaging-gallery{
    padding:100px 0;
}

.gallery-card{
    overflow:hidden;
    border-radius:20px;
    position:relative;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

/*==================================
EXPORT STANDARDS
==================================*/

.standards-section{
    padding:100px 0;
}

.standard-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.standard-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.standard-card i{
    font-size:42px;
    color:#c9a961;
    margin-bottom:20px;
}

.standard-card h4{
    margin-bottom:15px;
    font-size:22px;
    color:#18362a;
}

.standard-card p{
    color:#666;
    line-height:1.8;
}


/*==================================
RESPONSIVE
==================================*/

@media (max-width:991px){

.packaging-hero h1{
    font-size:42px;
}

.cta-box{
    padding:60px 25px;
}

.cta-box h2{
    font-size:34px;
}

.gallery-card img{
    height:260px;
}

}

@media (max-width:767px){

.packaging-hero{
    min-height:55vh;
}

.packaging-hero h1{
    font-size:32px;
}

.packaging-hero p{
    font-size:16px;
}

.process-card,
.standard-card,
.mini-box{
    padding:25px;
}

.gallery-card img{
    height:220px;
}

.cta-box h2{
    font-size:28px;
}

.cta-box p{
    font-size:15px;
}

.btn-gold{
    padding:13px 28px;
}

}
/*=================================
GALLERY HERO
=================================*/

.gallery-hero{
    position:relative;
    min-height:65vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:url("../images/gallery-banner.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.gallery-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(15,44,33,.75);
}

.gallery-hero .container{
    position:relative;
    z-index:2;
}

.gallery-hero .hero-content{
    max-width:820px;
    margin:auto;
}

.gallery-hero h1{
    font-size:58px;
    color:#fff;
    line-height:1.2;
    margin:20px 0;
}

.gallery-hero p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
}

/*=================================
GALLERY SECTION
=================================*/

.gallery-section{
    padding:100px 0;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.6s;
}

.gallery-card:hover img{
    transform:scale(1.12);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.1));
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding:30px;
    opacity:0;
    transition:.4s;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h4{
    color:#fff;
    font-size:24px;
    margin:0;
}


/*=================================
RESPONSIVE
=================================*/

@media(max-width:991px){

.gallery-hero h1{
    font-size:42px;
}

.gallery-card img{
    height:260px;
}

.cta-box{
    padding:60px 30px;
}

.cta-box h2{
    font-size:34px;
}

}

@media(max-width:767px){

.gallery-hero{
    min-height:55vh;
}

.gallery-hero h1{
    font-size:32px;
}

.gallery-hero p{
    font-size:16px;
}

.gallery-card img{
    height:220px;
}

.gallery-overlay h4{
    font-size:20px;
}



}
/* ===========================
   Inquiry Cart
=========================== */

.cart-section{
    padding:70px 0;
}

.cart-item{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border:1px solid rgba(212, 175, 55, .35);
    border-radius:15px;
    padding:20px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.cart-item img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:10px;
}

.cart-details{
    flex:1;
    color: #d4af37;
}

.cart-details h3{
    font-size:22px;
    margin-bottom:10px;
    color:#222;
}

.cart-details p{
    margin:5px 0;
    color:#e5e5e5;
}

.cart-actions{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:15px;
}

.cart-qty{
    display:flex;
    align-items:center;
    border:1px solid #d4af37;
    border-radius:50px;
    overflow:hidden;
}

.cart-qty button{
    width:40px;
    height:40px;
    border:none;
    background:#d4af37;
    color:#fff;
    font-size:20px;
    cursor:pointer;
}

.cart-qty span{
    width:50px;
    text-align:center;
    font-weight:600;
    color: #111;
}

.remove-btn{
    border:none;
    background:#8b1e1e;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
}

.remove-btn:hover{
    background:#b22222;
}

.cart-footer{
    margin-top:40px;
    padding:25px;
    background:#1B4332;
    border-radius:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    box-shadow:0 10px 25px rgba(212, 175, 55, .37);
}

.cart-buttons{
    display:flex;
    gap:15px;
}

.continue-btn,
.send-btn{
    padding:12px 24px;
    border:none;
    border-radius:50px;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    cursor:pointer;
    transition:.3s;
}

.continue-btn:hover,
.send-btn:hover{
    background:#b89224;
    color: #fff;
}

.empty-cart{
    text-align:center;
    padding:80px 20px;
}

.empty-cart i{
    font-size:70px;
    color:#d4af37;
}

.empty-cart h3{
    margin:20px 0 10px;
}

@media(max-width:768px){

.cart-item{
    flex-direction:column;
    text-align:center;
}

.cart-footer{
    flex-direction:column;
    gap:20px;
}

.cart-buttons{
    width:100%;
    flex-direction:column;
}

.continue-btn,
.send-btn{
    width:100%;
}

}