.elementor-36 .elementor-element.elementor-element-0f5562c{--display:flex;}.elementor-36 .elementor-element.elementor-element-d99431c{--cols:4;}.elementor-36 .elementor-element.elementor-element-d99431c .etheme-product-grid-button .button-text:last-child{margin-left:7px;}.elementor-36 .elementor-element.elementor-element-d99431c .etheme-product-grid-button .button-text:first-child{margin-right:7px;}.elementor-36 .elementor-element.elementor-element-d99431c .etheme-product-grid-categories{font-size:15px;}.elementor-36 .elementor-element.elementor-element-d99431c .etheme-product-grid-title{font-size:14px;}@media(max-width:1024px){.elementor-36 .elementor-element.elementor-element-d99431c{--cols:2;}}@media(max-width:767px){.elementor-36 .elementor-element.elementor-element-d99431c{--cols:2;}}/* Start custom CSS for html, class: .elementor-element-b0691bc *//* ==========================================================================
   Global Tokens & Scoped Hero Styles (Namespace: tc-)
   ========================================================================== */

:root {
  --tc-cream: #faf4ee;
  --tc-cream-deep: #f1e6db;
  --tc-paper: #fffaf5;
  --tc-ink: #111111;
  --tc-ink-soft: #2a2422;
  --tc-slate: #6a5f59;
  --tc-line: #e4d5c8;
  --tc-coral: #e86b5c;
  --tc-coral-soft: #f08070;
  --tc-gold: #c4a265;
  --tc-gold-soft: #e8d5a8;

  --tc-font-display: "Cormorant Garamond", "Times New Roman", serif;
  --tc-font-script: "Great Vibes", cursive;
  --tc-font-sans: "Outfit", sans-serif;
}

/* Hero Section Container */
.tc-hero {
  position: relative;
  min-height: min(86vh, 780px);
  background-color: var(--tc-ink);
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Slides & Ken Burns Zoom Effect */
.tc-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tc-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.tc-hero-slide.active {
  opacity: 1;
}

.tc-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  transform: scale(1.04);
  animation: tc-ken-burns 20s ease-in-out infinite alternate;
}

@keyframes tc-ken-burns {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

/* Gradient Overlay */
.tc-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(20, 14, 10, 0.15) 0%,
    rgba(20, 14, 10, 0.08) 40%,
    rgba(20, 14, 10, 0.55) 100%
  );
  pointer-events: none;
}

/* Copy & Typography */
.tc-hero-copy {
  position: relative;
  z-index: 3;
  min-height: min(86vh, 780px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px 78px;
}

.tc-hero-kicker {
  font-family: var(--tc-font-sans);
  letter-spacing: 0.42em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--tc-gold-soft);
  margin-bottom: 6px;
}

.tc-hero-copy h1 {
  font-family: var(--tc-font-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: #f7efe6;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  margin: 0;
}

.tc-hero-copy h1 em {
  font-family: var(--tc-font-script);
  font-style: normal;
  display: block;
  font-size: 0.62em;
  color: var(--tc-coral-soft);
  margin-bottom: -6px;
  text-shadow: none;
}

.tc-hero-shop-now {
  margin-top: 22px;
  font-family: var(--tc-font-sans);
  letter-spacing: 0.32em;
  font-size: 13px;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 4px;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.tc-hero-shop-now:hover {
  color: var(--tc-gold);
  border-color: var(--tc-gold);
}

/* Dots Navigation */
.tc-hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.tc-hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

.tc-hero-dot.on {
  background-color: #ffffff;
  opacity: 1;
}

/* Ticker Strip */
.tc-ticker {
  background-color: var(--tc-ink);
  color: var(--tc-gold-soft);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-ticker-track {
  display: flex;
  width: max-content;
  animation: tc-ticker-loop 26s linear infinite;
  padding: 12px 0;
  font-family: var(--tc-font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tc-ticker-track span {
  padding: 0 24px;
  white-space: nowrap;
}

.tc-ticker-track span:nth-child(odd) {
  color: var(--tc-coral-soft);
}

@keyframes tc-ticker-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive Adjustments */
@media (max-width: 980px) {
  .tc-hero,
  .tc-hero-copy {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .tc-hero-copy {
    padding-bottom: 60px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f5aa449 *//* ==========================================================================
   Phase 4: Category Tiles & Weekly Feature Styles (Namespace: tc-)
   ========================================================================== */

/* Layout Wrap */
.tc-wrap {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

/* Category Tiles Grid */
.tc-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  scroll-margin-top: 130px;
}

.tc-cat {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #ffffff;
  display: block;
  text-decoration: none;
}

.tc-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.tc-cat:hover img {
  transform: scale(1.06);
}

.tc-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.tc-cat-label {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  font-family: var(--tc-font-display, "Cormorant Garamond", serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}

/* Weekly Feature Section */
.tc-feature {
  background-color: var(--tc-cream, #faf4ee);
  padding: clamp(3rem, 7vw, 5.5rem) 0 0;
  text-align: center;
  scroll-margin-top: 130px;
}

.tc-feature-kicker {
  display: inline-block;
  font-family: var(--tc-font-sans, "Outfit", sans-serif);
  letter-spacing: 0.32em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--tc-slate, #6a5f59);
}

.tc-feature h2 {
  font-family: var(--tc-font-display, "Cormorant Garamond", serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  letter-spacing: 0.04em;
  color: var(--tc-ink, #111111);
  margin: 8px 0;
}

.tc-feature h2 em {
  font-family: var(--tc-font-script, "Great Vibes", cursive);
  font-style: normal;
  color: var(--tc-coral, #e86b5c);
}

.tc-feature-sub {
  font-family: var(--tc-font-sans, "Outfit", sans-serif);
  color: var(--tc-slate, #6a5f59);
  font-size: 14px;
  margin-bottom: 28px;
}

/* 3-Column Look Showcase */
.tc-look-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 12px;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.tc-look-col {
  position: relative;
  cursor: pointer;
  background-color: var(--tc-paper, #fffaf5);
  overflow: hidden;
}

.tc-look-col img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.tc-look-col:hover img {
  transform: scale(1.03);
}

.tc-note-tag {
  display: block;
  padding: 14px 10px 10px;
  font-family: var(--tc-font-display, "Cormorant Garamond", serif);
  font-size: 1.15rem;
  color: var(--tc-ink, #111111);
  background-color: var(--tc-cream, #faf4ee);
}

.tc-note-tag small {
  display: block;
  font-family: var(--tc-font-sans, "Outfit", sans-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tc-slate, #6a5f59);
  margin-top: 4px;
}

/* Feature Section CTA */
.tc-feature-cta {
  padding: 32px 0 44px;
}

.tc-btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tc-ink, #111111);
  padding: 12px 32px;
  font-family: var(--tc-font-sans, "Outfit", sans-serif);
  letter-spacing: 0.2em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--tc-ink, #111111);
  text-decoration: none;
  min-height: 48px;
  background: transparent;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tc-btn-line:hover {
  background-color: var(--tc-ink, #111111);
  color: var(--tc-paper, #fffaf5);
}

/* Responsive Rules */
@media (max-width: 980px) {
  .tc-cats {
    grid-template-columns: 1fr;
  }

  .tc-cat {
    min-height: 380px;
  }

  .tc-look-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tc-look-col img {
    max-height: 480px;
  }

  .tc-note-tag {
    padding: 10px 0 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-79a9878 *//* ==========================================================================
   Phase 7: Elevated Studio CTA & Trust Bar (Namespace: tc-)
   ========================================================================== */

/* Shared Layout Wrapper */
.tc-wrap {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

/* Studio Section */
.tc-studio {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--tc-ink, #111111);
}

.tc-studio-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tc-studio-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.tc-studio:hover .tc-studio-bg img {
  transform: scale(1.07);
}

.tc-studio-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    circle at center,
    rgba(17, 17, 17, 0.4) 0%,
    rgba(17, 17, 17, 0.78) 100%
  );
  pointer-events: none;
}

.tc-studio-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}

/* Frosted Luxury Center Card */
.tc-studio-card {
  width: min(720px, 100%);
  background: rgba(250, 244, 238, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--tc-line, #e4d5c8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Studio Pill Badge */
.tc-studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid var(--tc-line, #e4d5c8);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--tc-font-sans, "Outfit", sans-serif);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tc-slate, #6a5f59);
  margin-bottom: 20px;
}

.tc-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--tc-coral, #e86b5c);
}

/* Heading with Serif & Script */
.tc-studio-heading {
  font-family: var(--tc-font-display, "Cormorant Garamond", serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: var(--tc-ink, #111111);
  margin: 0;
}

.tc-studio-heading em {
  font-family: var(--tc-font-script, "Great Vibes", cursive);
  font-style: normal;
  display: block;
  font-size: 0.72em;
  color: var(--tc-coral, #e86b5c);
  margin-bottom: -4px;
}

.tc-studio-desc {
  font-family: var(--tc-font-sans, "Outfit", sans-serif);
  font-size: 14px;
  line-height: 1.6;
  color: var(--tc-slate, #6a5f59);
  max-width: 480px;
  margin: 18px 0 28px;
}

/* CTA Buttons */
.tc-studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.tc-btn-primary {
  background-color: var(--tc-ink, #111111);
  color: var(--tc-paper, #fffaf5);
  border: 1px solid var(--tc-ink, #111111);
  padding: 13px 26px;
  font-family: var(--tc-font-sans, "Outfit", sans-serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tc-btn-primary:hover {
  background-color: #000000;
  border-color: #000000;
}

.tc-btn-outline-gold {
  background: transparent;
  color: var(--tc-ink, #111111);
  border: 1px solid var(--tc-line, #e4d5c8);
  padding: 13px 22px;
  font-family: var(--tc-font-sans, "Outfit", sans-serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.tc-btn-outline-gold:hover {
  border-color: var(--tc-gold, #c4a265);
  background-color: #ffffff;
}

.tc-btn-outline-gold svg {
  color: var(--tc-coral, #e86b5c);
}

/* Trust / Assurance Bar */
.tc-trust {
  background-color: #0b0b0b;
  border-top: 1px solid rgba(228, 213, 200, 0.1);
  border-bottom: 1px solid rgba(228, 213, 200, 0.1);
  padding: 34px 0;
}

.tc-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
}

.tc-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-trust-item:last-child {
  border-right: none;
}

.tc-trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 162, 101, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tc-gold-soft, #e8d5a8);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.tc-trust-item:hover .tc-trust-icon-box {
  border-color: var(--tc-coral-soft, #f08070);
  background: rgba(232, 107, 92, 0.08);
  color: var(--tc-coral-soft, #f08070);
}

.tc-trust-text {
  text-align: left;
}

.tc-trust-text h4 {
  font-family: var(--tc-font-sans, "Outfit", sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.tc-trust-text p {
  font-family: var(--tc-font-sans, "Outfit", sans-serif);
  font-size: 12px;
  color: #9a8778;
  margin: 3px 0 0;
  line-height: 1.3;
}

/* Responsive Rules */
@media (max-width: 980px) {
  .tc-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .tc-trust-item {
    border-right: none;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .tc-studio {
    min-height: auto;
    padding: 60px 0;
  }

  .tc-studio-card {
    padding: 32px 18px;
  }

  .tc-studio-actions {
    flex-direction: column;
    width: 100%;
  }

  .tc-btn-primary,
  .tc-btn-outline-gold {
    width: 100%;
  }

  .tc-trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}/* End custom CSS */