@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #FFC300;
  --primary-hover: #E0AC00;
  --primary-light: #FFF3CC;
  --secondary: #FF6B6B;
  --accent-green: #4ECDC4;
  --accent-purple: #A78BFA;
  --accent-pink: #F472B6;
  --bg-cream: #FFF8E7;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-light: #8A8A8A;
  --text-white: #FFFFFF;
  --border: #E8E0D0;
  --border-light: #F0EBE1;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --container-width: 1200px;
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.announcement-bar {
  background: var(--text-dark);
  color: var(--text-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after {
  opacity: 0.15;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--text-dark);
  color: var(--text-white);
}

.btn-dark:hover {
  background: #333333;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-cream);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary);
  color: var(--text-white);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
}

.product-card__quick-add {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 0.3s var(--bounce);
}

.product-card:hover .product-card__quick-add {
  bottom: 16px;
}

.product-card__body {
  padding: 20px;
}

.product-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-green);
  font-weight: 600;
}

.product-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 8px 0;
  color: var(--text-dark);
  line-height: 1.3;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card__price .current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-card__price .original {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-light);
}

.product-card__weight {
  font-size: 0.8rem;
  color: var(--text-light);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-dark);
}

.breadcrumbs span {
  color: var(--text-light);
}

.pagination {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
}

.pagination a:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.pagination .active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
  font-weight: 700;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--text-dark);
  color: var(--text-white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: fadeInUp 0.4s ease;
}

.toast--success {
  background: var(--accent-green);
  color: var(--text-dark);
}

.toast--error {
  background: var(--secondary);
}

.toast--warning {
  background: var(--primary);
  color: var(--text-dark);
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: var(--border-light);
  border-radius: var(--radius-md);
}

.skeleton::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 1.4s infinite;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--bg-white);
}

.quantity-selector button {
  background: transparent;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-dark);
}

.quantity-selector input {
  width: 40px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.star-rating {
  display: inline-flex;
  gap: 4px;
  color: var(--primary);
  font-size: 1rem;
}

.tabs {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid var(--border-light);
}

.tabs button {
  background: transparent;
  border: none;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.tabs button.active {
  color: var(--text-dark);
  border-bottom: 3px solid var(--primary);
}

.modal,
.drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

.modal.is-open,
.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin: 80px auto;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  animation: fadeInDown 0.4s ease;
}

.drawer__content {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 90vw);
  background: var(--bg-white);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  animation: slideInRight 0.4s ease;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table th,
.table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  font-size: 0.95rem;
}

.table th {
  background: var(--primary-light);
  color: var(--text-dark);
  font-weight: 700;
}

.table tbody tr:hover {
  background: #fff6d8;
}

.blob {
  position: absolute;
  border-radius: 60% 40% 30% 70%;
  opacity: 0.1;
  animation: blob 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.blob-yellow {
  background: var(--primary);
}

.blob-pink {
  background: var(--accent-pink);
}

.blob-green {
  background: var(--accent-green);
}

.blob-purple {
  background: var(--accent-purple);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-between {
  justify-content: space-between;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-sale {
  background: var(--secondary);
  color: var(--text-white);
}

.badge-new {
  background: var(--accent-green);
  color: var(--text-white);
}

.badge-hot {
  background: var(--primary);
  color: var(--text-dark);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes shimmer {
  from {
    background-position: -1000px;
  }
  to {
    background-position: 1000px;
  }
}

@keyframes blob {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 16px;
  }
}

/* ═════════════════════════ LAYOUT OPTION C: PREMIUM STYLING ═════════════════════════ */

/* ── Flexbox Utilities ── */
.flex-center {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

/* ── Sticky Site Header ── */
.site-header {
  position: sticky;
  top: 32px; /* Leaves room for the fixed announcement bar */
  margin: 0 auto;
  width: min(var(--container-width), calc(100% - 48px));
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  z-index: 1000;
  padding: 12px 24px;
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .site-header {
    top: 32px;
    width: calc(100% - 32px);
    border-radius: var(--radius-lg);
    padding: 10px 18px;
  }
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.header__inner {
  width: 100%;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

/* ── Main Navigation List ── */
.header__nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark);
  background: var(--primary-light);
}

/* ── Mega / Dropdown Menu ── */
.nav-item.has-mega {
  padding-right: 4px;
}

.nav-item.has-mega::after {
  content: '▾';
  font-size: 0.8rem;
  color: var(--text-light);
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: var(--transition);
}

.nav-item.has-mega:hover::after {
  transform: translateY(-50%) rotate(180deg);
  color: var(--primary-hover);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--bounce);
  z-index: 1010;
  border: 1px solid var(--border-light);
}

.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: left;
}

.mega-menu a:hover {
  background: var(--primary-light);
  color: var(--text-dark);
  padding-left: 20px;
}

/* ── Icon Buttons & Cart Badge ── */
.header__icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-button:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}

.cart-button {
  background: var(--primary-light);
  border: 2px solid transparent;
}

.cart-button:hover {
  background: var(--primary);
  border-color: var(--primary-hover);
}

.cart-count {
  background: var(--secondary) !important;
  color: var(--text-white) !important;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
  border: 2px solid var(--bg-white);
}

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  z-index: 10001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  transform-origin: left center;
}

.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 992px) {
  .header__nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ── Drawers (Mobile Menu & Cart) ── */
.drawer {
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(8px);
}

.drawer__content {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  border-left: 1px solid var(--border-light);
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__nav .nav-link {
  font-size: 1.15rem;
  font-family: 'Outfit', sans-serif;
  padding: 12px 20px;
  width: 100%;
  text-align: left;
}

/* ── Search Overlay Modal ── */
.search-overlay {
  background: rgba(26, 26, 26, 0.8) !important;
  backdrop-filter: blur(12px);
}

.search-overlay__content {
  background: transparent !important;
  box-shadow: none !important;
  margin-top: 15vh;
  text-align: center;
  position: relative;
  width: 100%;
}

.search-overlay__close {
  position: absolute;
  top: -40px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-overlay__close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.search-overlay__input {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: var(--radius-pill) !important;
  color: var(--text-white) !important;
  padding: 18px 32px !important;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
  text-align: center;
}

.search-overlay__input:focus {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 6px rgba(255, 195, 0, 0.2) !important;
}

/* ── Scroll Padding ── */
html {
  scroll-padding-top: 100px;
}

/* ── Dynamic Product Card Pastel Backgrounds (Layout Option C Style) ── */
.product-card:nth-child(5n+1) .product-card__image { background: #FFF3CC !important; } /* Soft Yellow */
.product-card:nth-child(5n+2) .product-card__image { background: #FFE8F0 !important; } /* Soft Pink */
.product-card:nth-child(5n+3) .product-card__image { background: #E0F8F5 !important; } /* Soft Mint */
.product-card:nth-child(5n+4) .product-card__image { background: #FFEAD2 !important; } /* Soft Peach */
.product-card:nth-child(5n+5) .product-card__image { background: #E8E0FF !important; } /* Soft Lavender */

.product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-card__image img {
  width: auto !important;
  height: 80% !important;
  max-height: 180px;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
  transition: transform 0.5s var(--bounce) !important;
}

.product-card:hover .product-card__image img {
  transform: scale(1.12) rotate(3deg);
}

.product-card__quick-add {
  display: none !important; /* Hide overlay button to keep card clean and use card-action button instead */
}

/* ── Footer Features Styling ── */
.footer-features {
  background: var(--bg-cream) !important;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.feature-item {
  display: flex !important;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.feature-item strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ── Main Site Footer Styling ── */
.site-footer {
  background: var(--text-dark) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: 'DM Sans', sans-serif;
}

.site-footer h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-white) !important;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--text-white);
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary) !important;
  padding-left: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white) !important;
  font-weight: 700;
  font-size: 0.8rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--text-dark) !important;
  transform: translateY(-3px);
}

.newsletter-form .form-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: var(--text-white) !important;
  border-radius: var(--radius-md) !important;
}

.newsletter-form .form-input:focus {
  border-color: var(--primary) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.9rem;
  padding: 20px 0;
}

/* ═════════════════════════ LAYOUT OPTION C: RESPONSIVE OVERRIDES (PHONE MOCKUP UI) ═════════════════════════ */

/* Hide Notification Bell on Desktop Nav */
.icon-button.notification-button {
  display: none;
}

.notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #2ecc71; /* Mockup Green Dot */
  border-radius: 50%;
  border: 1px solid var(--bg-white);
}

/* Mobile Bottom Navigation Styles */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  z-index: 999;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 700;
  gap: 3px;
  flex: 1;
  height: 100%;
  transition: var(--transition);
  text-decoration: none;
}

.mobile-bottom-nav__item svg {
  stroke-width: 2.2px;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item.active {
  color: #DCA700 !important; /* Premium brand gold active */
}

.bottom-nav-badge {
  border: 1.5px solid #ffffff !important;
  box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
}

/* Scrollable Categories Pills Style */
.mobile-categories-bar {
  display: none;
  gap: 10px;
  padding: 16px;
  overflow-x: auto;
  white-space: nowrap;
  background: var(--bg-cream);
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid var(--border-light);
}

.mobile-categories-bar::-webkit-scrollbar {
  display: none; /* Invisible scrollbar for native aesthetic */
}

.mobile-category-pill {
  display: inline-block;
  padding: 8px 20px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.mobile-category-pill.active {
  background: #DCA700 !important;
  color: #ffffff !important;
  border-color: #DCA700 !important;
}

/* Mobile Screen Layout Overrides (<= 768px Phones) */
@media (max-width: 768px) {
  
  /* Top Announcement Bar Gap Fixed */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
  }
  
  body {
    padding-bottom: 65px !important; /* Room for bottom navigation bar */
  }

  /* 1. Header gradient yellow banner */
  .site-header {
    background: linear-gradient(135deg, #FFC300, #E0AC00) !important;
    border: none !important;
    border-radius: 0 !important;
    top: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  }

  .header__inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* Left-aligned hamburger */
  .hamburger {
    display: flex !important;
    order: 1 !important;
    margin-left: 0 !important;
  }

  .hamburger span {
    background: #ffffff !important; /* White lines */
  }

  /* Center-aligned logo text */
  .header__logo {
    order: 2 !important;
    margin: 0 auto !important;
  }

  .logo-emoji {
    display: none !important; /* Mockup text-only style logo */
  }

  .logo-text,
  .logo-text span {
    color: #ffffff !important; /* Solid white text */
    font-size: 1.25rem !important;
  }

  /* Right-aligned notification bell */
  .header__icons {
    order: 3 !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Hide search, account, cart in top header (moved to bottom navbar) */
  .icon-button[data-search-open],
  .icon-button.cart-button,
  .icon-button[href*="account"],
  .icon-button[href*="login"] {
    display: none !important;
  }

  /* Show notification bell in top right */
  .icon-button.notification-button {
    display: flex !important;
    color: #ffffff !important;
  }

  /* 2. Hero Section - solid gold gradient block */
  .hero {
    background: linear-gradient(135deg, #FFC300, #E0AC00) !important;
    color: #ffffff !important;
    text-align: center;
    padding: 48px 16px !important;
    min-height: auto !important;
    overflow: hidden;
  }

  .hero__inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    text-align: center !important;
  }

  .hero__pill {
    display: none !important; /* Hide delivery badge on mobile */
  }

  .hero__headline {
    font-size: 1.85rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px;
  }

  .hero__headline .highlight {
    color: #ffffff !important;
  }

  .hero__headline .highlight::after {
    display: none !important;
  }

  .hero__subtext {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    margin: 0 auto 24px !important;
    line-height: 1.5 !important;
    max-width: 90% !important;
  }

  .hero__buttons {
    justify-content: center !important;
    margin-bottom: 0 !important;
  }

  /* Centered white CTA button */
  .hero__buttons .btn-primary {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    text-transform: uppercase !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  }

  /* Hide story button, trust strip, image illustration, blobs */
  .hero__buttons .btn-secondary,
  .hero__trust,
  .hero__visual,
  .hero .blob {
    display: none !important;
  }

  /* 3. Category cards and why cards responsiveness */
  .mobile-categories-bar {
    display: flex !important;
  }

  #categories {
    display: none !important; /* Hide giant category cards on mobile, use pills bar instead */
  }
}

/* 4. High-Fidelity 2-Column Product Grid for Mobile Phones */
@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .product-card {
    border-radius: var(--radius-md) !important;
  }

  .product-card__image {
    padding: 12px !important;
  }

  .product-card__image img {
    max-height: 120px !important;
  }

  .product-card__body {
    padding: 10px !important;
  }

  .product-card__category {
    font-size: 0.65rem !important;
  }

  .product-card__title {
    font-size: 0.85rem !important;
    margin: 4px 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.3em;
  }

  .product-card__weight {
    font-size: 0.72rem !important;
  }

  .product-card__price .current {
    font-size: 0.95rem !important;
  }

  .product-card__price .original {
    font-size: 0.75rem !important;
  }

  .product-card__actions .btn {
    padding: 8px 10px !important;
    font-size: 0.75rem !important;
    width: 100% !important;
  }
}



