/** Shopify CDN: Minification failed

Line 838:0 All "@import" rules must come first

**/
/* Force Rhode font everywhere */
body, p, a, h1, h2, h3, h4, h5, h6, button, input {
  font-family: 'Rhode', sans-serif !important;
}

/* Example color test */
body {
  background: #fdf6f6 !important;  /* light pink test */
  color: #222 !important;          /* dark text */
}
/* -------------------
   Global Reset + Base
------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Cabin", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------------------
   Container
------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* -------------------
   Typography
------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #333;
}

/* -------------------
   Buttons
------------------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #333;
  border-color: #333;
}

.btn--light {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}

.btn--light:hover {
  background: #f7f7f7;
}

/* -------------------
   Header
------------------- */
.site-header {
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  padding: 1rem 0;
  background: #fff;
}

.site-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header__logo img {
  max-height: 40px;
}

.site-header__nav ul {
  display: flex;
  gap: 2rem;
}

.site-header__nav a {
  font-weight: 500;
  transition: color 0.3s;
}

.site-header__nav a:hover {
  color: #666;
}

.site-header__cart {
  font-weight: 600;
}

/* -------------------
   Footer
------------------- */
.site-footer {
  background: #111;
  color: #fff;
  padding: 2rem 0;
  margin-top: 3rem;
}

.site-footer__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.site-footer a {
  color: #fff;
  font-size: 0.9rem;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__social {
  display: flex;
  gap: 1rem;
}

/* -------------------
   Sections
------------------- */

/* Image Banner */
.image-banner {
  position: relative;
  text-align: center;
  padding: 4rem 1rem;
  background: #f7f7f7;
}

.image-banner__heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.image-banner__text {
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Brand Story */
.brand-story {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}

.brand-story__text {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1rem;
  color: #444;
}

/* Shop by Category */
.shop-category {
  padding: 4rem 1rem;
}

.shop-category__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.shop-category__label {
  margin-top: 0.8rem;
  font-weight: 500;
}

/* Newsletter */
.newsletter {
  background: #f7f7f7;
  padding: 3rem 1rem;
  text-align: center;
}

.newsletter input[type="email"] {
  padding: 0.8rem;
  width: 280px;
  max-width: 90%;
  border: 1px solid #ccc;
  margin-right: 0.5rem;
}

.newsletter button {
  padding: 0.8rem 1.5rem;
}

/* Bundle Callout */
.bundle-callout {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}

.bundle-callout h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.bundle-callout p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* -------------------
   Utilities
------------------- */
.text-center {
  text-align: center;
}

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
/* Header Styling */
.site-header {
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  padding: 1rem 0;
  background: #fff;
}

.site-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header__logo img {
  max-height: 40px;
}

.site-header__nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav a {
  text-decoration: none;
  font-weight: 500;
  color: #111;
  transition: color 0.3s;
}

.site-header__nav a:hover {
  color: #666;
}

.site-header__cart a {
  font-weight: 600;
  text-decoration: none;
  color: #111;
}
body {
  font-family: 'Inter', 'Cabin', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.site-logo {
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: #111;
}
.site-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.site-nav a:hover {
  color: #000;
}

/* MAIN CONTENT */
main {
  padding: 2rem;
}

/* FOOTER */
.site-footer {
  background: #f9f9f9;
  padding: 2rem;
  text-align: center;
}
.newsletter input[type="email"] {
  padding: 0.6rem;
  margin-right: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.newsletter button {
  padding: 0.6rem 1.2rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.newsletter button:hover {
  background: #333;
}
.social-icons a {
  margin: 0 10px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
.social-icons a:hover {
  color: #555;
}
/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.site-logo img {
  max-height: 50px;
}
.site-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.site-nav a:hover {
  color: #000;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.site-header__logo img {
  max-height: 50px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.site-header__extras {
  display: flex;
  align-items: center;
  gap: 15px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  padding: 6px 10px;
  border: 1px solid #ccc;
}

.newsletter-form button {
  padding: 6px 12px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

.social-icons a {
  margin-left: 8px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
}

.cart-icon {
  position: relative;
  font-size: 20px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}
/* Footer */
.site-footer {
  padding: 2rem;
  background: #fafafa;
  border-top: 1px solid #eee;
  text-align: center;
}

.footer-newsletter {
  margin-bottom: 1.5rem;
}

.footer-newsletter input {
  padding: 8px 12px;
  border: 1px solid #ccc;
}

.footer-newsletter button {
  padding: 8px 14px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

.footer-socials {
  margin: 1rem 0;
}

.footer-socials a {
  display: inline-block;
  margin: 0 8px;
  color: #333;
}

.footer-socials svg {
  width: 24px;
  height: 24px;
  transition: fill 0.3s;
}

.footer-socials a:hover svg {
  fill: #000;
}
/* ===============================
   Base Reset
================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Cabin', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

/* ===============================
   Header & Navigation
================================= */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #000;
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #000;
}

.cart-icon {
  width: 24px;
  height: 24px;
  fill: #333;
  transition: fill 0.3s ease;
}

.cart-icon:hover {
  fill: #000;
}

/* ===============================
   Newsletter Signup
================================= */
.newsletter {
  text-align: center;
  padding: 2rem;
  background: #f9f9f9;
}

.newsletter h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.newsletter input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 250px;
}

.newsletter button {
  padding: 0.75rem 1.5rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter button:hover {
  background: #444;
}

/* ===============================
   Social Icons
================================= */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a svg {
  width: 24px;
  height: 24px;
  fill: #555;
  transition: fill 0.3s ease;
}

.social-icons a:hover svg {
  fill: #000;
}

/* ===============================
   Responsive
================================= */
@media (max-width: 768px) {
  .site-nav {
    display: none; /* Replace with dropdown later */
  }
  
  .newsletter form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter input[type="email"] {
    width: 100%;
  }
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.site-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.site-logo img {
  max-height: 40px;
}

.site-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: 2rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

.site-nav a:hover {
  color: #000;
}

.site-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.site-icons svg {
  stroke: #333;
  transition: stroke 0.3s ease;
}

.site-icons svg:hover {
  stroke: #000;
}

.cart-count {
  background: #000;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 50%;
  padding: 0 6px;
  margin-left: 4px;
}
/* Header Layout */
.site-header {
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  max-height: 40px;
}

/* Desktop Nav */
.desktop-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.desktop-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.desktop-nav a:hover {
  color: #000;
}

/* Icons */
.site-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-count {
  background: #000;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 50%;
  padding: 0 6px;
  margin-left: 4px;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 1rem;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav.open {
    display: block;
  }
}
/* ==============================
   Rhode-Inspired Base Styles
   ============================== */

/* Load Inter font (Rhode’s font) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html, body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a; /* Rhode’s clean dark gray */
  background: #ffffff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #111111;
}

/* Links */
a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #555;
}

/* ==============================
   Layout / Grid
   ============================== */
.section {
  padding: 4rem 1.5rem;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ==============================
   Header / Navigation
   ============================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
}
.header .logo img {
  width: 120px;
  height: auto;
}
.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
}
.cart-icon svg, .hamburger svg {
  width: 24px;
  height: 24px;
  fill: #111;
}

/* ==============================
   Announcement Bar
   ============================== */
.announcement-bar {
  background: #f5f5f5;
  color: #111;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ==============================
   Newsletter Modal
   ============================== */
.newsletter {
  background: #fafafa;
  padding: 2rem;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
}
.newsletter h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.newsletter input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 60%;
  max-width: 320px;
}
.newsletter button {
  padding: 0.75rem 1.25rem;
  background: #111;
  color: #fff;
  border: none;
  margin-left: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}
.newsletter button:hover {
  background: #333;
}

/* ==============================
   Social Icons
   ============================== */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-icons svg {
  width: 20px;
  height: 20px;
  fill: #111;
  transition: fill 0.2s;
}
.social-icons svg:hover {
  fill: #555;
}

/* ==============================
   Brand Story
   ============================== */
.brand-story {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}
.brand-story h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ==============================
   Product Grid & Cards
   ============================== */
.product-card {
  text-align: center;
}
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.product-card h3 {
  margin-top: 0.75rem;
  font-size: 1rem;
}
.product-card .price {
  color: #555;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ==============================
   Bundle Callout
   ============================== */
.bundle-callout {
  background: #f8f8f8;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 2rem 0;
}
.bundle-callout h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ==============================
   Forms
   ============================== */
input, select, textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}
button, .btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
}

/* ==============================
   Footer
   ============================== */
.footer {
  background: #fafafa;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}
.footer a {
  color: #111;
}
/* === GLOBAL TYPOGRAPHY === */
body {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #111 !important;
  background: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  color: #000 !important;
  margin-bottom: 0.75rem !important;
}

p {
  margin-bottom: 1rem !important;
  color: #333 !important;
}

/* === LINKS === */
a {
  color: #000 !important;
  text-decoration: none !important;
}
a:hover {
  text-decoration: underline !important;
}

/* === BUTTONS === */
button, .btn, .shopify-payment-button__button, input[type="submit"] {
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 4px !important;
  transition: background 0.3s ease !important;
}

button:hover, .btn:hover, .shopify-payment-button__button:hover {
  background: #333 !important;
}

/* === LAYOUT / CONTAINERS === */
.section {
  padding: 60px 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* === IMAGE GRIDS === */
.image-grid,
.collection-grid,
.shop-by-category {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 24px !important;
}

.image-grid img,
.collection-grid img,
.shop-by-category img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  display: block !important;
}

/* Force square option */
.square-image img {
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
}
/* === FORCE STYLES TO APPLY === */

/* Global text + font */
body {
  font-family: 'Inter', sans-serif !important;
  color: #111 !important;
  background: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  color: #111 !important;
  margin-bottom: 0.75rem !important;
}

/* Links */
a {
  color: #000 !important;
  text-decoration: none !important;
}
a:hover {
  text-decoration: underline !important;
}

/* Buttons */
button, .btn, input[type="submit"] {
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  cursor: pointer !important;
}
button:hover, .btn:hover {
  background: #333 !important;
}

/* Layout containers */
.section {
  padding: 60px 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}
/* ================================
   HERO BANNER
   ================================ */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fafafa; /* RhodeSkin light neutral background */
}

.hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(92%);
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.hero__content h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* Rhode uses clean sans */
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #111;
}

.hero__content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #333;
}

.hero__content .btn {
  background: #111;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hero__content .btn:hover {
  background: #333;
}

/* ================================
   SHOP BY CATEGORY
   ================================ */
.shop-by-category {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.shop-by-category h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: #111;
  letter-spacing: -0.02em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-item h3 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 4px;
  color: #111;
}

.category-item:hover img {
  transform: scale(1.05);
}

/* ================================
   BRAND STORY SECTION
   ================================ */
.brand-story {
  background: #fafafa; /* soft neutral */
  padding: 100px 20px;
  text-align: center;
}

.brand-story__inner {
  max-width: 850px;
  margin: 0 auto;
}

.brand-story h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.brand-story p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}

.brand-story img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 2rem;
}

/* ================================
   NEWSLETTER SIGNUP
   ================================ */
.newsletter {
  background: #fff;
  padding: 80px 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.newsletter h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.newsletter p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 280px;
  outline: none;
  transition: border 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #111;
}

.newsletter-form button {
  background: #111;
  color: #fff;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #333;
}

/* ================================
   BUNDLE CALLOUT SECTION
   ================================ */
.bundle-callout {
  background: #f8f8f8; /* soft neutral backdrop */
  padding: 80px 20px;
  text-align: center;
}

.bundle-callout__inner {
  max-width: 900px;
  margin: 0 auto;
}

.bundle-callout h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.bundle-callout p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.bundle-callout .bundle-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.bundle-callout .bundle-btn:hover {
  background: #333;
}

/* ================================
   TRENDING PICKS SECTION
   ================================ */
.trending-picks {
  padding: 100px 20px;
  background: #fff;
}

.trending-picks h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: #111;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.trending-item {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trending-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.trending-item img {
  width: 100%;
  height: auto;
  display: block;
}

.trending-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 15px;
  color: #111;
}

.trending-item p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 15px 20px;
}
body, html {
  font-family: 'Rhode', 'Helvetica Neue', Arial, sans-serif !important;
  background-color: #ffffff !important;
  color: #111111 !important;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rhode', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #111111;
}

a {
  color: #111111;
  text-decoration: none;
}

.button {
  background-color: #111111;
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover {
  background-color: #444444;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-text {
  text-align: center;
  font-size: 24px;
  max-width: 700px;
  margin: 40px auto;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 40px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo a {
  font-family: 'Rhode', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

.site-nav a:hover {
  opacity: 0.6;
}

.site-cart svg {
  stroke: #111;
}
.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 40px 20px;
  text-align: center;
}

.footer-newsletter h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-newsletter input {
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  width: 250px;
}

.footer-newsletter button {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social svg {
  stroke: #111;
}
/* === Rhode-Style Product Grid === */
.product-card {
  text-align: center;
  margin-bottom: 50px;
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
  transition: opacity 0.3s ease;
}

.product-card img:hover {
  opacity: 0.85;
}

.product-info h3 {
  font-family: 'Rhode', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #111;
  margin: 5px 0;
}

.product-info p {
  font-size: 14px;
  color: #444;
  margin: 0;
}

/* Grid Layout */
.collection-grid,
.index-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}