/* ============================================================
   GLOBAL STYLES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --bg:          #ffffff;
  --bg-card:     #ffffff;
  --text:        #1A1916;
  --text-muted:  #7A7060;
  --accent:      #3D5A3E;
  --accent-dark: #2A3F2B;
  --accent-light:#E8F0E9;
  --border:      #DDD5C5;
  --shadow:      0 4px 24px rgba(26,25,22,.08);
  --shadow-hover:0 8px 40px rgba(26,25,22,.15);
  --radius:      4px;
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'Montserrat', Arial, sans-serif;
  --transition:  0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   FULLSCREEN IMAGE VIEWER
   ============================================================ */
.image-viewer {
  position: fixed;
  inset: 0;
  background: rgba(26, 25, 22, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.image-viewer.open {
  opacity: 1;
  visibility: visible;
}

.viewer-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.viewer-container:active {
  cursor: grabbing;
}

#viewer-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
  pointer-events: none;
}

/* Viewer Controls */
.viewer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.viewer-close:hover {
  background: #fff;
  color: var(--text);
}

.viewer-prev, .viewer-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.viewer-prev:hover, .viewer-next:hover {
  background: #fff;
  color: var(--text);
}

.viewer-prev { left: 24px; }
.viewer-next { right: 24px; }

@media (max-width: 768px) {
  .viewer-prev, .viewer-next {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
  .viewer-prev { left: 12px; }
  .viewer-next { right: 12px; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.2;
  font-weight: 500;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: calc(100% - 48px);
  max-width: 1600px;
  margin-inline: auto;
}

.section {
  padding: 18px 0;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  background: linear-gradient(135deg, #2A3F2B 0%, #3D5A3E 50%, #4A6E4B 100%);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-top: 2px;
}

nav ul {
  display: flex;
  gap: 36px;
}

nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width var(--transition);
}

nav a:hover, nav a.active {
  color: #fff;
}

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

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
  transition: background var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-admin-btn {
  background: var(--accent-dark);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.82rem !important;
  transition: background var(--transition);
}

.nav-admin-btn:hover {
  background: var(--accent);
}

.nav-admin-btn::after {
  display: none !important;
}

/* ============================================================
   HERO — index.html
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #2A3F2B 0%, #3D5A3E 50%, #4A6E4B 100%);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  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.03'%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;
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  color: #BDD9BF;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

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

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--accent-dark);
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
}

.trust-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-item svg {
  opacity: 0.7;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  animation: fadeUp 0.4s ease both;
}

.product-card:hover {
  box-shadow: none;
  transform: translateY(-3px);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--accent-light);
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-body {
  padding: 10px 12px 12px;
}

.product-category {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a8a8a;
  margin-bottom: 6px;
  font-weight: 400;
}

.product-name {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 6px;
  color: #2b2b2b;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.product-availability {
  font-size: 0.76rem;
  font-weight: 500;
  margin-top: 2px;
}

.product-availability.available {
  color: #4c8b55;
}

.product-availability.unavailable {
  color: #b14a4a;
}

.product-price {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--accent);
}

.quick-view-btn {
  background: var(--accent-light);
  color: var(--accent);
  border: none;
  padding: 7px 14px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.quick-view-btn:hover {
  background: var(--accent);
  color: #fff;
}

.product-grid.compact-view {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.product-grid.compact-view .product-img {
  aspect-ratio: 1 / 1;
}

.product-grid.compact-view .product-category,
.product-grid.compact-view .product-name,
.product-grid.compact-view .product-availability,
.product-grid.compact-view .quick-view-btn {
  display: none;
}

.product-grid.compact-view .product-body {
  padding: 6px 0 0;
}

.product-grid.compact-view .product-footer {
  justify-content: center;
  margin-top: 0;
}

.product-grid.compact-view .product-price {
  font-size: 0.78rem;
}

/* ============================================================
   SHOP PAGE TOOLBAR
   ============================================================ */
.shop-toolbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.shop-section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
  margin-top: -10px;
  font-weight: 500;
}

.shop-toolbar-left {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.shop-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 20px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

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

.sort-select {
  height: 44px;
  background: var(--bg-card);
  border: 1px solid rgba(52, 78, 54, 0.35);
  color: var(--text-muted);
  padding: 0 38px 0 14px;
  border-radius: 12px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  min-width: 175px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7060' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s ease;
}

.sort-select:hover {
  border-color: #5E7B60;
}

.view-toggle-btn,
.wishlist-toggle-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(52, 78, 54, 0.35);
  border-radius: 12px;
  background: #fff;
  transform: translateY(-1px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  touch-action: manipulation;
}

.wishlist-toggle-btn.active {
  color: #C94B4B;
  border-color: rgba(201, 75, 75, 0.35);
}

.view-toggle-btn:hover,
.wishlist-toggle-btn:hover {
  border-color: #5E7B60;
}

.wishlist-toggle-btn {
  font-size: 1.7rem;
  font-weight: 300;
  color: #344E36;
  line-height: 1;
}

.wishlist-toggle-btn:hover,
.wishlist-toggle-btn.active {
  color: #C94B4B;
}

.wishlist-toggle-btn.active {
  transform: scale(1.05);
}

.product-favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  color: #7A7060;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.product-favorite-btn:hover {
  transform: scale(1.08);
}

.product-favorite-btn.active {
  color: #C94B4B;
  background: #fff;
}

.view-icon {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  gap: 4px;
  transition: all 0.25s ease;
}

.view-icon.active {
  opacity: 1;
}

.view-icon span {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  border: 1.5px solid var(--accent);
  background: transparent;
}

.view-toggle-btn.active .view-icon span {
  background: #5E7B60;
  border-color: #5E7B60;
}

.result-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.no-results h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text);
}

/* ============================================================
   MODAL (Quick View)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,25,22,0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-img-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-img-btn:hover {
  background: #fff;
}

.modal-img-prev {
  left: 12px;
}

.modal-img-next {
  right: 12px;
}

.modal-desc::-webkit-scrollbar {
  width: 6px;
}

.modal-desc::-webkit-scrollbar-track {
  background: #eee;
}

.modal-desc::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.modal-desc {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #eee;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #eee;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

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

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

.modal {
  background: var(--bg-card);
  border-radius: 8px;
  max-width: 1100px;
  width: 95%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transform: scale(0.95) translateY(10px);
  transition: transform var(--transition);
}

.modal-gallery {
  display: flex;
  flex-direction: column;
  background: var(--accent-light);
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;          /* prevents column from expanding beyond grid fraction */
  overflow: hidden;
}

.modal-img {
  position: relative;
  flex: 1;               /* takes all remaining vertical space above thumbnails */
  background: var(--accent-light);
  overflow: hidden;
  cursor: zoom-in;
  min-height: 0;
}

.modal-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* zoom to fill, crops edges */
  display: block;
}

.modal-body {
  padding: 36px 32px;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-category {
  font-size: 0.72rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.modal-name {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.modal-price {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--accent-dark);
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
  white-space: pre-line;
  overflow-y: auto;
  max-height: 360px;
  padding-right: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.modal-contact-btn,
.modal-share-btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.modal-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  text-decoration: none;
}

.modal-contact-btn:hover {
  background: var(--accent-dark);
}

.modal-share-btn {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.modal-share-btn:hover {
  background: var(--accent);
  color: #fff;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--text);
  z-index: 201;
}

.modal-close:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  flex-shrink: 0;
  min-width: 0;          /* prevents horizontal expansion */
}

.modal-thumb {
  width: 64px;
  height: 52px;
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--accent-light);
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.modal-thumb:hover,
.modal-thumb.active {
  opacity: 1;
  border-color: var(--accent);
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   ABOUT / VALUE PROPS (home)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--accent);
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER (home)
   ============================================================ */
.cta-banner {
  background: var(--accent);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  color: #fff;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 28px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
}

.location-link {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.location-link:hover {
  color: var(--accent);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-text span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-text a,
.contact-detail-text p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  margin: 0;
}

.contact-detail-text a:hover { color: var(--accent); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 1rem;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  letter-spacing: 0.03em;
}

.form-submit:hover {
  background: var(--accent-dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--accent);
}

.form-success.visible { display: block; }

/* Google Reviews Widget */
.google-reviews-widget {
  margin: 40px auto;
  max-width: 1400px;
  padding: 0 20px;
}

/* Ensure widget doesn't overflow on mobile */
.google-reviews-widget .elfsight-app-3df8d21b-953b-47e8-ad85-3fec2614e1ce {
  width: 100% !important;
}

/* ============================================================
   PAGE HERO (shop, contact)
   ============================================================ */
.page-hero {
  background: var(--accent-dark);
  color: #fff;
  padding: 16px 0 10px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 2px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 300;
}

.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 52px 0 32px;
}

.footer-admin-link {
  opacity: 0.18;
  font-size: 0.78rem;
  transition: opacity 0.2s ease;
}

.footer-admin-link:hover {
  opacity: 0.65;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.admin-link {
  opacity: 0.45;
  font-size: 0.8rem;
}

.admin-link:hover {
  opacity: 1;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 500;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  nav ul { display: none; }

  html,
  body {
    overflow-x: hidden;
  }

  .shop-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
  }

  .shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow: hidden;
  }

  .shop-toolbar-left {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 8px;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    flex: 0 0 100%;
  }

  .modal-name {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .modal-price {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .modal-desc {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .modal-body {
    max-height: none;
    overflow-y: auto;
    padding: 18px 18px 20px;
  }

  .modal-desc {
    max-height: 22vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 8px;
    margin-bottom: 14px;
  }

  .modal {
    width: calc(100% - 32px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    grid-template-columns: 1fr;
  }

  .modal-gallery {
    display: flex;
    flex-direction: column;
    background: var(--accent-light);
    height: 100%;
    min-height: 0;
  }

  /* FIX: ensure image container has height on mobile */
  .modal-img {
    min-height: 240px;       /* guarantees visibility on mobile portrait */
    flex: 1;                 /* keeps the stretching behavior */
    background: var(--accent-light);
  }

  .modal-img img {
    object-fit: cover;       /* fills the container */
  }

  .modal-thumbs {
    flex-shrink: 0;
  }

  .modal-name,
  .modal-desc {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .modal-contact-btn,
  .modal-share-btn {
    margin-top: 0;
  }

  .modal-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .modal-category {
    font-size: 0.65rem;
    margin-bottom: 4px;
  }

  .modal-price {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 16px;
  }

  .sort-select {
    width: calc(50% - 7px);
    min-width: 0;
    max-width: none;
    flex: 0 0 calc(50% - 7px);
  }

  .view-toggle-btn,
  .wishlist-toggle-btn {
    flex: 0 0 44px;
  }

  .result-count {
    flex: 0 0 auto;
    margin-left: 0;
    align-self: center;
  }

  .menu-toggle { display: flex; }

  nav.open ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--accent-dark);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
  }

  nav.open ul li { padding: 10px 0; border-bottom: 1px solid var(--border); }
  nav.open ul li:last-child { border-bottom: none; }
  nav a::after { display: none; }

  .hero { padding: 64px 0 60px; }
  .section { padding: 25px 0; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .trust-inner { gap: 20px; }
  .trust-item { font-size: 0.75rem; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .modal {
    grid-template-columns: 1fr 1fr;
    max-height: 92vh;
  }

  .modal-body {
    max-height: 92vh;
    overflow-y: auto;
    padding: 16px 18px 18px;
  }

  .modal-category {
    font-size: 0.62rem;
    margin-bottom: 4px;
  }

  .modal-name {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .modal-price {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .modal-desc {
    max-height: 120px;
    overflow-y: auto;
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .modal-contact-btn,
  .modal-share-btn {
    flex-shrink: 0;
    margin-top: 0;
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .modal-buttons {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-body {
    padding: 8px 8px 10px;
  }

  .product-name {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .product-category,
  .product-availability {
    font-size: 0.62rem;
  }

  .product-price {
    font-size: 0.72rem;
  }

  .product-grid.compact-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .product-grid.compact-view .product-img {
    aspect-ratio: 1 / 1;
  }

  .product-grid.compact-view .product-price {
    font-size: 0.68rem;
  }

  .quick-view-btn {
    display: none;
  }

  .contact-form { padding: 24px 20px; }
}
