/* =============================================
   Bluewater Medical Supplies — Main Stylesheet
   Brand: #136ca3 (blue), #00ce7d (green)
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --blue:       #1a3a8c;
  --blue-dark:  #0f2464;
  --blue-light: #edf1fb;
  --green:      #00c87a;
  --green-dark: #00a566;
  --white:      #ffffff;
  --gray-50:    #f5f7fa;
  --gray-100:   #e9ecef;
  --gray-300:   #ced4da;
  --gray-600:   #6c757d;
  --gray-900:   #1a1a2e;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --radius:     8px;
  --transition: .2s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; color: var(--gray-600); }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }
.text-center { text-align: center; }
.badge { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 50px; margin-bottom: 1rem; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem; border-radius: var(--radius); font-size: .95rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); }
.btn-primary   { background: var(--blue);  color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }
.btn-outline   { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-green     { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover   { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.btn-lg        { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: .55rem; }
.nav-logo-icon { height: 36px; width: 36px; flex-shrink: 0; object-fit: contain; border-radius: 4px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--blue); letter-spacing: .02em; }
.nav-logo-sub  { font-family: 'Montserrat', sans-serif; font-size: .6rem; font-weight: 700; color: var(--green); letter-spacing: .14em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.nav-menu a { font-size: .9rem; font-weight: 500; color: var(--gray-900); padding: .4rem 0; border-bottom: 2px solid transparent; transition: all var(--transition); }
.nav-menu a:hover, .nav-menu a.active { color: var(--blue); border-bottom-color: var(--blue); }
.nav-actions { display: flex; gap: .75rem; margin-left: 1rem; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-900); margin: 5px 0; transition: all var(--transition); }

/* ---------- Mobile Menu ---------- */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--blue-dark); z-index: 999; flex-direction: column; padding: 5rem 2rem 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.2rem; font-weight: 600; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu a.btn { padding: .75rem 1.75rem; }
.mobile-menu-close { position: absolute; top: 1.25rem; right: 1.25rem; background: none; border: none; color: var(--white); font-size: 1.75rem; cursor: pointer; }

/* ---------- Alert Banner ---------- */
.alert-banner { background: var(--blue-light); border-left: 4px solid var(--blue); padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.alert-banner p { margin: 0; color: var(--blue-dark); font-weight: 500; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1a8ecf 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .75rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat span { display: block; font-size: 2rem; font-weight: 800; color: var(--white); }
	.hero-stat small { font-size: .8rem; color: rgba(255,255,255,.7); }
	.hero-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; }
	.hero-photo-wrapper { max-width: 420px; width: 100%; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 45px rgba(15,43,64,.4); }
	.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card { background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); border-radius: 16px; padding: 2rem; width: 100%; max-width: 380px; }
.hero-card-icon { width: 56px; height: 56px; background: var(--green); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.hero-card-icon svg { width: 28px; height: 28px; fill: white; }
.hero-card h3 { color: var(--white); margin-bottom: .5rem; }
.hero-card p { color: rgba(255,255,255,.75); margin-bottom: 0; font-size: .9rem; }
.hero-card-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.hero-card-list li { color: rgb(0, 60, 129); font-size: .9rem; display: flex; align-items: center; gap: .5rem; }
.hero-card-list li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ---------- Section Headings ---------- */
.section-heading { margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: .75rem; }
.section-heading p {
  font-size: 1.05rem;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.text-center .section-heading p,
.section-heading.text-center p { text-align: center; }

/* ---------- Category Grid ---------- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.category-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: all var(--transition); cursor: pointer; text-decoration: none; display: block; }
.category-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.category-card .cat-icon { width: 60px; height: 60px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.75rem; }
.category-card h3 { font-size: 1rem; color: var(--gray-900); margin-bottom: .35rem; }
.category-card span { font-size: .8rem; color: var(--gray-600); }

/* ---------- Product Grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card-img { background: var(--gray-50); height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.product-card-body { padding: 1.25rem; }
.product-card-body h3 { font-size: 1rem; margin-bottom: .35rem; }
.product-card-body .price { font-size: 1.2rem; font-weight: 700; color: var(--blue); margin-bottom: 1rem; }
.product-card-body .price-login { font-size: .85rem; color: var(--gray-600); margin-bottom: 1rem; }
.product-card-tag { display: inline-block; background: var(--gray-50); color: var(--gray-600); font-size: .75rem; padding: .2rem .6rem; border-radius: 4px; margin-bottom: .5rem; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; align-items: center; gap: .5rem; margin-top: 2rem; flex-wrap: wrap; }
.pagination .page-btn { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--gray-300); border-radius: var(--radius); background: var(--white); color: var(--gray-700); font-size: .9rem; font-weight: 500; cursor: pointer; transition: all var(--transition); padding: 0 .5rem; }
.pagination .page-btn:hover { background: var(--gray-50); border-color: var(--blue); color: var(--blue); }
.pagination .page-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.pagination .page-btn:disabled { opacity: .4; cursor: not-allowed; }
.pagination .page-ellipsis { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; color: var(--gray-500); font-size: .9rem; }

/* ---------- Shop Layout ---------- */
.shop-layout  { display: flex; gap: 2rem; align-items: flex-start; }
.shop-sidebar { min-width: 220px; flex-shrink: 0; }

/* ---------- Filter Bar ---------- */
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { padding: .5rem 1.25rem; border: 1px solid var(--gray-300); border-radius: 50px; background: transparent; font-size: .875rem; cursor: pointer; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ---------- Product Search Bar ---------- */
.product-search-bar { display: flex; gap: .5rem; align-items: center; margin-bottom: 1.5rem; }
.product-search-bar input { flex: 1; min-width: 180px; padding: .65rem 1rem .65rem 2.5rem; border: 1px solid var(--gray-300); border-radius: 8px; font-size: .9rem; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat .75rem center; transition: border-color .2s, box-shadow .2s; }
.product-search-bar input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(49,130,206,.15); }
.product-search-bar .search-clear-btn { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--gray-600); padding: .25rem .5rem; display: none; }
.product-search-bar .search-clear-btn.visible { display: inline-block; }

/* ---------- Trust Signals ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
.trust-card { text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-100); }
.trust-card .trust-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.trust-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.trust-card p { font-size: .875rem; margin-bottom: 0; }

	/* ---------- About Section ---------- */
	.about-grid {
	  display: grid;
	  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	  gap: 3rem;
	  align-items: center;
	}
	.about-text p {
	  max-width: 540px;
	}
	.about-image-wrapper {
	  border-radius: 18px;
	  overflow: hidden;
	  box-shadow: 0 18px 45px rgba(15,43,64,.12);
	}
	.about-image {
	  width: 100%;
	  height: 100%;
	  display: block;
	  object-fit: cover;
	}
	.about-list {
	  margin-top: 1.25rem;
	  display: flex;
	  flex-direction: column;
	  gap: .5rem;
	}
	.about-list li {
	  font-size: .95rem;
	  color: var(--gray-600);
	}

/* ---------- CTA Banner ---------- */
.cta-band { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: var(--white); padding: 4rem 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .9rem; margin: 1rem 0 1.5rem; color: rgba(255,255,255,.6); }
.footer-brand .nav-logo-name { color: var(--white); }
.social-links { display: flex; gap: .75rem; }
.social-links a { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: color var(--transition); }
.social-links a:hover { color: var(--white); }
.social-links svg { width: 22px; height: 22px; }
.footer-col h4 { color: var(--white); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul li + li { margin-top: .6rem; }
.footer-col a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { font-size: .875rem; margin-bottom: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
	  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ---------- Mobile cart icon (next to hamburger) ---------- */
.nav-mobile-cart { margin-left:auto; display: none; }

@media (max-width: 768px) {
  .nav-menu, .nav-actions { margin-left:auto; display: none; }
  .nav-hamburger { display: flex; flex-direction: column; margin-left: auto; margin-right: .5rem; }
  .nav-mobile-cart { display: flex; align-items: center; position: relative; font-size: 1.25rem; text-decoration: none; margin-right: .75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }
  .cta-band { padding: 3rem 0; }
  .shop-layout  { flex-direction: column; }
  .shop-sidebar { min-width: 0; width: 100%; }
  /* Ensure section headings always center on mobile */
  .section-heading { text-align: center; }
  .section-heading p { max-width: 100%; text-align: center; margin: 0 auto; }

  /* Shieldline hero: keep text nicely contained on mobile */
  .shieldline-hero {
    padding: 3.5rem 0 3rem;
    text-align: center;
  }
  .shieldline-hero h1 {
    font-size: 1.6rem;
  }
  .shieldline-hero p {
    font-size: .95rem;
  }
  .shieldline-hero .hero-actions {
    justify-content: center;
  }
  .shieldline-logo {
    font-size: .9rem;
  }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid  { grid-template-columns: 1fr; }
}

/* ---------- Shieldline page ---------- */
.shieldline-hero { background: linear-gradient(135deg, #0d4b72 0%, #136ca3 100%); padding: 5rem 0 4rem; color: var(--white); }
.shieldline-hero h1 { color: var(--white); margin-bottom: 1rem; }
.shieldline-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; }
.shieldline-logo { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--green); letter-spacing: .04em; text-transform: uppercase; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .9rem; margin-top: 1rem; }
.spec-table td { padding: .6rem .75rem; border-bottom: 1px solid var(--gray-100); }
.spec-table td:first-child { font-weight: 600; width: 40%; color: var(--gray-900); }
.spec-table td:last-child { color: var(--gray-600); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero { background: var(--blue-light); padding: 3rem 0; border-bottom: 1px solid var(--gray-100); }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: .5rem; }
.page-hero p { margin-bottom: 0; font-size: 1rem; }



/* ---------- Product Detail Modal ---------- */
.pdm-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(15, 36, 100, .45);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.pdm-overlay.open { opacity: 1; pointer-events: auto; }

.pdm-modal {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  max-width: 820px; width: 94vw;
  max-height: 90vh;
  display: flex; overflow: hidden;
  transform: translateY(30px) scale(.96);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.pdm-overlay.open .pdm-modal { transform: translateY(0) scale(1); }

.pdm-img {
  flex: 0 0 45%; background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  min-height: 340px; position: relative; overflow: hidden;
}
.pdm-img img { width: 100%; height: 100%; object-fit: cover; }
.pdm-img .pdm-emoji { font-size: 5rem; }
.pdm-tag-float {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--blue); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .35rem .85rem;
  border-radius: 50px;
}

.pdm-body {
  flex: 1; padding: 2.25rem 2rem; display: flex; flex-direction: column;
  overflow-y: auto;
}
.pdm-close {
  position: absolute; top: .75rem; right: .85rem;
  background: var(--white); border: none; width: 36px; height: 36px;
  border-radius: 50%; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: transform .2s, background .2s;
  z-index: 2;
}
.pdm-close:hover { transform: scale(1.1); background: var(--gray-50); }

.pdm-body h2 { font-size: 1.45rem; margin-bottom: .25rem; color: var(--gray-900); }
.pdm-body .pdm-sku { font-size: .78rem; color: var(--gray-600); margin-bottom: 1.25rem; }
.pdm-body .pdm-price {
  font-size: 1.6rem; font-weight: 800; color: var(--blue);
  margin-bottom: 1.5rem; letter-spacing: -.02em;
}
.pdm-body .pdm-price-lock {
  font-size: .9rem; color: var(--gray-600);
  background: var(--blue-light); padding: .6rem 1rem;
  border-radius: var(--radius); margin-bottom: 1.5rem;
}

.pdm-label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gray-600); margin-bottom: .45rem;
}
.pdm-sizes {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.5rem;
}
.pdm-size-btn {
  padding: .45rem 1rem; border: 2px solid var(--gray-300);
  border-radius: var(--radius); background: var(--white);
  font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: all .15s ease; color: var(--gray-900);
}
.pdm-size-btn:hover { border-color: var(--blue); color: var(--blue); }
.pdm-size-btn.selected {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
}

.pdm-qty-row {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.75rem;
}
.pdm-qty-btn {
  width: 38px; height: 38px; border: 2px solid var(--gray-300);
  border-radius: var(--radius); background: var(--white);
  font-size: 1.15rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all .15s ease; color: var(--gray-900); font-weight: 600;
}
.pdm-qty-btn:hover { border-color: var(--blue); color: var(--blue); }
.pdm-qty-val {
  font-size: 1.1rem; font-weight: 700; min-width: 36px;
  text-align: center; color: var(--gray-900);
}

.pdm-add-btn {
  width: 100%; padding: .9rem 1.5rem; border: none;
  border-radius: var(--radius); background: var(--green);
  color: var(--white); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.pdm-add-btn:hover { background: var(--green-dark); }
.pdm-add-btn.added { background: var(--blue); }

.pdm-login-btn {
  width: 100%; padding: .9rem 1.5rem; border: 2px solid var(--blue);
  border-radius: var(--radius); background: transparent;
  color: var(--blue); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .2s; text-align: center;
  text-decoration: none; display: block;
}
.pdm-login-btn:hover { background: var(--blue); color: var(--white); }

@media (max-width: 640px) {
  .pdm-modal { flex-direction: column; max-height: 92vh; }
  .pdm-img { flex: 0 0 auto; min-height: 220px; max-height: 260px; }
  .pdm-body { padding: 1.5rem 1.25rem; }
}
