/* ================================================================
   style.css  –  Asliceofartinyourlife
   Bootstrap 5.3 is the layout engine.
   This file contains ONLY what Bootstrap cannot do:
   brand tokens, custom components, animations, overrides.
================================================================ */

/* ----------------------------------------------------------------
   FONT  –  Freeride (self-hosted)
---------------------------------------------------------------- */
@font-face {
  font-family: 'Freeride';
  src: url('../fonts/Freeride.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------------
   GOOGLE FONT
---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300&display=swap');

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES  –  brand palette
---------------------------------------------------------------- */
:root {
  --cream:        #F5F0E8;
  --dark:         #1A1218;
  --pink:         #D63484;
  --pink-light:   #FF9BD2;
  --pink-muted:   rgba(214, 52, 132, .12);
  --purple:       #8B5CF6;
  --orange:       #F97316;
  --text:         #2D1F2B;
  --text-muted:   #7A5F70;
  --border-pink:  rgba(214, 52, 132, .18);
}

/* ----------------------------------------------------------------
   2. GLOBAL
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
  overflow-x: hidden;
  min-height: 100vh;
}

/* prevent image drag / right-click save */
img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

/* ----------------------------------------------------------------
   3. BRAND HEADINGS  –  Freeride font
---------------------------------------------------------------- */
header h1,
.section-header h2,
.page-title h2,
.hero h2,
.about-strip h2,
.artwork-info h3,
.print-card h3,
.lb-info h3,
.cart-header h3,
.order-info h3,
.footer-logo,
.popup-heading,
.cart-total {
  font-family: 'Freeride', 'Georgia', serif !important;
  font-weight: normal !important;
}

/* ----------------------------------------------------------------
   4. FIXED HEADER  –  glass bar
   Bootstrap used in HTML:
   d-flex align-items-center justify-content-between px-4 px-md-5 py-3
---------------------------------------------------------------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  background: rgba(245, 240, 232, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-pink);
}

header h1 {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: .02em;
  color: var(--dark);
  white-space: nowrap;
}

/* ----------------------------------------------------------------
   5. DESKTOP NAV
   Bootstrap: d-none d-lg-flex hides on mobile
---------------------------------------------------------------- */
.desktop-nav {
  display: flex;
  gap: 2px;
  align-items: center;
  flex: 1;
  justify-content: center;
  padding: 0 16px;
  flex-wrap: wrap;
}

.desktop-nav a {
  font-size: .68rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 100px;
  transition: all .2s;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav a:hover  { background: var(--pink-muted); color: var(--pink); }
.desktop-nav a.active { background: var(--dark); color: var(--cream); }

/* ----------------------------------------------------------------
   6. CART TOGGLE BUTTON
---------------------------------------------------------------- */
.cart-toggle {
  background: var(--dark);
  color: var(--cream);
  border: none;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background .2s;
}
.cart-count {
  background: var(--pink);
  color: #fff;
  border-radius: 100px;
  padding: 1px 7px;
  font-size: .7rem;
  font-weight: 700;
}

/* ----------------------------------------------------------------
   7. BURGER BUTTON  (d-lg-none in HTML keeps it mobile-only)
---------------------------------------------------------------- */
.burger-btn {
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: background .2s;
}
.burger-btn:hover { background: var(--pink-muted); }
.burger-btn span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
}

/* ----------------------------------------------------------------
   8. MOBILE FULLSCREEN NAV OVERLAY
---------------------------------------------------------------- */
.nav-overlay {
  position: fixed; inset: 0;
  background: #e09b6a;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.nav-overlay.open { transform: translateX(0); }

.nav-overlay-header {
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(245, 240, 232, .08);
  flex-shrink: 0;
}
.nav-overlay-brand {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 1.3rem;
  color: var(--cream);
}

.nav-close-btn {
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
}
.nav-close-btn::before,
.nav-close-btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
}
.nav-close-btn::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-close-btn::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* Bootstrap: d-flex flex-column padding gap used in HTML */
.nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
  gap: 4px;
  overflow-y: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 1px solid transparent;
  transition: all .2s;
}
.nav-link:hover  { background: rgba(245, 240, 232, .08); color: #cac1c6; border-color: rgba(214, 52, 132, .25); }
.nav-link.active { background: #f29654; color: var(--cream); border-color: #f38435; }
.nav-link-arrow  { opacity: .4; transition: opacity .2s; }
.nav-link:hover .nav-link-arrow,
.nav-link.active .nav-link-arrow { opacity: 1; }

.nav-footer {
  padding: 20px 28px 32px;
  border-top: 1px solid rgba(245, 240, 232, .08);
  flex-shrink: 0;
}
.nav-footer-label {
  font-size: .65rem;
  color: rgba(245, 240, 232, .3);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Bootstrap: d-flex gap-2 used for social row in HTML */
.nav-social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(245, 240, 232, .06);
  border: 1px solid rgba(245, 240, 232, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s;
}
.nav-social-btn:hover { background: rgba(214, 52, 132, .2); color: var(--pink-light); }

/* ----------------------------------------------------------------
   9. CART SIDEBAR
   Bootstrap: d-flex gap-2 used in cart footer HTML
---------------------------------------------------------------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26, 18, 24, .4);
  backdrop-filter: blur(4px);
  z-index: 1035;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 380px; max-width: 95vw;
  height: 100vh;
  background: var(--cream);
  background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
  z-index: 1036;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -20px 0 60px rgba(26, 18, 24, .15);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border-pink);
}
.cart-header h3 {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: var(--dark);
}
.cart-close {
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text);
  padding: 4px 8px;
  border-radius: 100px;
  transition: background .2s;
}
.cart-close:hover { background: var(--pink-muted); }

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--border-pink);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .2s;
}
.cart-item:hover { border-color: var(--dark); }
.cart-item-name  { font-family: 'Freeride', 'Georgia', serif; font-size: 1rem; color: var(--dark); }
.cart-item-price { font-size: .8rem; color: var(--dark); font-weight: 500; }
.cart-item-remove {
  background: transparent;
  border: none;
  font-size: .8rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 100px;
  transition: all .2s;
}
.cart-item-remove:hover { background: var(--pink-muted); color: var(--dark); }

.cart-footer {
  padding: 20px 28px 32px;
  border-top: 1px solid var(--border-pink);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 1.6rem;
  color: var(--dark);
}

/* ----------------------------------------------------------------
   10. SHARED BUTTON  –  animated corner-border effect
   Bootstrap: w-100 d-block text-center flex-fill used alongside .box
---------------------------------------------------------------- */
.box {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 15px 20px;
  text-align: center;
  background: transparent;
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'DM Sans', sans-serif;
  font-size: .76rem;
  letter-spacing: .12em;
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all .5s linear;
}
.box::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 4px; width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(100%);
}
.box::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(-100%);
}
.box:hover { box-shadow: 0 5px 15px rgba(0, 0, 0, .45); color: var(--dark); }
.box:hover::before { border-color: var(--dark); height: 100%; transform: translateX(0); transition: .3s transform linear, .3s height linear .3s; }
.box:hover::after  { border-color: var(--dark); height: 100%; transform: translateX(0); transition: .3s transform linear, .3s height linear .5s; }

.box-pink:hover { box-shadow: 0 5px 15px rgba(214, 52, 132, .4); }
.box-pink:hover::before,
.box-pink:hover::after { border-color: var(--dark); }

/* full-width form submit button — same animation */
.btn-submit {
  width: 100%;
  padding: 15px;
  background: transparent;
  color: var(--dark);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: all .5s linear;
}
.btn-submit::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 4px; width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(100%);
}
.btn-submit::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(-100%);
}
.btn-submit:hover { box-shadow: 0 5px 15px rgba(0, 0, 0, .45); }
.btn-submit:hover::before { border-color: var(--dark); height: 100%; transform: translateX(0); transition: .3s transform linear, .3s height linear .3s; }
.btn-submit:hover::after  { border-color: var(--dark); height: 100%; transform: translateX(0); transition: .3s transform linear, .3s height linear .5s; }

/* ----------------------------------------------------------------
   11. HERO SECTION  (index.html)
   Bootstrap: px-4 px-md-5 used in HTML
---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

/* animated blobs ------------------------------------------------ */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 { width: 475px; height: 525px; background: radial-gradient(circle, #F98FFA); top: -100px; right: -100px; opacity: .6; animation: float1 8s ease-in-out infinite; }
.blob-2 { width: 600px; height: 500px; background: radial-gradient(circle, #FA8E9E); bottom: 0; left: 10%; opacity: .6; animation: float2 10s ease-in-out infinite; }
.blob-3 { width: 600px; height: 650px; background: radial-gradient(circle, #FAD972); top: 30%; left: 40%; opacity: .35; animation: float1 12s ease-in-out infinite reverse; }
.blob-4 { width: 400px; height: 400px; background: radial-gradient(circle, #F5851D); top: -80px; left: -80px; opacity: .5; animation: float2 11s ease-in-out infinite; }

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, -40px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-20px, 30px) scale(.95); }
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-label {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid var(--pink);
  padding: 4px 12px;
  border-radius: 100px;
}
.hero h2 {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1;
  font-weight: normal;
  color: var(--dark);
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.1rem;
  color: #5A3D50;
  max-width: 420px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
}

/* ----------------------------------------------------------------
   12. SECTION HEADER  –  heading + "see all" button row
   Bootstrap: d-flex justify-content-between align-items-end mb-5
---------------------------------------------------------------- */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: normal;
  letter-spacing: .02em;
  color: var(--dark);
  line-height: 1.1;
}

/* ----------------------------------------------------------------
   13. ARTWORK CARDS  (gallery + featured)
   Bootstrap: row g-4 / col-12 col-md-6 col-lg-4 in HTML
---------------------------------------------------------------- */
.artwork-card {
  background: #EDEAE0;
  border-radius: 1px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.artwork-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(26, 18, 24, .12); }

.artwork-img {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.artwork-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* gradient backgrounds for featured cards (fallback when no image) */
.artwork-img-1 { background: linear-gradient(135deg, #FF9BD2, #D63484, #8B5CF6); }
.artwork-img-2 { background: linear-gradient(135deg, #F97316, #D63484, #FF9BD2); }
.artwork-img-3 { background: linear-gradient(135deg, #8B5CF6, #F97316, #D63484); }

.artwork-info { padding: 10px; }
.artwork-info h3 {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.artwork-info p { font-size: .8rem; color: var(--text-muted); font-weight: 300; }

/* ----------------------------------------------------------------
   14. PRINT CARDS  (prints.html)
   Bootstrap: row g-4 / col-12 col-md-6 col-lg-4 / h-100
              d-flex justify-content-between align-items-center in HTML
---------------------------------------------------------------- */
.print-card {
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 1px;
  padding: 24px;
  background: rgba(255, 255, 255, .5);
  transition: all .3s;
}
.print-card:hover { border-color: #000; box-shadow: 0 0 0 1px #000, 0 20px 40px rgba(214, 52, 132, .1); }

.print-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 1px;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
}
.print-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.print-card h3 {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.print-card p   { font-size: .8rem; color: var(--text-muted); }
.print-price    { font-size: 1.2rem; font-weight: normal; color: var(--pink); font-family: 'Freeride', 'Georgia', serif; }

/* ----------------------------------------------------------------
   15. PAGE TITLE HERO  (all inner pages)
---------------------------------------------------------------- */
.page-title {
  padding: 140px 40px 60px;
  position: relative;
  overflow: hidden;
}
.page-title-inner { position: relative; z-index: 2; }
.page-title h2 {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: normal;
  letter-spacing: .02em;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 12px;
}
.page-title p { font-size: 1rem; color: var(--text-muted); font-weight: 300; }

/* ----------------------------------------------------------------
   16. ABOUT STRIP  (about.html)
   Bootstrap: row g-5 align-items-center / col-12 col-md-6 in HTML
---------------------------------------------------------------- */
.about-strip {
  background: var(--dark);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(214, 52, 132, .4), transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.about-strip h2 {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: normal;
  color: var(--cream);
  line-height: 1.15;
}
.about-strip-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink-light);
  display: block;
  margin-bottom: 16px;
}
.about-strip-text p {
  font-size: .95rem;
  color: rgba(245, 240, 232, .7);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

/* ----------------------------------------------------------------
   17. ORDER / CUSTOM / CONTACT FORMS
   Bootstrap: row g-5 / col-12 col-md-6 / mb-3 form groups in HTML
---------------------------------------------------------------- */
.order-section { padding: 60px 40px; }

.order-info h3 {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 2rem;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 20px;
}
.order-info p { font-size: .95rem; color: #5A3D50; line-height: 1.8; font-weight: 300; }

.order-info ol {
  list-style: none;
  counter-reset: steps;
  margin-top: 16px;
  padding: 0;
}
.order-info ol li {
  counter-increment: steps;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: .95rem;
  color: #5A3D50;
}
.order-info ol li::before {
  content: counter(steps);
  width: 36px; height: 36px;
  background: var(--dark);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* brand form inputs — NOT using Bootstrap form-control */
form input,
form select,
form textarea {
  display: block;
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--border-pink) !important;
  border-radius: 12px !important;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  transition: all .2s;
  outline: none;
}
form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--pink) !important;
  box-shadow: 0 0 0 3px rgba(214, 52, 132, .1) !important;
  background: #fff !important;
}
form input::placeholder,
form textarea::placeholder { color: #B0909F; }

/* side decorative image on order / custom pages */
.order-side-image {
  position: absolute;
  right: 60px;
  top: 20px;
  width: 500px;
  max-width: 50vw;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

/* ----------------------------------------------------------------
   18. LIGHTBOX
---------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lb-overlay {
  position: absolute; inset: 0;
  background: rgba(26, 18, 24, .88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.lb-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  animation: lbIn .3s ease;
}
@keyframes lbIn {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.lb-img {
  max-width: 520px;
  width: 90vw;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
.lb-img img { width: 100%; display: block; }

.lb-close {
  position: absolute;
  top: 0; right: 0;
  width: 32px; height: 32px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.lb-info {
  background: #fff;
  padding: 20px;
  border-radius: 1px;
  width: 260px;
  max-width: 80vw;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
  font-family: 'DM Sans', sans-serif;
}
.lb-info h3 {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.lb-info p  { font-size: .85rem; line-height: 1.6; color: #5A3D50; }
.lb-add-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--dark);
  color: var(--cream);
  border: none;
  border-radius: 1px;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s;
}
.lb-add-btn:hover { background: var(--pink); }

@media (max-width: 700px) {
  .lb-content { flex-direction: column; align-items: stretch; width: 100vw; max-height: 100dvh; overflow-y: auto; gap: 0; }
  .lb-img     { width: 100%; max-width: 100%; border-radius: 0; }
  .lb-img img { max-height: 55dvh; object-fit: contain; background: #111; }
  .lb-close   { position: fixed; top: 12px; right: 12px; z-index: 1060; box-shadow: 0 2px 8px rgba(0, 0, 0, .35); }
  .lb-info    { width: 100%; max-width: 100%; border-radius: 0; box-shadow: none; padding: 20px 20px 36px; }
}

/* ----------------------------------------------------------------
   19. POPUP / NEWSLETTER
---------------------------------------------------------------- */
.popup-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26, 18, 24, .45);
  backdrop-filter: blur(6px);
  z-index: 1060;
  align-items: center;
  justify-content: center;
}
.popup {
  background: var(--cream);
  background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
  border-radius: 1px;
  padding: 52px 48px 44px;
  width: min(440px, 92vw);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 40px 80px rgba(26, 18, 24, .25);
  overflow: hidden;
}
.popup::before {
  content: ''; position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(214, 52, 132, .15), transparent 70%);
  bottom: -100px; right: -100px;
  border-radius: 50%; pointer-events: none;
}
.popup::after {
  content: ''; position: absolute;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(249, 115, 22, .12), transparent 70%);
  top: -60px; left: -60px;
  border-radius: 50%; pointer-events: none;
}
.popup-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: none;
  font-size: 1rem; color: #B0909F;
  cursor: pointer; padding: 4px 8px;
  border-radius: 100px; transition: all .2s;
}
.popup-close:hover { background: var(--pink-muted); color: var(--dark); }
.popup-label {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--pink); font-weight: 500;
  border: 1px solid var(--pink); padding: 3px 12px;
  border-radius: 100px; display: inline-block; width: fit-content;
  position: relative; z-index: 1;
}
.popup-heading {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 3rem; font-weight: normal; color: var(--dark);
  line-height: 1.05; position: relative; z-index: 1;
}
.popup-heading span { color: var(--pink); }
.popup-sub {
  font-size: .88rem; color: #7A5F70;
  font-weight: 300; line-height: 1.6;
  position: relative; z-index: 1;
}
.popup-input {
  display: block; width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(214, 52, 132, .25);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem; color: var(--dark);
  outline: none; transition: all .2s;
  position: relative; z-index: 1;
}
.popup-input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(214, 52, 132, .1); background: #fff; }
.popup-input::placeholder { color: #B0909F; }

/* same animated border as .box */
.popup-btn {
  width: 100%; padding: 14px 20px;
  background: transparent; color: var(--dark); border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 900;
  cursor: pointer; position: relative; overflow: hidden;
  transition: all .5s linear; z-index: 1;
}
.popup-btn::before { content: ''; position: absolute; left: 0; bottom: 0; height: 4px; width: 100%; border-bottom: 4px solid transparent; border-left: 4px solid transparent; box-sizing: border-box; transform: translateX(100%); }
.popup-btn::after  { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; border-top: 4px solid transparent; border-right: 4px solid transparent; box-sizing: border-box; transform: translateX(-100%); }
.popup-btn:hover { box-shadow: 0 5px 15px rgba(0, 0, 0, .4); }
.popup-btn:hover::before { border-color: var(--dark); height: 100%; transform: translateX(0); transition: .3s transform linear, .3s height linear .3s; }
.popup-btn:hover::after  { border-color: var(--dark); height: 100%; transform: translateX(0); transition: .3s transform linear, .3s height linear .5s; }

.popup-skip {
  font-size: .72rem; color: #B0909F; text-align: center;
  cursor: pointer; text-decoration: underline;
  background: transparent; border: none;
  font-family: 'DM Sans', sans-serif; position: relative; z-index: 1;
}
.popup-skip:hover { color: var(--dark); }
.popup-success-img { width: 100%; max-height: 80vh; object-fit: contain; display: block; margin: 40px auto; animation: fadeIn .5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }

/* ----------------------------------------------------------------
   20. FOOTER
   Bootstrap: d-flex flex-column flex-md-row justify-content-between
   align-items-center flex-wrap gap-3 used in HTML
---------------------------------------------------------------- */
footer { background: var(--dark); padding: 40px; }
footer p { font-size: .8rem; color: rgba(245, 240, 232, .5); }
.footer-logo {
  font-family: 'Freeride', 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--cream);
}
.footer-social .bi { font-size: 1.5rem; color: rgba(245, 240, 232, .7); transition: opacity .2s; }
.footer-social a:hover .bi { opacity: 1; color: #fff; }

/* ----------------------------------------------------------------
   21. STYLE PAGE
   Bootstrap: lead fw-light used in HTML
---------------------------------------------------------------- */
.style-section { padding: 60px 40px; max-width: 800px; }
.style-section p { font-size: 1rem; color: #5A3D50; line-height: 1.8; font-weight: 300; margin-bottom: 20px; }

/* ----------------------------------------------------------------
   22. RESPONSIVE  –  Bootstrap handles all grid collapsing.
   These rules adjust padding & layout-specific overrides.
---------------------------------------------------------------- */
@media (max-width: 900px) {
  header { padding: 16px 20px; }
  .hero  { padding: 100px 20px 60px; }
  .page-title { padding: 100px 20px 40px; }
  .about-strip { padding: 36px; }
  .order-section { padding: 40px 20px; }
  .style-section { padding: 40px 20px; }
  .order-side-image { display: none; }
}
@media (max-width: 600px) {
  .hero h2 { font-size: 3rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
/* ----------------------------------------------------------------
   CUSTOMER REVIEWS SECTION
---------------------------------------------------------------- */
.customer-reviews {
  background: rgba(255, 255, 255, 0.3);
}

.review-card {
  background: #fff;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(214, 52, 132, 0.15);
}

.review-image-container {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f0e8;
  position: relative;
}

.review-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.review-card:hover .review-image {
  transform: scale(1.05);
}

.review-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--orange);
  font-size: 1rem;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .review-card {
    margin-bottom: 20px;
  }
}
