:root {
  --cream: #FAF7F2;
  --ink: #ffeed7;
  --rose: #A31D09;
  --blush: #F2C4B8;
  --sage: #8BAF8B;
  --gold: #C9974A;
  --muted: #1A3A3A;
  --border: #0c7774;
  --card: #FFFFFF;
  --ink-soft: #0c7774;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif !important;
  overflow-x: hidden;
}
.maindiv{
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* ── PROMO BAR ── */
.promo-bar {
  background: #0c7774;
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ── HEADER ── */
/*header {
  background: var(--ink);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 200;
}*/

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: #B0A99F;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--cream); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-btn {
  background: none;
  border: none;
  color: #B0A99F;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.search-btn:hover { color: var(--cream); }

.cart-pill {
  background: var(--rose);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cart-pill:hover { opacity: 0.88; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  overflow: hidden;
}

.hero-left {
  background: #0c7774;
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,96,76,0.15) 0%, transparent 65%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.72rem;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-dot {
  width: 6px;
  height: 6px;
  background: #feffc1;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-h1 em {
    font-style: italic;
    color: #feffc1;
    text-shadow: 1px 2px 4px #f5fabf;
}
.free-tag-big{
	text-shadow: 1px 2px 4px #f5fabf;
}
.hero-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #fff;
  max-width: 420px;
  margin-bottom: 40px;
}

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

.btn-primary {
  background: #FEFFC1;
  color: #1A3A3A !important;
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.92; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 14px 28px;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(255,255,255,0.06); }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--cream);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero Right — mosaic */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: var(--ink-soft);
}

.hero-tile {
  overflow: hidden;
  position: relative;
  background: #E8E2DA;
  display: flex;
  /*align-items: center;*/
  justify-content: center;
}

/*.hero-tile:first-child {
  grid-row: span 2;
}*/
a.cat-cardsd {
    display: inline-flex;
}
.hero-tile img {
  width: 100%;
  height: 100%;
  /*position: absolute;*/
  inset: 0;
}
.hero-tile img.catimg {
  /*border-radius: 50%;*/
  /* width: 176px; */
  /*padding: 20px;*/
}

.hero-tile-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(26,23,20,0.75);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 40px;
  backdrop-filter: blur(6px);
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  color: #0c7774;
}

.section-title em { font-style: italic; color: var(--rose); }

.view-all {
  font-size: 0.8rem;
  font-weight: 500;
  color: #0c7774;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.view-all:hover { color: #0c7774; border-color: #0c7774; }

/* ── CATEGORIES ── */
.categories-section {
  padding: 80px 48px;
  background: #fafad4a3;
}

.categories-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 34px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
}
.cat-icon-wrap .catimg{
  border-radius: 20px;
}
.cat-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform 0.25s cubic-bezier(.16,1,.3,1), box-shadow 0.25s;
  border: 1.5px solid var(--border);
  background: var(--card);
}

.cat-card:hover .cat-icon-wrap {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 28px rgba(26,23,20,0.1);
}

.cat-name {
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
  color:#0c7774;
  line-height: 1.35;
}

.cat-count {
  font-size: 0.65rem;
  color: var(--muted);
}

/* ── PRODUCTS GRID ── */
.products-section {
  padding: 40px 48px 80px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.prod-card {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s;
  position: relative;
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26,23,20,0.1);
}

.prod-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #F5EFE8, #EDE4DC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0c7774;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 40px;
  text-transform: uppercase;
}

.prod-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s;
  backdrop-filter: blur(4px);
}
.prod-card:hover .prod-wishlist { opacity: 1; }

.prod-body {
  padding: 14px 16px 16px;
}

.prod-cat {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 5px;
}

.prod-name {
  font-family:  'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-name a{
  text-decoration: none;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-wrap { display: flex; flex-direction: column; }

.price-was {
  font-size: 0.7rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-now {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c7774;
}

.add-bag {
  text-decoration: none;
  background: #0c7774;
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-size: 1rem;
}
.add-bag:hover { background: var(--rose); transform: scale(1.1); color:#fff; }

/* ── BANNER STRIP ── */
.banner-strip {
  margin: 0 48px 80px;
  border-radius: 20px;
  background: #0c7774;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.banner-strip::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(232,96,76,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.banner-strip::after {
  content: '✦';
  position: absolute;
  right: 200px;
  bottom: 20px;
  font-size: 4rem;
  color: rgba(255,255,255,0.04);
}

.banner-tag {
  display: inline-block;
  background: #fcf2b7;
  color: #0c7774;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 40px;
  margin-bottom: 16px;
  border: 1px solid rgba(232,96,76,0.3);
}

.banner-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 14px;
}

.banner-h2 em { font-style: italic; color: #feffc1; }

.banner-desc {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.7;
  max-width: 500px;
}

.banner-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.free-tag-big {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #feffc1;
  font-weight: 700;
  line-height: 1;
}

.free-sub {
  font-size: 0.78rem;
  color: #ffffff;
  text-align: right;
  line-height: 1.5;
  max-width: 180px;
}

/* ── DEALS SECTION ── */
.deals-section {
  padding: 0 48px 80px;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.deal-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: var(--ink);
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(26,23,20,0.09);
}

.deal-thumb {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #F5EFE8, #EDE4DC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.deal-pct {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #0c7774;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 40px;
}

.deal-body { padding: 10px 12px 14px; }

.deal-name {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #0c7774;
}

.deal-prices {
  display: flex;
  align-items: center;
  gap: 6px;
}

.deal-orig {
  font-size: 0.68rem;
  color: var(--muted);
  text-decoration: line-through;
}

.deal-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0c7774;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: #1A3A3A;
  padding: 36px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.trust-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.trust-sub {
  font-size: 0.72rem;
  color: #fff;
}

/* ── FOOTER ── */
footer {
  background: var(--ink-soft);
  padding: 64px 48px 32px;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 900;
}

.footer-tagline {
  font-size: 15px;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: var(--cream);
}

.footer-col h4 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600 !important;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid #ffeed7;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: #fff;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left > * {
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow { animation-delay: 0.1s }
.hero-h1 { animation-delay: 0.2s }
.hero-desc { animation-delay: 0.3s }
.hero-ctas { animation-delay: 0.4s }
.hero-stats { animation-delay: 0.5s }

.product-grid .prod-card { animation: fadeUp 0.5s ease both; }
.product-grid .prod-card:nth-child(1) { animation-delay: 0.05s }
.product-grid .prod-card:nth-child(2) { animation-delay: 0.12s }
.product-grid .prod-card:nth-child(3) { animation-delay: 0.19s }
.product-grid .prod-card:nth-child(4) { animation-delay: 0.26s }
.product-grid .prod-card:nth-child(5) { animation-delay: 0.33s }
.product-grid .prod-card:nth-child(6) { animation-delay: 0.40s }
.product-grid .prod-card:nth-child(7) { animation-delay: 0.47s }
.product-grid .prod-card:nth-child(8) { animation-delay: 0.54s }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .deals-grid { grid-template-columns: repeat(4, 1fr); }
  .categories-scroll { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  header#masthead { padding: 0 15px; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 40px 28px; min-height: 80vw; }
  .categories-section, .products-section, .deals-section { padding-left: 24px; padding-right: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-scroll { grid-template-columns: repeat(4, 1fr); }
  .banner-strip { margin: 0 24px 60px; padding: 40px 32px; grid-template-columns: 1fr; }
  .banner-right { align-items: flex-start; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .categories-scroll {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    row-gap: 28px;
}
  .cat-icon-wrap { width: 70px; height: 70px; font-size: 1.4rem; border-radius: 14px; }
  .hero-h1 { font-size: 2.4rem !important; }
}

a.cart-contents.shopping-bag.has-svg-icon, .hero-ctas a, .banner-right a {
  text-decoration: none;
}
.hero-ctas a:hover{
  color: #ffffff;
}

.banner-right a:hover{
  border: 1px solid #ffffff;
}