/* ==========================================================================
   C2 Collection - Static Storefront
   Inspired by Societique.co.uk
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #000;
  background: #cbc39f;
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- Header ---------- */
.site-header {
  padding: 40px 0 20px;
  text-align: center;
}

.header-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  color: #000;
}

.logo-heading {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 8px;
  color: #55120a;
  margin: 0 0 8px;
  line-height: 1.1;
}

.logo-text {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2.5px;
  color: #55120a;
}

.logo-tagline {
  font-weight: 300;
}

/* ---------- Navigation ---------- */
.site-nav {
  border-top: 1px solid #55120a;
  border-bottom: 1px solid #55120a;
  margin: 0 auto;
  max-width: 980px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
}

/* --- Burger (hidden on desktop) --- */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #000;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links li a {
  display: block;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #55120a;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: #55120a;
}

.nav-links li a.nav-active {
  color: #fff;
}

.nav-right {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cart {
  position: relative;
  color: #000;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.nav-cart:hover {
  color: #555;
}

.nav-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #000;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-instagram {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #000;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-instagram:hover {
  background: #000;
  color: #fff;
}

/* ---------- Main Content ---------- */
.main-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
}

/* ---------- Product Card ---------- */
.product-card {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.product-card:hover {
  opacity: 0.85;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 10px;
  background: #f5f5f3;
}

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

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

.product-card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 4px;
  color: #000;
}

.product-card-price {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 20px 0;
}

.breadcrumb-inner {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #999;
}

.breadcrumb-inner a {
  color: #999;
  transition: color 0.2s ease;
}

.breadcrumb-inner a:hover {
  color: #000;
}

.breadcrumb-sep {
  margin: 0 6px;
  color: #ccc;
}

.breadcrumb-current {
  color: #000;
}

/* ---------- Product Detail Page (PDP) ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* --- Gallery --- */
.pdp-gallery {
  position: static;
}

.pdp-image-main {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f3;
  margin-bottom: 12px;
  cursor: zoom-in;
}

.pdp-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pdp-image-main:hover img {
  transform: scale(1.05);
}

.pdp-image-thumbs {
  display: flex;
  gap: 8px;
}

.pdp-thumb {
  width: 72px;
  height: 96px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  background: #f5f5f3;
}

.pdp-thumb:hover,
.pdp-thumb.active {
  border-color: #000;
}

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

/* --- Product Info --- */
.pdp-info {
  padding-top: 4px;
}

.pdp-vendor {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.pdp-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 16px;
}

.pdp-price-block {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pdp-price {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.pdp-compare-price {
  font-size: 15px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.pdp-availability {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.pdp-availability.in-stock {
  color: #2d7d46;
}

.pdp-availability.sold-out {
  color: #c00;
}

/* --- Variant selector --- */
.pdp-variants {
  margin-bottom: 20px;
}

.pdp-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #000;
}

.pdp-select {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 13px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.pdp-select:focus {
  outline: 2px solid #000;
  outline-offset: 1px;
}

/* --- Quantity --- */
.pdp-quantity {
  margin-bottom: 20px;
}

.pdp-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #000;
  width: fit-content;
}

.pdp-qty-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
  font-family: inherit;
}

.pdp-qty-btn:hover {
  background: #f5f5f3;
}

.pdp-qty-input {
  width: 34px;
  height: 28px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-family: inherit;
  font-size: 14px;
  color: #000;
  -moz-appearance: textfield;
}

.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* --- Buttons --- */
.pdp-add-to-cart {
  display: block;
  width: 100%;
  padding: 16px;
  background: #55120a;
  color: #fff;
  border: 1px solid #55120a;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-bottom: 10px;
}

.pdp-add-to-cart:hover {
  background: #6a241b;
}

.pdp-add-to-cart:disabled {
  background: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}

.pdp-buy-now {
  display: block;
  width: 100%;
  padding: 16px;
  background: #fff;
  color: #000;
  border: 1px solid #55120a;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-bottom: 20px;
}

.pdp-buy-now:hover {
  background: #55120a;
  color: #fff;
}

/* --- SKU --- */
.pdp-sku {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* --- Description --- */
.pdp-description {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 28px;
}

.pdp-description p {
  margin-bottom: 12px;
}

.pdp-description p:last-child {
  margin-bottom: 0;
}

/* --- Accordion (details/metafields) --- */
.pdp-details {
  border-top: 1px solid #55120a;
  margin-bottom: 24px;
}

.pdp-accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #55120a;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  transition: color 0.15s ease;
}

.pdp-accordion-btn:hover {
  color: #555;
}

.pdp-accordion-icon {
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.pdp-accordion-btn.open .pdp-accordion-icon {
  transform: rotate(45deg);
}

.pdp-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.pdp-accordion-panel.open {
  max-height: 300px;
  padding: 12px 0 16px;
}

.pdp-accordion-panel p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

/* --- Tags --- */
.pdp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.pdp-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid #ddd;
  color: #777;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.pdp-tag:hover {
  border-color: #000;
  color: #000;
}

/* --- Share --- */
.pdp-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-share-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
}

.pdp-share-link {
  color: #999;
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
}

.pdp-share-link:hover {
  color: #000;
}

/* --- Related Products --- */
.pdp-related {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid #55120a;
}

.pdp-related-heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
  color: #000;
}

.product-grid--3col {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Hero (Home) ---------- */
.hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 0;
}

.hero-inner {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
}

.hero-subtitle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* ---------- Section Heading ---------- */
.section-heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 32px;
  color: #000;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---------- Shared Buttons ---------- */
.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #000;
  color: #000;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: #55120a;
  color: #fff;
}

.btn-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
  transition: color 0.2s ease;
}

.btn-text:hover {
  color: #555;
}

/* ---------- Home About Section ---------- */
.home-about {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 20px;
}

.home-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.home-about-image {
  overflow: hidden;
}

.home-about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.home-about-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.home-about-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* ---------- Page Content (shared) ---------- */
.page-content {
  max-width: 720px;
  margin: 0 auto;
}

.page-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 24px;
  color: #000;
}

.page-subtitle {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin-bottom: 32px;
  margin-top: -16px;
}

/* ---------- About Page ---------- */
.about-hero {
  margin-bottom: 40px;
}

.about-hero-image {
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 40%;
}

.about-intro {
  margin-bottom: 40px;
}

.about-lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: #333;
}

.about-grid {
  display: grid;
  gap: 36px;
}

.about-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #000;
}

.about-section p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.about-list {
  margin: 12px 0;
  padding-left: 20px;
}

.about-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  list-style: disc;
  margin-bottom: 4px;
}

/* ---------- Collections Page ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-btn {
  padding: 8px 20px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #b8ac8e;
  background: #dfd7b3;
  color: #777;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: #000;
  color: #000;
}

.sort-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.sort-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #999;
}

.sort-select {
  width: auto;
  min-width: 180px;
  padding: 8px 36px 8px 12px;
  font-size: 12px;
  background: #dfd7b3;
  border-color: #b8ac8e;
}

.collection-count {
  font-size: 11px;
  color: #999;
  margin-bottom: 20px;
}

/* ---------- Contact Page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-lead {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail p {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
}

.contact-detail a:hover {
  color: #555;
}

/* --- Form --- */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #000;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 13px;
  border: 1px solid #b8ac8e;
  background: #fff;
  color: #000;
  transition: border-color 0.15s ease;
}

.contact-layout .form-input {
  background: #dfd7b3;
}

.form-input:focus {
  outline: none;
  border-color: #000;
}

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

.form-success {
  font-size: 14px;
  color: #2d7d46;
  text-align: center;
  margin-top: 20px;
}

/* ---------- Legal / Terms Pages ---------- */
.legal-content {
  max-width: 680px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #000;
}

.legal-section p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}

.legal-section a {
  color: #000;
  text-decoration: underline;
}

.legal-section a:hover {
  color: #555;
}

/* ---------- Cart Page ---------- */
.cart-empty {
  text-align: center;
  padding: 40px 0;
}

.cart-empty p {
  font-size: 14px;
  color: #777;
}

.cart-table {
  margin-bottom: 32px;
}

.cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 40px;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #55120a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 40px;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #55120a;
  align-items: center;
}

.cart-item-product {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cart-item-image {
  width: 72px;
  height: 96px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f3;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.cart-item-variant {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

.cart-item-price,
.cart-item-total {
  font-size: 13px;
  font-weight: 500;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.15s ease;
}

.cart-item-remove:hover {
  color: #000;
}

.cart-summary {
  max-width: 360px;
  margin-left: auto;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid #55120a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cart-shipping-note {
  font-size: 11px;
  color: #999;
  margin-bottom: 20px;
}

.cart-note {
  margin-bottom: 20px;
}

.cart-note .form-textarea {
  min-height: 60px;
  font-size: 12px;
}

/* ---------- Footer (expanded) ---------- */
.site-footer {
  border-top: 1px solid #55120a;
  padding: 48px 20px 24px;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
}

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

.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #000;
}

.footer-text {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: #777;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #000;
}

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

.footer-social a {
  color: #777;
  transition: color 0.15s ease;
}

.footer-social a:hover {
  color: #000;
}

.footer-newsletter {
  display: flex;
  margin-top: 12px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 12px;
  border: 1px solid #b8ac8e;
  border-right: none;
  background: #dfd7b3;
  color: #000;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: #55120a;
}

.footer-newsletter button {
  padding: 10px 16px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  background: #55120a;
  color: #fff;
  border: 1px solid #55120a;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.footer-newsletter button:hover {
  background: #6a241b;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #55120a;
  text-align: center;
}

.footer-bottom p {
  font-size: 11px;
  letter-spacing: 1px;
  color: #999;
}

.site-footer p {
  font-size: 11px;
  letter-spacing: 1px;
  color: #999;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .nav-links li a {
    padding: 12px 10px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .logo-heading {
    font-size: 32px;
    letter-spacing: 5px;
  }

  .logo-text {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .site-header {
    padding: 24px 0 14px;
  }

  .main-content {
    padding: 24px 16px 40px;
  }

  .pdp {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pdp-title {
    font-size: 20px;
  }

  .pdp-related {
    margin-top: 40px;
    padding-top: 28px;
  }

  .product-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image img {
    height: 360px;
  }

  .hero-overlay {
    padding: 32px 24px;
  }

  .hero-title {
    font-size: 24px;
  }

  .home-about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-about-image img {
    height: 280px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-content {
    max-width: 100%;
  }

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

  .cart-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cart-summary {
    max-width: 100%;
  }

  /* Mobile nav: burger menu */
  .nav-burger {
    display: flex;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    border-bottom: 1px solid #55120a;
    z-index: 100;
    padding: 8px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    padding: 12px 20px;
    font-size: 12px;
    text-align: left;
  }

  .nav-right {
    position: static;
    transform: none;
  }

  .nav-instagram {
    display: none;
  }

  .nav-cart svg {
    width: 24px;
    height: 24px;
  }

  .nav-right {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .product-card-title {
    font-size: 10px;
  }

  .product-card-price {
    font-size: 11px;
  }

  .hero-image img {
    height: 280px;
  }

  .hero-title {
    font-size: 20px;
  }

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

  .about-hero-image img {
    height: 220px;
  }
}
