/* ===========================================================
   GMAC Exim Pvt. Ltd. — Elegant Bootstrap Theme
   Earthy brown + gold, refined editorial agro-export aesthetic
   =========================================================== */

:root {
  --brown:        #042959;
  --brown-dark:   #03204a;
  --brown-deep:   #02122c;
  --brown-light:  #3b5e8c;
  --gold:         #c8902a;
  --gold-soft:    #e0b561;
  --cream:        #f3f7fc;
  --cream-2:      #e7eef7;
  --ink:          #1b2735;
  --ink-soft:     #5b6775;
  --border:       #d9e2ee;
  --white:        #ffffff;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Lato', system-ui, sans-serif;

  --shadow-sm: 0 2px 10px rgba(4, 25, 60, .07);
  --shadow-md: 0 8px 30px rgba(4, 25, 60, .12);
  --shadow-lg: 0 18px 50px rgba(4, 25, 60, .18);
}

* { -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-font { font-family: var(--ff-display); }

a { text-decoration: none; transition: color .2s ease; }
img { max-width: 100%; }

::selection { background: var(--gold); color: #fff; }

/* ---- Reusable bits ---------------------------------------- */
.eyebrow {
  font-family: var(--ff-body);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  margin-bottom: .65rem;
}
.eyebrow.on-dark { color: var(--gold-soft); }

.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.15;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}
.sub-section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.15;
  font-size: clamp(1.2rem, 3.0vw, 2.2rem);
}
.section-title span { color: var(--brown); }

.lead-soft { color: var(--ink-soft); line-height: 1.9; font-size: 1.02rem; }

.text-brown { color: var(--brown) !important; }
.bg-cream   { background: var(--cream) !important; }
.bg-cream-2 { background: var(--cream-2) !important; }

.divider-gold {
  width: 64px; height: 3px; border: 0; opacity: 1;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 3px; margin: 1rem 0;
}
.text-center .divider-gold { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---------------------------------------------- */
.btn { border-radius: 3px; font-weight: 700; letter-spacing: .04em; }
.btn-brand {
  background: var(--brown); color: #fff;
  padding: .8rem 1.9rem; text-transform: uppercase; font-size: .82rem;
  border: 1px solid var(--brown);
}
.btn-brand:hover { background: var(--brown-dark); border-color: var(--brown-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-brand {
  border: 1px solid var(--brown); color: var(--brown);
  padding: .8rem 1.9rem; text-transform: uppercase; font-size: .82rem; background: transparent;
}
.btn-outline-brand:hover { background: var(--brown); color: #fff; }
.btn-gold {
  background: var(--gold); color: #fff;
  padding: .8rem 1.9rem; text-transform: uppercase; font-size: .82rem; border: 1px solid var(--gold);
}
.btn-gold:hover { background: #b07d1f; border-color: #b07d1f; color: #fff; }

/* ---- Top bar ---------------------------------------------- */
.topbar { background: var(--brown-deep); color: rgba(255,255,255,.85); font-size: .8rem; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--gold-soft); }
.topbar .social-ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; transition: background .2s, transform .2s;
}
.topbar .social-ico:hover { background: var(--gold); transform: translateY(-2px); }

/* ---- Navbar ----------------------------------------------- */
.navbar {
  background: #fff;
  box-shadow: 0 2px 18px rgba(4, 25, 60, .10);
  padding-top: .55rem; padding-bottom: .55rem;
}
.navbar .navbar-brand img { height: 54px; }
.navbar .nav-link {
  font-weight: 700; font-size: .86rem; color: var(--brown-dark) !important;
  letter-spacing: .02em; padding: .55rem .95rem !important;
  position: relative;
}
.navbar .nav-link::after {
  content: ''; position: absolute; left: .95rem; right: .95rem; bottom: .35rem;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--brown) !important; }

.dropdown-menu {
  border: 0; border-top: 3px solid var(--brown); border-radius: 0;
  box-shadow: var(--shadow-md); padding: .35rem 0; margin-top: .35rem;
}
.dropdown-item { font-size: .85rem; padding: .55rem 1.2rem; color: var(--brown-dark); font-weight: 500; }
.dropdown-item:hover, .dropdown-item:focus { background: var(--cream); color: var(--brown); }
.dropdown-menu .dropdown-toggle::after { float: right; margin-top: .55rem; }

@media (min-width: 992px) {
  .dropdown-submenu { position: relative; }
  .dropdown-submenu > .dropdown-menu { top: 0; left: 100%; margin-top: -.4rem; }
  .navbar .dropdown:hover > .dropdown-menu,
  .dropdown-submenu:hover > .dropdown-menu { display: block; }
}
@media (max-width: 667px) {
  .topbar {
    display: none ;
  }
  .story-img-wrap .story-badge {
    display: none;
  }
}

/* ---- Page hero / breadcrumb banner ------------------------ */
.page-hero {
  position: relative; color: #fff; text-align: center;
  padding: 5.5rem 0 4.5rem;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.page-hero .breadcrumb { justify-content: center; margin: 0; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.8); font-size: .85rem; }
.page-hero .breadcrumb-item a:hover { color: var(--gold-soft); }
.page-hero .breadcrumb-item.active { color: var(--gold-soft); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ---- Hero carousel (home) --------------------------------- */
.hero-carousel .carousel-item { height: 600px; }
.hero-carousel .carousel-item img { height: 100%; width: 100%; object-fit: cover; }
.hero-carousel .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(2,14,34,.82) 30%, rgba(2,14,34,.30) 75%);
  display: flex; align-items: center;
}
.hero-carousel .hero-caption { max-width: 560px; }
.hero-carousel .hero-caption h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem); font-weight: 700; line-height: 1.12; color: #f0f0f0;
  text-shadow: 0 2px 12px rgba(0,0,0,.45); margin-bottom: 1rem;
}
.hero-carousel .hero-caption p { color: rgba(255,255,255,.86); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.6rem; }
.hero-carousel .carousel-control-prev, .hero-carousel .carousel-control-next { width: 6%; }
.hero-carousel .carousel-indicators [data-bs-target] { width: 10px; height: 10px; border-radius: 50%; border: 0; }
.hero-carousel .carousel-indicators .active { background: var(--gold); }
@media (max-width: 768px) { .hero-carousel .carousel-item { height: 430px; } }

/* ---- Feature strip ---------------------------------------- */
.feature-strip { background: var(--cream); border-bottom: 1px solid var(--border); }
.feature-pill {
  background: #fff; border-radius: 8px; padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--brown);
  display: flex; align-items: center; gap: .9rem; height: 100%;
}
.feature-pill .fp-ico {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 8px;
  background: var(--cream); color: var(--brown);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.feature-pill h6 { margin: 0 0 .15rem; font-weight: 700; color: var(--brown-dark); font-size: .95rem; }
.feature-pill p  { margin: 0; font-size: .8rem; color: var(--ink-soft); }

/* ---- About image badge ------------------------------------ */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 10px; box-shadow: var(--shadow-lg); }
.about-img-wrap .exp-badge {
  position: absolute; bottom: -22px; right: -10px;
  background: var(--brown); color: #fff; border-radius: 10px;
  padding: 1rem 1.3rem; box-shadow: var(--shadow-md); text-align: center;
}
.about-img-wrap .exp-badge .num { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 700; line-height: 1; color: var(--gold-soft); }
.about-img-wrap .exp-badge .lbl { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }

.tick-list { list-style: none; padding: 0; margin: 1.3rem 0; }
.tick-list li { padding: .55rem 0; border-bottom: 1px dashed var(--border); display: flex; align-items: center; gap: .7rem; font-size: .95rem; }
.tick-list li:last-child { border-bottom: 0; }
.tick-list li i { color: #fff; background: var(--brown); width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .6rem; flex-shrink: 0; }

/* ---- Promise / expect cards ------------------------------- */
.value-card {
  background: #fff; border-radius: 10px; padding: 1.8rem 1.5rem; height: 100%;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--brown);
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .v-ico {
  width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.value-card h5 { font-family: var(--ff-body); font-weight: 700; color: var(--brown-dark); font-size: 1.02rem; }
.value-card p  { color: var(--ink-soft); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ---- Product cards ---------------------------------------- */
.product-card {
  background: #fff; border-radius: 10px; overflow: hidden; height: 100%;
  box-shadow: var(--shadow-sm); transition: transform .28s ease, box-shadow .28s ease;
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.product-card .pc-media { overflow: hidden; aspect-ratio: 4/3; background: var(--cream-2); }
.product-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .pc-media img { transform: scale(1.07); }
.product-card .pc-body { padding: 1.2rem 1.3rem 1.4rem; }
.product-card .pc-body h3 { font-family: var(--ff-body); font-weight: 700; color: var(--brown-dark); font-size: 1.05rem; margin-bottom: .5rem; }
.product-card .pc-body p  { color: var(--ink-soft); font-size: .86rem; line-height: 1.65; margin-bottom: .9rem; }
.link-arrow {
  font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--brown); display: inline-flex; align-items: center; gap: .4rem;
  border-bottom: 2px solid var(--brown); padding-bottom: 2px;
}
.link-arrow:hover { color: var(--brown-dark); gap: .65rem; }

/* Catalog tile (beans listing) */
.catalog-tile {
  display: block; background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.catalog-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.catalog-tile .ct-media { aspect-ratio: 1/1; overflow: hidden; background: var(--cream-2); }
.catalog-tile .ct-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.catalog-tile:hover .ct-media img { transform: scale(1.08); }
.catalog-tile .ct-label {
  text-align: center; padding: 1rem .6rem; font-weight: 700; color: var(--brown-dark);
  font-size: .98rem; border-top: 3px solid transparent; transition: border-color .2s, color .2s;
}
.catalog-tile:hover .ct-label { color: var(--brown); border-color: var(--gold); }

/* ---- Testimonials ----------------------------------------- */
.testimonials { background: var(--brown-deep); color: #fff; }
.testi-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 1.6rem; height: 100%;
}
.testi-card .stars { color: var(--gold-soft); letter-spacing: .15em; font-size: .85rem; margin-bottom: .7rem; }
.testi-card p { font-style: italic; color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.8; }
.testi-card .tc-foot { display: flex; align-items: center; gap: .75rem; margin-top: 1rem; }
.testi-card .tc-foot img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-card .tc-foot .nm { font-weight: 700; font-size: .9rem; }

/* ---- CTA banner ------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: #fff; text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }

/* ---- Certifications --------------------------------------- */
.cert-logo { width: 92px; height: 92px; object-fit: contain; filter: grayscale(35%); opacity: .9; transition: filter .25s, opacity .25s, transform .25s; }
.cert-logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-4px); }

/* ---- Newsletter ------------------------------------------- */
.newsletter { background: var(--brown); color: #fff; }
.newsletter .form-control { border: 0; border-radius: 4px 0 0 4px; padding: .8rem 1.1rem; }
.newsletter .btn { border-radius: 0 4px 4px 0; }

/* ---- Contact Form ------------------------------------------- */
.gform_heading .gform_required_legend { display: none; }
.gform_wrapper .gfield_label { color: #03204a; font-weight: 700; }
.gform_wrapper .gfield input[type="text"],
.gform_wrapper .gfield input[type="email"],
.gform_wrapper .gfield input[type="tel"],
.gform_wrapper .gfield textarea {
  border-radius: 4px; border: 1px solid #b6bec5; padding: .8rem 1.1rem;
}
.gform_wrapper .gform_footer input.gform_button {
  background-color: #042959 !important;
  color: #ffffff !important;
  padding: 14px 30px !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  border: 1px solid #042959 !important;
}

.gform-theme--foundation .gform_fields {
	row-gap: 15px !important;
}

.gform_wrapper .gform_fileupload_rules{
	display: none;
}

/* ---- Contact info cards ----------------------------------- */
.info-card {
  background: #fff; border-radius: 10px; padding: 2rem 1.5rem; text-align: center; height: 100%;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform .25s, box-shadow .25s;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card .ic-ico {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--cream); color: var(--brown); display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.info-card h5 { font-family: var(--ff-body); font-weight: 700; color: var(--brown-dark); }
.info-card p, .info-card a { color: var(--ink-soft); font-size: .92rem; margin: 0; }
.info-card a:hover { color: var(--brown); }

.form-control:focus, .form-select:focus { border-color: var(--brown-light); box-shadow: 0 0 0 .2rem rgba(115,70,47,.15); }
.form-label { font-weight: 700; font-size: .85rem; color: var(--brown-dark); }

/* ---- Product detail --------------------------------------- */
.pd-gallery img { border-radius: 10px; box-shadow: var(--shadow-md); width: 100%; }
.pd-cat {
  display: inline-block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--brown); background: var(--cream); padding: .3rem .8rem; border-radius: 20px;
}
.spec-table th { background: var(--cream); color: var(--brown-dark); width: 42%; font-weight: 700; }
.spec-table th, .spec-table td { padding: .7rem 1rem; font-size: .9rem; vertical-align: middle; }

/* ---- Footer ----------------------------------------------- */
footer.site-footer { background: #04152e; color: rgba(255,255,255,.72); }
footer .f-brand img { height: 48px; }
footer .f-brand p { font-size: .85rem; line-height: 1.8; margin: 1rem 0 1.2rem; }
footer h5 {
  font-family: var(--ff-body); font-weight: 700; color: #fff; font-size: 1.02rem;
  margin-bottom: 1.2rem; padding-bottom: .6rem; border-bottom: 2px solid var(--brown);
}
footer .f-links a { color: rgba(255,255,255,.7); font-size: .86rem; display: inline-flex; align-items: center; gap: .35rem; padding: .3rem 0; }
footer .f-links a::before { content: '\203A'; color: var(--brown-light); }
footer .f-links a:hover { color: var(--gold-soft); padding-left: .3rem; }
footer .f-contact li { display: flex; gap: .7rem; font-size: .85rem; padding: .4rem 0; align-items: flex-start; }
footer .f-contact li i { color: var(--brown-light); margin-top: .25rem; }
footer .f-contact a { color: rgba(255,255,255,.72); }
footer .f-contact a:hover { color: var(--gold-soft); }
footer .f-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: .85rem; transition: background .2s, transform .2s;
}
footer .f-social a:hover { background: var(--brown); transform: translateY(-3px); }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; color: rgba(255,255,255,.5); }
footer .footer-bottom a { color: var(--gold-soft); }

/* ---- Floating enquiry ------------------------------------- */
.enquiry-float {
  position: fixed; right: -42px; top: 55%; z-index: 1040;
  transform: rotate(-90deg); transform-origin: center;
  background: var(--brown); color: #fff; padding: .6rem 1.3rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 6px 6px 0 0; box-shadow: -2px 0 12px rgba(0,0,0,.25); cursor: pointer;
}
.enquiry-float:hover { background: var(--brown-dark); color: #fff; }

/* ---- Reveal on scroll ------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   OUR JOURNEY — timeline + stats
   =========================================================== */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: linear-gradient(var(--gold), var(--brown-light));
  transform: translateX(-50%); border-radius: 3px;
}
.tl-item { position: relative; width: 50%; padding: .8rem 2.5rem; }
.tl-item:nth-child(odd)  { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-item .tl-dot {
  position: absolute; top: 1.7rem; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); border: 4px solid #fff; box-shadow: var(--shadow-sm); z-index: 2;
}
.tl-item:nth-child(odd)  .tl-dot { right: -9px; }
.tl-item:nth-child(even) .tl-dot { left: -9px; }
.tl-card {
  background: #fff; border-radius: 10px; padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--brown);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tl-card .tl-year {
  display: inline-block; font-family: var(--ff-display); font-weight: 700;
  color: var(--brown); font-size: 1.35rem; margin-bottom: .25rem;
}
.tl-card h5 { font-family: var(--ff-body); font-weight: 700; color: var(--brown-dark); font-size: 1.05rem; margin-bottom: .4rem; }
.tl-card p  { color: var(--ink-soft); font-size: .9rem; line-height: 1.7; margin: 0; }
.tl-card .tl-ico { color: var(--gold); font-size: 1.1rem; margin-bottom: .5rem; }

@media (max-width: 768px) {
  .timeline::before { left: 18px; }
  .tl-item, .tl-item:nth-child(even) { width: 100%; left: 0; text-align: left; padding: .8rem 0 .8rem 3rem; }
  .tl-item:nth-child(odd) { text-align: left; }
  .tl-item:nth-child(odd) .tl-dot, .tl-item:nth-child(even) .tl-dot { left: 9px; right: auto; }
}

.stat-band { background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%); color: #fff; }
.stat-band .stat-num { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--gold-soft); line-height: 1; }
.stat-band .stat-lbl { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; opacity: .9; margin-top: .4rem; }

/* ===========================================================
   CAREER — job cards
   =========================================================== */
.job-card {
  background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--brown);
  border-radius: 10px; padding: 1.5rem 1.6rem; height: 100%;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.job-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.job-card h5 { font-family: var(--ff-body); font-weight: 700; color: var(--brown-dark); font-size: 1.12rem; margin-bottom: .6rem; }
.job-card .job-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .9rem; }
.job-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  background: var(--cream); color: var(--brown); padding: .28rem .7rem; border-radius: 20px;
  display: inline-flex; align-items: center; gap: .35rem;
}
.job-card p { color: var(--ink-soft); font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }

/* ===========================================================
   SHOP CARD — image / title / price + unit / Order Now
   =========================================================== */
.shop-card {
  background: #fff; border-radius: 16px; overflow: hidden; height: 100%;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.shop-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.shop-card .sc-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.shop-card .sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.shop-card:hover .sc-media img { transform: scale(1.06); }
.shop-card .sc-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.shop-card .sc-title {
  font-family: var(--ff-body); font-weight: 700; color: var(--ink);
  font-size: 1.05rem; letter-spacing: .03em; margin: 0;
}
.shop-card .sc-title a { color: inherit; }
.shop-card .sc-title a:hover { color: var(--brown); }
.shop-card .sc-foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  gap: .6rem; flex-wrap: wrap;
}
.shop-card .sc-price { display: flex; align-items: center; gap: .5rem; }
.shop-card .sc-amount { font-weight: 800; font-size: 1.3rem; color: var(--ink); line-height: 1; }
.shop-card .sc-amount .cur { color: var(--brown); margin-right: 5px; }
.shop-card .sc-unit {
  font-size: .72rem; color: var(--ink-soft); white-space: nowrap;
  border: 1px solid var(--border); border-radius: 20px; padding: .3rem .6rem;
}
.btn-order {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--brown); color: #fff; font-weight: 700; font-size: .82rem;
  padding: .62rem 1.05rem; border-radius: 7px; white-space: nowrap; border: 0;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-order:hover { background: var(--brown-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===========================================================
   OUR JOURNEY — redesigned (roadmap stepper + founders)
   =========================================================== */
.story-img-wrap { position: relative; }
.story-img-wrap img { border-radius: 14px; box-shadow: var(--shadow-lg); width: 100%; }
.story-img-wrap .story-badge {
  position: absolute; left: -14px; bottom: 26px; background: var(--brown); color: #fff;
  border-radius: 12px; padding: 1rem 1.3rem; box-shadow: var(--shadow-md); max-width: 200px;
}
.story-img-wrap .story-badge .sb-num { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--gold-soft); line-height: 1; }
.story-img-wrap .story-badge .sb-txt { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; margin-top: .2rem; }

.roadmap .rm-track { position: relative; display: flex; gap: 1.4rem; }
.roadmap .rm-track::before {
  content: ''; position: absolute; top: 39px; left: 9%; right: 9%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-light)); z-index: 0; border-radius: 3px;
}
.rm-step { flex: 1 1 0; text-align: center; position: relative; }
.rm-node {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 1.1rem;
  background: var(--brown); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; border: 4px solid #fff; box-shadow: 0 0 0 3px var(--gold); position: relative; z-index: 1;
  transition: transform .25s ease;
}
.rm-step:hover .rm-node { transform: translateY(-5px); }
.rm-num { display: block; font-family: var(--ff-display); color: var(--gold); font-weight: 700; font-size: .95rem; letter-spacing: .12em; margin-bottom: .25rem; }
.rm-step h5 { font-family: var(--ff-body); font-weight: 700; color: var(--brown-dark); font-size: 1.02rem; margin-bottom: .45rem; }
.rm-step p  { color: var(--ink-soft); font-size: .86rem; line-height: 1.65; margin: 0 .3rem; }

@media (max-width: 768px) {
  .roadmap .rm-track { flex-direction: column; gap: 1.6rem; }
  .roadmap .rm-track::before { left: 39px; top: 10px; bottom: 10px; right: auto; width: 3px; height: auto; }
  .rm-step { display: flex; align-items: flex-start; gap: 1.1rem; text-align: left; }
  .rm-node { margin: 0; flex-shrink: 0; }
  .rm-step p { margin: 0; }
}

.founder-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 2.1rem 1.5rem; text-align: center; height: 100%;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.founder-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fc-avatar {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--brown), var(--brown-light)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.9rem; box-shadow: 0 0 0 4px var(--cream-2);
  overflow: hidden;
}
.founder-card h5 { font-family: var(--ff-body); font-weight: 700; color: var(--brown-dark); margin-bottom: .25rem; }
.founder-card .fc-role { color: var(--gold); font-weight: 700; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.founder-card p { color: var(--ink-soft); font-size: .86rem; line-height: 1.7; margin: .7rem 0 0; }


/* =====================================================
   DGMC Enquiries — Admin Page Styles
  ===================================================== */
 
/* --- Filter Bar --- */
#dgmc-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    margin: 16px 0;
}
 
#dgmc-filter-bar .dgmc-filter-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
 
#dgmc-filter-bar label {
    font-weight: 600;
    font-size: 13px;
}
 
#dgmc-filter-bar .dgmc-filter-field input {
    min-width: 250px;
    width: 250px;
}
 
#dgmc-filter-bar .dgmc-filter-actions {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
 
/* #dgmc-loading {
    display: none;
    margin-top: 20px;
    align-self: center;
    color: #666;
    font-style: italic;
} */
 
/* --- Edit Modal Overlay --- */
#dgmc-edit-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
 
/* --- Modal Box --- */
#dgmc-edit-overlay .dgmc-modal-box {
    background: #fff;
    margin-top: 40px;
    border-radius: 8px;
    width: min(700px, 94vw);
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    padding: 32px 36px;
    position: relative;
}
 
#dgmc-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    color: #555;
}
 
#dgmc-edit-overlay h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 20px;
}
 
/* --- Modal Notice (success / error) --- */
#dgmc-modal-notice {
    display: none;
    margin-bottom: 16px;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 13px;
}
 
#dgmc-modal-notice.dgmc-notice-success {
    background: #edfaef;
    color: #1a7e35;
    border: 1px solid #a8e6b5;
}
 
#dgmc-modal-notice.dgmc-notice-error {
    background: #fdecea;
    color: #c0392b;
    border: 1px solid #f5c6c2;
}
 
/* --- Modal Fields Grid --- */
#dgmc-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}
 
#dgmc-modal-body label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}
 
#dgmc-modal-body input,
#dgmc-modal-body textarea {
    width: 100%;
}
 
#dgmc-modal-body .dgmc-full-width {
    grid-column: 1 / -1;
}
 
#dgmc-modal-body hr {
    grid-column: 1 / -1;
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 4px 0;
}
 
/* --- Modal Footer --- */
.dgmc-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}

/* ==========================
   Global Loader
========================== */

#dgmc-loading,
#dgmc-modal-loader {
    display: block;
}

.dgmc-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    gap: 15px;
}

.dgmc-loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #2271b1;
    border-radius: 50%;
    animation: dgmc-spin 0.8s linear infinite;
}

.dgmc-loader-text {
    font-size: 14px;
    font-weight: 500;
    color: #50575e;
}

@keyframes dgmc-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#dgmc-table-wrap {
    min-height: 250px;
    position: relative;
}

.wp-list-table .dgmc-delete-btn {
    color: #b32d2e !important;
    border-color: #b32d2e !important;
}

.wp-list-table .dgmc-delete-btn:hover {
    color: #fff !important;
    background-color: #ff01010d !important;
    border-color: #961e1e !important;
}

.wp-core-ui .button-group.button-small .button, .wp-core-ui .button.button-small {
  line-height: 1 !important;
}






/*----------------------
  New Founder's card Css 
  ----------------------*/
.dgmc-team-section { background: #f5f7fa; padding: 70px 0 60px; }

.dgmc-label {
  text-align: center; font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #C9A84C; margin-bottom: 10px;
}
.dgmc-heading {
  text-align: center; font-family: var(--ff-display); font-size: 2rem;
  font-weight: 700; color: #0B1C3D; margin-bottom: 10px;
}
.dgmc-underline { width: 48px; height: 3px; background: #C9A84C; margin: 0 auto 14px; border-radius: 2px; }
.dgmc-sub { text-align: center; font-size: .9rem; color: #6b7a99; margin-bottom: 48px; }

.dgmc-grid-top {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto 24px;
}
.dgmc-grid-bot {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 740px; margin: 0 auto;
}

.dgmc-card {
  background: #fff; border-radius: 16px; border: 1px solid #e4e9f2;
  overflow: hidden; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.dgmc-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(11,28,61,.13); }

.dgmc-card-top {
  background: #0B1C3D; height: 90px; position: relative;
}
.dgmc-card-top::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 18px; background: #fff; border-radius: 16px 16px 0 0;
}
.dgmc-gold-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: #C9A84C;
}
.dgmc-avatar-wrap {
  position: absolute; bottom: -46px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.dgmc-avatar {
  width: 92px; height: 92px; border-radius: 50%;
  background: #e8ecf5;
  outline: 2px solid #C9A84C;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.6rem; color: #0B1C3D;
}
.dgmc-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dgmc-card-body { padding: 58px 24px 32px; }
.dgmc-card-name { font-size: 1.05rem; font-weight: 700; color: #0B1C3D; margin-bottom: 8px; }
.dgmc-card-role { font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: #C9A84C; }
.dgmc-card-sep { width: 32px; height: 2px; background: #e4e9f2; margin: 14px auto 0; border-radius: 2px; }

@media (max-width: 768px) {
  .dgmc-grid-top { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .dgmc-grid-bot { grid-template-columns: repeat(1, 1fr); max-width: 100%; }
}
@media (max-width: 480px) {
  .dgmc-grid-top { grid-template-columns: 1fr; }
}





.dgmc-table-wrap {
    position: relative;
}

.dgmc-inline-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border: 3px solid #ccd0d4;
    border-top-color: #2271b1;
    border-radius: 50%;
    animation: dgmc-spin 0.6s linear infinite;
    z-index: 2;
}

.dgmc-table-wrap.dgmc-table-loading > :not(.dgmc-inline-spinner) {
    opacity: 0.45;
    pointer-events: none;
}

.dgmc-table-wrap.dgmc-table-loading .dgmc-inline-spinner {
    display: block;
}

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