@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Josefin+Sans:wght@100;200;300;400&display=swap');

:root {
  --navy: #001B2E;
  --teal: #006B8F;
  --teal-light: #4ABFDB;
  --teal-pale: #E0F4FA;
  --gold: #C8A84B;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray: #6C7A89;
  --dark: #0D1B2A;
  --pro-purple: #5B4A8A;
  --pro-purple-light: #F0EEF8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { max-width: 100%; }
html { scroll-behavior: smooth; }
body { font-family: 'Josefin Sans', Arial, sans-serif; font-weight: 300; font-size: 16px; color: var(--dark); background: var(--white); overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 3rem; background: rgba(0,27,46,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(74,191,219,0.15); }
.nav-logo { text-decoration: none; display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem; flex-shrink: 0; }
.nav-logo span { color: var(--teal-light); }
.nav-logo-img { height: 46px; width: auto; object-fit: contain; display: block; }
.nav-logo-tagline { font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; letter-spacing: 0.25em; color: var(--teal-light); text-transform: uppercase; white-space: nowrap; display: block; margin-top: 0.1rem; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--teal-light); }
.nav-cta { background: var(--teal) !important; color: var(--white) !important; padding: 0.5rem 1.5rem; border-radius: 50px; }
.nav-cta:hover { background: var(--teal-light) !important; color: var(--navy) !important; }

.hero { min-height: 100vh; background: linear-gradient(135deg, var(--navy) 0%, #003552 50%, #001B2E 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-video-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.hero-video-wrap video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; opacity: 0.4; }
.hero-video-wrap iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 177.78vw; min-height: 100%; transform: translate(-50%, -50%); opacity: 0.4; pointer-events: none; border: none; }
.hero-video-mobile { display: none; }
.hero-video-desktop { display: block; }
.video-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(0,27,46,0.85) 0%, rgba(0,53,82,0.6) 100%); }
.hero-content { text-align: center; z-index: 2; position: relative; padding: 2rem; animation: fadeUp 1s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-block; border: 1px solid rgba(74,191,219,0.4); color: var(--teal-light); font-size: 0.75rem; letter-spacing: 0.25em; padding: 0.5rem 1.8rem; margin-bottom: 2rem; text-transform: uppercase; border-radius: 50px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 8vw, 7rem); font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 1.5rem; }
.hero-title em { color: var(--teal-light); font-style: italic; }
.hero-sub { font-size: 0.85rem; letter-spacing: 0.3em; color: rgba(255,255,255,0.5); margin-bottom: 3rem; text-transform: uppercase; }
.hero-stats { display: flex; gap: 0; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.stat { text-align: center; padding: 0 2rem; border-right: 1px solid rgba(74,191,219,0.2); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--teal-light); font-weight: 300; line-height: 1; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-top: 0.4rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--teal); color: var(--white); padding: 0.9rem 2.5rem; text-decoration: none; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.3s; border: 1px solid var(--teal); border-radius: 50px; }
.btn-primary:hover { background: var(--teal-light); border-color: var(--teal-light); color: var(--navy); }
.btn-outline { background: transparent; color: var(--white); padding: 0.9rem 2.5rem; text-decoration: none; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.3); transition: all 0.3s; border-radius: 50px; }
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }

.trust-bar { background: var(--dark); padding: 2rem 3rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; border-bottom: 1px solid rgba(74,191,219,0.1); }
.trust-item { text-align: center; padding: 0.75rem; }
.trust-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.trust-title { font-size: 0.9rem; letter-spacing: 0.1em; color: var(--teal-light); text-transform: uppercase; margin-bottom: 0.4rem; font-weight: 400; }
.trust-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.algae-section { background: #000d1f; padding: 6rem 3rem; position: relative; overflow: hidden; max-width: 100vw; }
.algae-section::before { display: none; }

.section { padding: 6rem 3rem; }
.section-label { font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.2; color: var(--navy); margin-bottom: 1rem; }
.section-title em { color: var(--teal-light); font-style: italic; }
.section-desc { font-size: 1rem; color: var(--gray); line-height: 1.8; max-width: 600px; letter-spacing: 0.03em; }

.satellite-wrap { position: relative; width: 320px; height: 320px; display: flex; align-items: center; justify-content: center; }
.satellite-wrap img { width: 240px; height: 240px; object-fit: contain; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.satellite-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(74,191,219,0.15); }
.satellite-ring:nth-child(2) { inset: 20px; border-color: rgba(74,191,219,0.1); }

.ranges-section { background: var(--off-white); padding: 6rem 3rem; }
.ranges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 3rem auto 0; }
.range-card { background: var(--white); overflow: hidden; transition: transform 0.4s, box-shadow 0.4s; cursor: pointer; text-decoration: none; display: block; }
.range-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,107,143,0.12); }
.range-card-img-wrap { position: relative; overflow: hidden; height: 280px; }
.range-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.range-card:hover .range-card-img-wrap img { transform: scale(1.05); }
.range-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,27,46,0.5) 0%, transparent 60%); }
.range-card-body { padding: 2rem; }
.range-card-label { font-size: 0.72rem; letter-spacing: 0.35em; color: var(--teal); text-transform: uppercase; margin-bottom: 0.5rem; }
.range-card-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; color: #0a1628; margin-bottom: 0.75rem; line-height: 1.2; }
.range-card-desc { font-size: 0.95rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.range-card-link { font-size: 0.78rem; letter-spacing: 0.2em; color: var(--teal); text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; }
.range-card-link::after { content: '→'; transition: transform 0.3s; }
.range-card:hover .range-card-link::after { transform: translateX(6px); }

.products-section { padding: 5rem 3rem; background: var(--off-white); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 3rem auto 0; }
.product-card { background: var(--white); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,107,143,0.1); }
.product-card-img { width: 100%; height: 260px; object-fit: contain; background: #f9f9f9; padding: 1.5rem; display: block; }
.product-card-body { padding: 1.5rem; }
.product-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.3rem; font-weight: 500; }
.product-card-size { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.product-card-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }
.product-card-price { font-family: 'Cormorant Garamond', serif; font-size: 2.0rem; color: var(--teal); font-weight: 400; margin-bottom: 1rem; }
.product-card-price span { font-size: 0.6rem; color: var(--gray); font-family: 'Josefin Sans', sans-serif; }
.btn-buy { display: block; width: 100%; text-align: center; background: var(--navy); color: var(--white); padding: 0.85rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: background 0.3s; border: none; cursor: pointer; border-radius: 50px; }
.btn-buy:hover { background: var(--teal); }
.btn-buy-pro { background: var(--pro-purple); }
.btn-buy-pro:hover { background: #7B6BAE; }

.ingredients { padding: 5rem 3rem; background: var(--white); }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 3rem auto 0; }
.ingredient-card { border: 1px solid rgba(0,107,143,0.1); padding: 2rem; transition: border-color 0.3s, background 0.3s; }
.ingredient-card:hover { border-color: var(--teal-light); background: var(--teal-pale); }
.ingredient-badge { font-size: 0.62rem; letter-spacing: 0.2em; color: var(--teal); text-transform: uppercase; border: 1px solid var(--teal); display: inline-block; padding: 0.2rem 0.6rem; margin-bottom: 0.75rem; }
.ingredient-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 0.5rem; }
.ingredient-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

.clinical { padding: 4rem 3rem; background: var(--navy); }
.clinical-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1100px; margin: 3rem auto 0; }
.clinical-item { text-align: center; padding: 1.5rem; border: 1px solid rgba(74,191,219,0.15); }
.clinical-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--teal-light); line-height: 1; }
.clinical-label { font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.55); text-transform: uppercase; margin-top: 0.5rem; }

.pharmacy-section { background: var(--teal-pale); padding: 6rem 3rem; text-align: center; }
.pharmacy-count { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--teal); font-weight: 300; line-height: 1; }
.pharmacy-label { font-size: 0.65rem; letter-spacing: 0.3em; color: var(--teal); text-transform: uppercase; margin-bottom: 1rem; }

footer { background: var(--navy); padding: 4rem 3rem 2rem; border-top: 1px solid rgba(74,191,219,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand-name { font-family: 'Josefin Sans', sans-serif; font-weight: 200; letter-spacing: 0.4em; font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; }
.footer-tagline { font-size: 0.72rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-heading { font-size: 0.72rem; letter-spacing: 0.3em; color: var(--teal-light); text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 400; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 1rem; color: rgba(255,255,255,0.6); text-decoration: none; letter-spacing: 0.1em; transition: color 0.3s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(74,191,219,0.1); padding-top: 2rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.7rem; transition: all 0.3s; }
.footer-social a:hover { border-color: var(--teal-light); color: var(--teal-light); }

.product-hero { padding: 8rem 3rem 4rem; background: linear-gradient(135deg, var(--navy) 0%, #003552 100%); text-align: center; }
.product-hero-label { font-size: 0.6rem; letter-spacing: 0.4em; color: var(--teal-light); text-transform: uppercase; margin-bottom: 1rem; }
.product-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--white); font-weight: 300; margin-bottom: 1rem; }
.product-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto 2rem; line-height: 1.8; }
.product-hero-img { width: 100%; max-height: 480px; object-fit: cover; display: block; margin-top: 3rem; }

.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--teal-light); text-decoration: none; text-transform: uppercase; margin: 2rem 3rem; transition: gap 0.3s; }
.back-link:hover { gap: 1rem; }

.cosmoprof-banner { background: linear-gradient(135deg, var(--pro-purple) 0%, #3D2E6B 100%); padding: 2.5rem; text-align: center; }
.cosmoprof-text { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); font-weight: 300; }
.cosmoprof-sub { font-size: 0.6rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-top: 0.5rem; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .vs-grid { grid-template-columns: 1fr !important; }
  .nav-logo-img { height: 26px; }
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
  .nav-logo-img { height: 28px; }
  .nav-links { display: none; }
  .trust-bar { grid-template-columns: repeat(2,1fr); }
  .ranges-grid, .products-grid, .footer-grid { grid-template-columns: 1fr; }
  .ingredients-grid, .clinical-grid { grid-template-columns: repeat(2,1fr); }
  .section, .algae-section { background: #000d1f; padding: 6rem 3rem; position: relative; overflow: hidden; max-width: 100vw; }
.algae-section::before { display: none; }
  .hero-stats { gap: 1rem; }
  .stat { padding: 0 1rem; }
  [style*="grid-template-columns:1fr 340px"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="gap:5rem"] { gap: 2rem !important; }
  .satellite-wrap { width: 100% !important; height: 260px !important; }
  .pro-eye-video-wrap { width: 100% !important; aspect-ratio: 16/9 !important; }
}




@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat { border-right: none; border-bottom: 1px solid rgba(74,191,219,0.2); padding-bottom: 1rem; }
  .stat:last-child { border-bottom: none; }
  [style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
  .trust-bar { grid-template-columns: 1fr; }
}

/* Font family fix for Greek/English mixed content */
.section-desc,
.product-card-desc,
.range-card-desc,
.ingredient-desc,
.footer-desc {
  font-family: 'Josefin Sans', Arial, sans-serif;
}

/* Hamburger menu */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { position: fixed; top: 0; right: -280px; width: 280px; height: 100vh; background: rgba(0,27,46,0.98); backdrop-filter: blur(12px); z-index: 2000; padding: 5rem 2rem 2rem; transition: right 0.3s ease; border-left: 1px solid rgba(74,191,219,0.15); }
.mobile-menu.open { right: 0; }
.mobile-menu-close { position: absolute; top: 1.2rem; right: 1.2rem; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.2rem; cursor: pointer; }
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu-links li { border-bottom: 1px solid rgba(74,191,219,0.08); }
.mobile-menu-links a { display: block; padding: 1.1rem 0; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s; }
.mobile-menu-links a:hover { color: var(--teal-light); }
.mobile-menu-cta { color: var(--teal-light) !important; font-weight: 400; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-overlay.open { opacity: 1; pointer-events: all; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
}

/* ===== TIME REVERSAL PAGE ===== */

/* Hero variant — slightly different gradient tone for TR */
.tr-hero { background: linear-gradient(135deg, #001B2E 0%, #003552 60%, #004A6B 100%); }

/* LV / Jo Malone banner */
.lv-banner { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); padding: 2.5rem 3rem; text-align: center; border-top: 1px solid rgba(200,168,75,0.3); border-bottom: 1px solid rgba(200,168,75,0.3); }
.lv-text { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #C8A84B; font-weight: 300; letter-spacing: 0.1em; }
.lv-sub { font-size: 0.6rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-top: 0.5rem; }

/* Hero video wrapper — TR page */
.tr-video-wrap { position: relative; width: 100%; max-height: 480px; aspect-ratio: 16/9; margin-top: 3rem; overflow: hidden; }
.tr-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Bundle card — spans 2 columns on desktop, 1 on mobile */
.bundle-span { grid-column: span 2; }
.bundle-inner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2rem; align-items: center; }
.bundle-icon-wrap { text-align: center; font-size: 5rem; }

@media (max-width: 900px) {
  .bundle-span { grid-column: span 1; }
  .bundle-inner-grid { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
  .bundle-icon-wrap { display: none; }
  .lv-banner { padding: 1.75rem 1.5rem; }
  .lv-text { font-size: 1rem; }
  .tr-video-wrap { max-height: none; }
}

/* ===== GDPR COOKIE CONSENT BANNER ===== */
#wc-cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; background: linear-gradient(135deg, #001B2E 0%, #00304d 100%); border-top: 1px solid rgba(74,191,219,0.35); box-shadow: 0 -8px 30px rgba(0,0,0,0.35); font-family: 'Josefin Sans', Arial, sans-serif; }
.wc-cc-inner { max-width: 1100px; margin: 0 auto; padding: 1.5rem 2rem; }
.wc-cc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: #ffffff; margin-bottom: 0.4rem; }
.wc-cc-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0 0 1rem; }
.wc-cc-desc a { color: #4ABFDB; text-decoration: underline; }
.wc-cc-prefs { border: 1px solid rgba(74,191,219,0.2); background: rgba(74,191,219,0.05); padding: 1rem 1.25rem; margin-bottom: 1rem; }
.wc-cc-opt { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.6; padding: 0.4rem 0; cursor: pointer; }
.wc-cc-opt input { margin-top: 0.2rem; accent-color: #4ABFDB; width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.wc-cc-opt strong { color: #ffffff; font-weight: 400; }
.wc-cc-opt-locked { opacity: 0.6; cursor: default; }
.wc-cc-opt-locked input { cursor: default; }
.wc-cc-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.wc-cc-btn { font-family: 'Josefin Sans', Arial, sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.8rem 1.6rem; cursor: pointer; transition: all 0.3s; border: 1px solid rgba(74,191,219,0.6); background: transparent; color: #ffffff; }
.wc-cc-accept { background: #006B8F; border-color: #006B8F; }
.wc-cc-accept:hover { background: #4ABFDB; border-color: #4ABFDB; color: #001B2E; }
.wc-cc-reject:hover, .wc-cc-settings:hover, .wc-cc-save:hover { background: rgba(74,191,219,0.15); border-color: #4ABFDB; }
.wc-cc-save { background: #006B8F; border-color: #006B8F; }

@media (max-width: 600px) {
  .wc-cc-inner { padding: 1.25rem 1.25rem; }
  .wc-cc-title { font-size: 1.1rem; }
  .wc-cc-desc { font-size: 0.78rem; }
  .wc-cc-actions { flex-direction: column; }
  .wc-cc-btn { width: 100%; padding: 0.9rem 1rem; }
}
