/* ============================================================
   Oudaden Art — cinematic scroll-scrub hero + dive-in sections
   ============================================================ */
.cine-hero { position: relative; height: 600vh; background: #000; }
.cine-stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.cine-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.cine-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,0) 40%, rgba(0,0,0,.65));
  box-shadow: inset 0 0 220px rgba(0,0,0,.6);
}

.cine-loader {
  position: absolute; inset: 0; z-index: 5; background: #000; color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.cl-brand { font-family: "Fraunces", Georgia, serif; font-size: 1.6rem; }
.cine-bar { width: 200px; height: 4px; border-radius: 99px; background: rgba(255,255,255,.15); overflow: hidden; }
.cine-bar > span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, #F0612F, #EA3D7C); transition: width .2s; }
.cl-text { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6); }

.cine-text {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; padding: 0 24px; color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.cine-mid { opacity: 0; }
.cine-eyebrow {
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: .8rem; letter-spacing: .34em;
  text-transform: uppercase; color: #FFC22E; margin: 0 0 18px; text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.cine-text h1 { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.05; margin: 0; text-shadow: 0 2px 30px rgba(0,0,0,.45); }
.cine-text h2 { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.1; margin: 0; text-shadow: 0 2px 30px rgba(0,0,0,.45); }
.cine-text em, .cine-glass em { font-style: italic; color: #FFC22E; }
.cine-sub { max-width: 34em; margin: 24px auto 0; font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.85); text-shadow: 0 2px 30px rgba(0,0,0,.45); }

.cine-cta { position: absolute; inset: 0; z-index: 4; opacity: 0; padding: 0 24px; display: flex; align-items: center; justify-content: center; }
.cine-glass {
  width: 100%; max-width: 640px; text-align: center; padding: 44px 40px; border-radius: 32px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.cine-glass h2 { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; margin: 0; }
.cine-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.cine-btn { display: inline-flex; align-items: center; justify-content: center; height: 56px; padding: 0 32px; border-radius: 999px; font-family: "Manrope", sans-serif; font-weight: 700; font-size: 1rem; text-decoration: none; transition: transform .2s ease, filter .2s ease; }
.cine-btn:hover { transform: translateY(-3px); }
.cine-btn-primary { background: linear-gradient(135deg, #F0612F, #EA3D7C); color: #fff; box-shadow: 0 14px 34px rgba(234,61,124,.4); }
.cine-btn-glass { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); color: #fff; }
.cine-btn-glass:hover { background: rgba(255,255,255,.18); }

.cine-hint { position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.7); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cine-hint > span:first-child { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; }
.cine-mouse { display: flex; align-items: flex-start; justify-content: center; width: 24px; height: 36px; border: 2px solid rgba(255,255,255,.4); border-radius: 99px; padding: 5px 0; }
.cine-mouse i { display: block; width: 4px; height: 8px; border-radius: 99px; background: rgba(255,255,255,.8); animation: cine-scroll 1.6s ease-in-out infinite; }
@keyframes cine-scroll { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* Dive-in: non-sticky sections rise as they enter (Chrome/Edge; graceful fallback) */
@keyframes dive-in { from { opacity: .3; transform: translateY(90px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .dive-in { animation: dive-in linear both; animation-timeline: view(); animation-range: entry 0% entry 80%; }
  }
}

/* WooCommerce cart button + count badge in the navbar */
.nav-cart { position: relative; gap: 8px; }
.cart-count {
  display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 99px; background: linear-gradient(135deg, #F0612F, #EA3D7C); color: #fff;
  font-size: .72rem; font-weight: 800; line-height: 1;
}

@media (max-width: 760px) {
  .cine-glass { padding: 32px 22px; }
  .cine-buttons { flex-direction: column; }
  .cine-btn { width: 100%; }
}

/* ============================================================
   WooCommerce — pages (cart / checkout / account) + shop + product
   ============================================================ */
.page-main { padding: 120px 0 80px; min-height: 62vh; background: #FBF4E6; }
.page-main .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.page-title { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); color: #182A4E; margin: 0 0 28px; }
.page-content { color: #2A211B; line-height: 1.6; }
.page-content a { color: #D6481A; }

/* Brand buttons everywhere in WooCommerce */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce .button,
.woocommerce #respond input#submit, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-page .button, .wc-block-components-button {
  background: linear-gradient(135deg, #F0612F, #EA3D7C) !important;
  color: #fff !important; border: 0 !important; border-radius: 999px !important;
  font-family: "Manrope", sans-serif !important; font-weight: 700 !important;
  padding: .72em 1.6em !important; box-shadow: 0 10px 24px rgba(234,61,124,.28);
  transition: transform .2s ease, filter .2s ease; text-shadow: none !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce .button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.woocommerce .star-rating span, .star-rating::before { color: #FFC22E; }

/* Shop archive cards */
.woocommerce ul.products li.product { background: #fff; border: 1px solid rgba(24,42,78,.10); border-radius: 18px; padding: 14px; box-shadow: 0 2px 10px rgba(24,42,78,.05); transition: transform .25s ease, box-shadow .25s ease; }
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(24,42,78,.12); }
.woocommerce ul.products li.product a img { border-radius: 12px; margin-bottom: 12px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: "Fraunces", Georgia, serif; color: #182A4E; font-size: 1.1rem; padding: 0 6px; }
.woocommerce ul.products li.product .price { color: #182A4E; font-weight: 700; padding: 0 6px; }

/* Single product */
.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.woocommerce div.product div.images img { border-radius: 20px; box-shadow: 0 14px 40px rgba(24,42,78,.12); }
.woocommerce div.product .product_title { font-family: "Fraunces", Georgia, serif; font-weight: 600; color: #182A4E; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-top: 0; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: #182A4E; font-size: 1.7rem; font-weight: 700; }
.woocommerce div.product .woocommerce-product-details__short-description { color: #6E7793; }
.woocommerce div.product .quantity .qty { border: 1px solid rgba(24,42,78,.18); border-radius: 10px; padding: .55em; }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom-color: #F0612F; }
@media (max-width: 860px) { .woocommerce div.product { grid-template-columns: 1fr; gap: 24px; } }

/* Cart + checkout */
.woocommerce table.shop_table { border-radius: 14px; overflow: hidden; border: 1px solid rgba(24,42,78,.10); }
.woocommerce .cart_totals h2, .woocommerce-checkout h3 { font-family: "Fraunces", Georgia, serif; color: #182A4E; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout #order_review { background: #fff; border: 1px solid rgba(24,42,78,.10); border-radius: 16px; padding: 20px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top-color: #F0612F; background: #FFFBF3; }
