/*
Theme Name: Twin Hair Treat
Theme URI: https://twinhairtreat.com
Description: Custom Luxury Hair Ecommerce Theme
Author: Twin Hair Treat
Template: blocksy
Version: 1.0
Text Domain: twin-hair-treat
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ================================
   ROOT VARIABLES
================================ */
:root {
  --primary: #E91E8C;
  --primary-light: #F06292;
  --secondary: #FCE4EC;
  --accent: #C2185B;
  --accent-light: #F8BBD9;
  --white: #FFFFFF;
  --light-gray: #FFF5F9;
  --dark-gray: #2C3E50;
  --text: #333333;
  --border: #F8BBD9;
  --shadow: 0 4px 20px rgba(233, 30, 140, 0.12);
  --shadow-hover: 0 8px 30px rgba(233, 30, 140, 0.22);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* ================================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ================================
   CONTAINER
================================ */
.tht-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   BUTTONS
================================ */
.tht-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.tht-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.tht-btn-outline {
  background: transparent;
  color: var(--primary);
}

.tht-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.tht-btn-gold {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.tht-btn-gold:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ================================
   HEADER
================================ */
.tht-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(233, 30, 140, 0.08);
  border-bottom: 2px solid var(--secondary);
}

.tht-top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
}

.tht-top-bar a {
  color: var(--accent-light);
}

.tht-header-main {
  padding: 20px 0;
}

.tht-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tht-logo {
  display: flex;
  flex-direction: column;
}

.tht-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.tht-logo-sub {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.tht-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.tht-nav ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.tht-nav ul li a:hover {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.tht-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tht-header-actions a {
  color: var(--dark-gray);
  font-size: 20px;
  position: relative;
}

.tht-header-actions a:hover {
  color: var(--primary);
}

.tht-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.tht-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.tht-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* ================================
   HERO SECTION
================================ */
.tht-hero {
  background: linear-gradient(135deg, #E91E8C 0%, #F06292 50%, #F48FB1 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.tht-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(212, 172, 13, 0.1);
  border-radius: 50%;
}

.tht-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.tht-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tht-hero-content {
  color: var(--white);
}

.tht-hero-badge {
  display: inline-block;
  background: rgba(212, 172, 13, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tht-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.tht-hero-title span {
  color: var(--accent);
}

.tht-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  line-height: 1.8;
}

.tht-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tht-hero-image {
  position: relative;
}

.tht-hero-image-box {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.tht-hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.tht-hero-image-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.6);
}

.tht-hero-image-placeholder i {
  font-size: 80px;
  display: block;
  margin-bottom: 15px;
}

.tht-hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.tht-hero-stat h3 {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 4px;
}

.tht-hero-stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ================================
   SECTION STYLES
================================ */
.tht-section {
  padding: 80px 0;
}

.tht-section-alt {
  background: var(--light-gray);
}

.tht-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.tht-section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tht-section-title {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 15px;
}

.tht-section-desc {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   CATEGORIES SECTION
================================ */
.tht-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tht-category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.tht-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.tht-category-image {
  height: 220px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tht-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tht-category-icon {
  font-size: 60px;
  color: var(--white);
  opacity: 0.8;
}

.tht-category-info {
  padding: 20px;
  text-align: center;
}

.tht-category-info h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 6px;
}

.tht-category-info p {
  font-size: 13px;
  color: #888;
}

/* ================================
   PRODUCTS GRID
================================ */
.tht-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.tht-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.tht-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.tht-product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--light-gray);
}

.tht-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tht-product-card:hover .tht-product-image img {
  transform: scale(1.05);
}

.tht-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tht-product-badge.sold-out {
  background: #E74C3C;
}

.tht-product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}

.tht-product-card:hover .tht-product-actions {
  opacity: 1;
}

.tht-product-action-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: var(--transition);
  font-size: 14px;
  color: var(--primary);
}

.tht-product-action-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.tht-product-info {
  padding: 20px;
}

.tht-product-category {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.tht-product-name {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.tht-product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.tht-product-price .original {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}

.tht-add-to-cart {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tht-add-to-cart:hover {
  background: var(--accent);
}

/* ================================
   BANNER SECTION
================================ */
.tht-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 80px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tht-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(212, 172, 13, 0.1);
  border-radius: 50%;
}

.tht-banner h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 15px;
}

.tht-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

/* ================================
   FEATURES SECTION
================================ */
.tht-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.tht-feature-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tht-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.tht-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--white);
}

.tht-feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tht-feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ================================
   TESTIMONIALS
================================ */
.tht-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tht-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.tht-testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--secondary);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.tht-testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 15px;
}

.tht-testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.tht-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tht-testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

.tht-testimonial-author h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.tht-testimonial-author span {
  font-size: 12px;
  color: #888;
}

/* ================================
   NEWSLETTER
================================ */
.tht-newsletter {
  background: var(--light-gray);
  padding: 80px 0;
  text-align: center;
}

.tht-newsletter h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.tht-newsletter p {
  color: #666;
  margin-bottom: 30px;
}

.tht-newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}

.tht-newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
}

.tht-newsletter-form input:focus {
  border-color: var(--primary);
}

.tht-newsletter-form button {
  padding: 14px 25px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.tht-newsletter-form button:hover {
  background: var(--accent);
}

/* ================================
   FOOTER
================================ */
.tht-footer {
  background: var(--dark-gray);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}

.tht-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.tht-footer-brand .tht-logo-text {
  color: var(--white);
  margin-bottom: 15px;
  display: block;
}

.tht-footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.tht-footer-social {
  display: flex;
  gap: 12px;
}

.tht-footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}

.tht-footer-social a:hover {
  background: var(--accent);
}

.tht-footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.tht-footer-col ul li {
  margin-bottom: 10px;
}

.tht-footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}

.tht-footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.tht-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.tht-footer-bottom p {
  color: rgba(255,255,255,0.6);
}

.tht-footer-payments {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tht-footer-payments span {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

/* ================================
   WOOCOMMERCE OVERRIDES
================================ */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
  border-top-color: var(--primary);
}

.woocommerce .woocommerce-message::before {
  color: var(--primary);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  padding: 12px 25px;
  transition: var(--transition);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--accent);
  color: var(--white);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--primary);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--accent);
}

.woocommerce span.onsale {
  background: var(--accent);
  border-radius: var(--radius);
}

.woocommerce .star-rating span::before,
.woocommerce p.stars a::before {
  color: var(--accent);
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background: var(--primary);
  font-family: 'Poppins', sans-serif;
}

.woocommerce #payment #place_order:hover {
  background: var(--accent);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border-color: var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.1);
}

/* ================================
   SHOP PAGE
================================ */
.woocommerce ul.products li.product .price {
  color: var(--primary);
  font-weight: 700;
}

.woocommerce ul.products li.product:hover {
  box-shadow: var(--shadow-hover);
}

.woocommerce-shop .woocommerce-result-count {
  color: #666;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background: var(--primary);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background: var(--primary);
}

/* ================================
   SINGLE PRODUCT PAGE
================================ */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom-color: var(--primary);
}

/* ================================
   CART PAGE
================================ */
.woocommerce table.cart td.actions .coupon .input-text {
  border-color: var(--border);
  border-radius: var(--radius);
}

/* ================================
   MOBILE NAVIGATION
================================ */
.tht-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary);
  z-index: 9999;
  padding: 80px 30px 30px;
  flex-direction: column;
}

.tht-mobile-menu.active {
  display: flex;
}

.tht-mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tht-mobile-menu ul li a {
  color: var(--white);
  font-size: 22px;
  font-family: 'Playfair Display', serif;
}

.tht-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .tht-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tht-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tht-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .tht-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tht-hero-title {
    font-size: 36px;
  }

  .tht-hero-image {
    display: none;
  }

  .tht-hero-stats {
    justify-content: center;
  }

  .tht-hero-buttons {
    justify-content: center;
  }

  .tht-nav {
    display: none;
  }

  .tht-hamburger {
    display: flex;
  }

  .tht-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tht-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tht-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tht-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .tht-footer-grid {
    grid-template-columns: 1fr;
  }

  .tht-section-title {
    font-size: 28px;
  }

  .tht-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tht-products-grid {
    grid-template-columns: 1fr;
  }

  .tht-categories-grid {
    grid-template-columns: 1fr;
  }

  .tht-features-grid {
    grid-template-columns: 1fr;
  }

  .tht-newsletter-form {
    flex-direction: column;
  }

  .tht-newsletter-form input {
    border-right: 2px solid var(--border);
    border-radius: var(--radius);
  }

  .tht-newsletter-form button {
    border-radius: var(--radius);
  }
}
/* ================================
   SHOP PAGE STYLES
================================ */
.tht-shop-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.tht-shop-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.tht-shop-desc {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.tht-shop-section {
    padding: 60px 0;
}

.tht-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.tht-shop-sidebar {
    position: sticky;
    top: 100px;
}

.tht-sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.tht-sidebar-title {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.tht-sidebar-search {
    display: flex;
    gap: 0;
}

.tht-sidebar-search input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
}

.tht-sidebar-search input:focus {
    border-color: var(--primary);
}

.tht-sidebar-search button {
    padding: 10px 15px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
}

.tht-sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tht-sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
}

.tht-sidebar-categories li a:hover,
.tht-sidebar-categories li.active a {
    background: var(--secondary);
    color: var(--primary);
}

.tht-cat-count {
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
}

.tht-filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tht-filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
}

.tht-filter-label input {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.tht-sidebar-promo {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    color: var(--white);
}

.tht-sidebar-promo i {
    font-size: 30px;
    color: var(--accent);
    margin-bottom: 10px;
}

.tht-sidebar-promo h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.tht-promo-code {
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    margin: 10px 0;
    display: inline-block;
}

.tht-sidebar-promo p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

/* Shop Toolbar */
.tht-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tht-result-count {
    font-size: 14px;
    color: #666;
}

.tht-shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tht-view-toggle {
    display: flex;
    gap: 5px;
}

.tht-view-btn {
    width: 35px;
    height: 35px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
    cursor: pointer;
    color: #888;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tht-view-btn.active,
.tht-view-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* WooCommerce ordering select */
.woocommerce-ordering select {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--text);
    outline: none;
    cursor: pointer;
}

.woocommerce-ordering select:focus {
    border-color: var(--primary);
}

/* Product Meta Tags */
.tht-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.tht-product-tag {
    background: var(--secondary);
    color: var(--primary);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* Product Rating */
.tht-product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #888;
}

/* No Products */
.tht-no-products {
    text-align: center;
    padding: 80px 20px;
    color: #888;
}

.tht-no-products i {
    font-size: 60px;
    color: var(--secondary);
    margin-bottom: 20px;
    display: block;
}

.tht-no-products h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.tht-no-products p {
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Pagination */
.tht-shop-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 8px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    margin: 0 3px;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Active Filters */
.tht-active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

/* Trust Bar */
.tht-trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.tht-trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.tht-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
}

.tht-trust-item i {
    color: var(--primary);
    font-size: 20px;
}

/* About Teaser */
.tht-about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tht-about-image-box {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tht-about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.tht-about-stat h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 5px;
}

.tht-about-stat p {
    font-size: 13px;
    color: #888;
}

/* Hero Float Cards */
.tht-hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-hover);
    font-size: 13px;
}

.tht-hero-float-card strong {
    display: block;
    color: var(--primary);
    font-size: 13px;
}

.tht-hero-float-card span {
    color: #888;
    font-size: 12px;
}

.tht-hero-float-card-1 {
    bottom: 30px;
    left: -20px;
}

.tht-hero-float-card-2 {
    top: 30px;
    right: -20px;
}

/* Toast Notifications */
.tht-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary);
    color: var(--white);
    padding: 14px 25px;
    border-radius: var(--radius);
    font-size: 14px;
    z-index: 99999;
    box-shadow: var(--shadow-hover);
    transition: transform 0.4s ease;
    white-space: nowrap;
}

.tht-toast-show {
    transform: translateX(-50%) translateY(0);
}

/* WhatsApp Float */
.tht-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.tht-whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.tht-whatsapp-tooltip {
    position: absolute;
    right: 65px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.tht-whatsapp-float:hover .tht-whatsapp-tooltip {
    opacity: 1;
}

/* Back To Top */
.tht-back-to-top {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.tht-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.tht-back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Search Bar */
.tht-search-bar {
    background: var(--light-gray);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border-top: 1px solid var(--border);
}

.tht-search-bar.active {
    max-height: 80px;
    padding: 15px 0;
}

.tht-search-bar form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tht-search-bar input[type="search"] {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    outline: none;
    background: var(--white);
}

.tht-search-bar input[type="search"]:focus {
    border-color: var(--primary);
}

.tht-search-bar button {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.tht-search-bar button:hover {
    background: var(--accent);
}

/* Breadcrumb */
.tht-breadcrumb-bar {
    background: var(--light-gray);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: #888;
}

.tht-breadcrumb-bar a {
    color: var(--primary);
}

/* Header Scrolled */
.tht-header-scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

/* Cart Sidebar */
.tht-cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 99999;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.tht-cart-sidebar.active {
    right: 0;
}

.tht-cart-sidebar-header {
    padding: 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tht-cart-sidebar-header h3 {
    font-size: 20px;
    color: var(--primary);
}

.tht-cart-sidebar-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #888;
    transition: var(--transition);
}

.tht-cart-sidebar-close:hover {
    color: var(--primary);
}

.tht-cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.tht-cart-empty {
    text-align: center;
    padding: 50px 20px;
    color: #888;
}

.tht-cart-empty i {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 15px;
    display: block;
}

.tht-cart-sidebar-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.tht-cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.tht-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tht-cart-item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.tht-cart-item-qty {
    font-size: 13px;
    color: #888;
}

.tht-cart-item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 5px;
}

.tht-cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 16px;
    border-top: 2px solid var(--border);
    margin-top: 10px;
}

.tht-cart-sidebar-total strong {
    font-size: 20px;
    color: var(--primary);
}

.tht-cart-sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
}

.tht-cart-sidebar-footer .tht-btn {
    flex: 1;
    text-align: center;
}

.tht-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tht-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Overlay */
.tht-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tht-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.tht-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: var(--primary);
    z-index: 99999;
    padding: 30px;
    transition: left 0.4s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tht-mobile-menu.active {
    left: 0;
}

.tht-mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.tht-mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tht-mobile-nav-list li a {
    display: block;
    color: var(--white);
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.tht-mobile-nav-list li a:hover {
    color: var(--accent);
    padding-left: 10px;
}

/* Quantity Buttons */
.tht-enhanced {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tht-qty-minus,
.tht-qty-plus {
    width: 32px;
    height: 32px;
    background: var(--light-gray);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tht-qty-minus:hover,
.tht-qty-plus:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Animations */
.tht-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tht-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Instagram Placeholder */
.tht-instagram-placeholder {
    text-align: center;
    padding: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    color: #888;
}

.tht-instagram-placeholder i {
    font-size: 50px;
    color: var(--secondary);
    display: block;
    margin-bottom: 15px;
}

/* Product Details Table */
.tht-product-details-table {
    margin: 20px 0;
}

.tht-product-details-table table {
    width: 100%;
    border-collapse: collapse;
}

.tht-product-details-table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.tht-detail-label {
    font-weight: 600;
    color: var(--primary);
    width: 40%;
}

.tht-detail-value {
    color: var(--text);
}

/* Shipping Note */
.tht-shipping-note {
    background: var(--light-gray);
    padding: 12px 15px;
    border-radius: var(--radius);
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.tht-shipping-note i {
    color: var(--primary);
    font-size: 16px;
}

/* Sold Out Badge */
.tht-sold-out-badge {
    display: inline-block;
    background: #E74C3C;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Footer Contact */
.tht-footer-contact {
    margin-top: 20px;
}

.tht-footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 8px;
}

.tht-footer-contact i {
    color: var(--accent);
    width: 16px;
}

.tht-footer-contact a {
    color: rgba(255,255,255,0.7);
}

.tht-footer-contact a:hover {
    color: var(--accent);
}

/* Trust Badges */
.tht-trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.tht-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.tht-trust-badge i {
    color: var(--accent);
}

/* Newsletter Note */
.tht-newsletter-note {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Product No Image */
.tht-product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--secondary);
    font-size: 40px;
}

/* Shop Responsive */
@media (max-width: 1024px) {
    .tht-shop-layout {
        grid-template-columns: 240px 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .tht-shop-layout {
        grid-template-columns: 1fr;
    }

    .tht-shop-sidebar {
        position: static;
        display: none;
    }

    .tht-trust-bar-inner {
        gap: 20px;
    }

    .tht-about-teaser {
        grid-template-columns: 1fr;
    }

    .tht-cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .tht-hero-float-card {
        display: none;
    }
}
/* ================================
   SINGLE PRODUCT PAGE
================================ */
.tht-single-product-section {
    padding: 50px 0 80px;
}

.tht-single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 70px;
}

/* Gallery */
.tht-product-gallery {
    position: sticky;
    top: 100px;
}

.tht-product-main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 15px;
    background: var(--light-gray);
}

.tht-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tht-main-img:hover {
    transform: scale(1.03);
}

.tht-single-badges {
    position: absolute;
    top: 15px;
    left: 15px;
}

.tht-product-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tht-product-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.tht-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tht-product-thumb:hover,
.tht-product-thumb.active {
    border-color: var(--primary);
}

/* Product Summary */
.tht-single-category {
    margin-bottom: 10px;
}

.tht-single-category a {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.tht-single-title {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.tht-single-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #888;
}

.tht-single-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.tht-single-price del {
    font-size: 20px;
    color: #999;
    font-weight: 400;
    margin-right: 10px;
}

.tht-single-price ins {
    text-decoration: none;
    color: #E74C3C;
}

.tht-single-short-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

/* Hair Details */
.tht-single-hair-details {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.tht-single-hair-details h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 15px;
}

.tht-hair-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tht-hair-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light-gray);
    padding: 12px;
    border-radius: var(--radius);
}

.tht-hair-detail-item i {
    color: var(--primary);
    font-size: 18px;
    width: 20px;
}

.tht-hair-detail-item span {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tht-hair-detail-item strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}

/* Add to Cart */
.tht-single-add-to-cart {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.tht-single-add-to-cart .quantity {
    margin-bottom: 15px;
}

.tht-single-add-to-cart .single_add_to_cart_button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    letter-spacing: 2px;
    border-radius: var(--radius);
}

/* Out of Stock */
.tht-out-of-stock {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #FFF5F5;
    border: 2px solid #FADBD8;
    border-radius: var(--radius);
    padding: 20px;
}

.tht-out-of-stock i {
    color: #E74C3C;
    font-size: 24px;
    margin-top: 2px;
}

.tht-out-of-stock strong {
    display: block;
    color: #E74C3C;
    margin-bottom: 5px;
}

.tht-out-of-stock p {
    font-size: 14px;
    color: #666;
}

/* Shipping */
.tht-single-shipping {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.tht-shipping-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tht-shipping-item i {
    color: var(--primary);
    font-size: 20px;
    width: 25px;
}

.tht-shipping-item strong {
    display: block;
    font-size: 14px;
    color: var(--dark-gray);
}

.tht-shipping-item span {
    font-size: 12px;
    color: #888;
}

/* Payment Icons */
.tht-single-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #888;
}

.tht-payment-icons {
    display: flex;
    gap: 8px;
}

.tht-payment-icons i {
    font-size: 28px;
    color: #555;
}

/* Share */
.tht-single-share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #888;
}

.tht-share-buttons {
    display: flex;
    gap: 8px;
}

.tht-share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.tht-share-facebook { background: #3B5998; }
.tht-share-twitter { background: #1DA1F2; }
.tht-share-pinterest { background: #E60023; }
.tht-share-whatsapp { background: #25D366; }

.tht-share-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

/* Product Tabs */
.tht-product-tabs {
    margin-bottom: 70px;
}

.tht-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 30px;
}

.tht-tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tht-tab-btn:hover {
    color: var(--primary);
}

.tht-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tht-tab-count {
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 10px;
}

.tht-tab-content {
    display: none;
}

.tht-tab-content.active {
    display: block;
}

.tht-tab-inner {
    padding: 10px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Details Table */
.tht-details-table {
    width: 100%;
    border-collapse: collapse;
}

.tht-details-table tr:nth-child(even) {
    background: var(--light-gray);
}

.tht-details-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.tht-details-table td:first-child {
    font-weight: 600;
    color: var(--primary);
    width: 35%;
}

/* Shipping Info */
.tht-shipping-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tht-shipping-info-block h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tht-returns-note {
    background: #FFF9E6;
    border-left: 4px solid var(--accent);
    padding: 12px 15px;
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    border-radius: 0 var(--radius) var(--radius) 0;
    display: flex;
    gap: 10px;
}

.tht-returns-note i {
    color: var(--accent);
    margin-top: 2px;
}

/* Reviews */
.tht-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.tht-review-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.tht-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.tht-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.tht-review-header strong {
    color: var(--primary);
    font-size: 15px;
}

.tht-review-header span {
    background: #E8F8F0;
    color: #27AE60;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}

.tht-review-header time {
    font-size: 12px;
    color: #888;
    margin-left: auto;
}

.tht-review-stars {
    font-size: 14px;
    margin-bottom: 8px;
}

.tht-review-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Related Products */
.tht-related-products {
    padding-top: 50px;
    border-top: 1px solid var(--border);
}

/* Single Product Responsive */
@media (max-width: 1024px) {
    .tht-single-product-layout {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .tht-single-product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tht-product-gallery {
        position: static;
    }

    .tht-main-img {
        height: 400px;
    }

    .tht-single-title {
        font-size: 26px;
    }

    .tht-hair-details-grid {
        grid-template-columns: 1fr;
    }

    .tht-tabs-nav {
        overflow-x: auto;
        white-space: nowrap;
    }

    .tht-shipping-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
/* ================================
   CART PAGE
================================ */
.tht-cart-section {
    padding: 50px 0 80px;
}

.tht-cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.tht-cart-title {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 10px;
}

.tht-cart-subtitle {
    color: #888;
    font-size: 15px;
}

/* Empty Cart */
.tht-empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.tht-empty-cart-icon {
    width: 120px;
    height: 120px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.tht-empty-cart-icon i {
    font-size: 50px;
    color: var(--secondary);
}

.tht-empty-cart h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.tht-empty-cart p {
    color: #888;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Cart Layout */
.tht-cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Shipping Progress */
.tht-shipping-progress {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 15px 20px;
    margin-bottom: 25px;
}

.tht-shipping-progress p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tht-shipping-progress i {
    color: var(--primary);
}

.tht-progress-bar {
    background: var(--border);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.tht-progress-fill {
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Cart Table Header */
.tht-cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 15px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Cart Item */
.tht-cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 15px;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    transition: var(--transition);
}

.tht-cart-item:hover {
    box-shadow: var(--shadow-hover);
}

.tht-cart-item-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tht-cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-gray);
}

.tht-cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tht-cart-item-info h3 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 5px;
}

.tht-cart-item-info h3 a {
    color: var(--primary);
}

.tht-cart-item-variation {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.tht-cart-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

.tht-cart-item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

/* Quantity Wrapper */
.tht-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 5px;
}

.tht-qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    border-radius: 4px;
    padding: 5px;
    outline: none;
}

.tht-cart-item-total strong {
    font-size: 17px;
    color: var(--primary);
}

/* Remove Item */
.tht-remove-item {
    width: 32px;
    height: 32px;
    background: #FFF5F5;
    border: 1px solid #FADBD8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E74C3C;
    font-size: 13px;
    transition: var(--transition);
}

.tht-remove-item:hover {
    background: #E74C3C;
    color: var(--white);
    border-color: #E74C3C;
}

/* Mobile Label */
.tht-cart-mobile-label {
    display: none;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

/* Cart Actions */
.tht-cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 10px;
}

.tht-update-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Coupon Section */
.tht-coupon-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
}

.tht-coupon-section h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tht-coupon-section h4 i {
    color: var(--accent);
}

.tht-coupon-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.tht-coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    text-transform: uppercase;
}

.tht-coupon-input:focus {
    border-color: var(--primary);
}

.tht-coupon-hint {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tht-coupon-hint i {
    color: var(--accent);
}

/* Applied Coupon */
.tht-applied-coupons {
    margin-top: 15px;
}

.tht-applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #E8F8F0;
    border: 1px solid #A9DFBF;
    border-radius: var(--radius);
    padding: 10px 15px;
    font-size: 14px;
}

.tht-applied-coupon span {
    color: #27AE60;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.tht-remove-coupon {
    color: #E74C3C;
    font-size: 12px;
    text-decoration: underline;
}

/* Order Summary */
.tht-summary-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.tht-summary-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
}

.tht-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.tht-summary-row span {
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tht-summary-row strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.tht-summary-divider {
    height: 2px;
    background: var(--border);
    margin: 10px 0;
}

.tht-summary-total {
    padding: 15px 0;
    font-size: 18px;
}

.tht-summary-total span {
    font-weight: 700;
    color: var(--primary);
}

.tht-summary-total strong {
    font-size: 24px;
    color: var(--primary);
}

/* Checkout Button */
.tht-checkout-btn {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 16px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Summary Payments */
.tht-summary-payments {
    text-align: center;
    margin-top: 20px;
}

.tht-summary-payments p {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.tht-summary-payments .tht-payment-icons {
    justify-content: center;
}

.tht-summary-payments .tht-payment-icons i {
    font-size: 24px;
    color: #aaa;
}

/* Summary Trust */
.tht-summary-trust {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.tht-summary-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #888;
    text-align: center;
}

.tht-summary-trust-item i {
    color: var(--primary);
    font-size: 18px;
}

/* Summary Help */
.tht-summary-help {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.tht-summary-help p {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.tht-summary-help a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    transition: var(--transition);
}

.tht-summary-help a:hover {
    background: #128C7E;
    color: var(--white);
}

/* Cart Upsells */
.tht-cart-upsells {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.tht-cart-upsells h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.tht-upsell-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.tht-upsell-item:last-child {
    border-bottom: none;
}

.tht-upsell-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.tht-upsell-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tht-upsell-info h5 {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 5px;
}

.tht-upsell-info span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Cart Responsive */
@media (max-width: 1024px) {
    .tht-cart-layout {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 768px) {
    .tht-cart-layout {
        grid-template-columns: 1fr;
    }

    .tht-cart-table-header {
        display: none;
    }

    .tht-cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tht-cart-mobile-label {
        display: block;
    }

    .tht-cart-actions {
        flex-direction: column;
        gap: 15px;
    }

    .tht-cart-actions .tht-btn {
        width: 100%;
        text-align: center;
    }

    .tht-coupon-form {
        flex-direction: column;
    }

    .tht-summary-box {
        position: static;
    }
}
/* ================================
   CHECKOUT PAGE
================================ */
.tht-checkout-section {
    padding: 50px 0 80px;
}

.tht-checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.tht-checkout-title {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 25px;
}

/* Checkout Steps */
.tht-checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 10px;
}

.tht-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tht-step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 16px;
    transition: var(--transition);
}

.tht-step.active .tht-step-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 4px var(--secondary);
}

.tht-step.completed .tht-step-icon {
    background: #27AE60;
    color: var(--white);
}

.tht-step span {
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.tht-step.active span {
    color: var(--primary);
    font-weight: 600;
}

.tht-step.completed span {
    color: #27AE60;
}

.tht-step-line {
    height: 2px;
    width: 80px;
    background: var(--border);
    margin-bottom: 20px;
    transition: var(--transition);
}

.tht-step-line.completed {
    background: #27AE60;
}

/* Returning Customer */
.tht-returning-customer {
    background: #EBF5FB;
    border: 1px solid #AED6F1;
    border-radius: var(--radius);
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 14px;
}

.tht-returning-customer p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.tht-returning-customer i {
    color: var(--primary);
}

.tht-toggle-login {
    color: var(--primary);
    font-weight: 600;
}

.tht-login-form {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #AED6F1;
}

.tht-login-form.active {
    display: block;
}

/* Checkout Layout */
.tht-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: start;
}

/* Checkout Block */
.tht-checkout-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.tht-checkout-block-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tht-block-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Form Grid */
.tht-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tht-full-width {
    grid-column: 1 / -1;
}

.tht-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tht-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
}

.tht-form-group label .required {
    color: #E74C3C;
    margin-left: 3px;
}

.tht-input {
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.tht-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.1);
}

.tht-input.error {
    border-color: #E74C3C;
}

.tht-textarea {
    resize: vertical;
    min-height: 100px;
}

.tht-field-note {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Checkbox */
.tht-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.tht-checkbox-label input {
    margin-top: 2px;
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.tht-checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

/* Ship Different */
.tht-ship-different {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.tht-shipping-fields {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.tht-shipping-fields h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Create Account */
.tht-create-account {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

/* Checkout Items */
.tht-checkout-items {
    margin-bottom: 20px;
}

.tht-checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.tht-checkout-item-img {
    width: 65px;
    height: 65px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: var(--light-gray);
}

.tht-checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tht-item-qty {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.tht-checkout-item-info {
    flex: 1;
}

.tht-checkout-item-info h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 4px;
}

.tht-checkout-item-info span {
    display: inline-block;
    font-size: 12px;
    color: #888;
    background: var(--light-gray);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 4px;
}

.tht-checkout-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
    white-space: nowrap;
}

/* Checkout Totals */
.tht-checkout-totals {
    border-top: 2px solid var(--border);
    padding-top: 15px;
}

.tht-checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.tht-checkout-total-row span {
    color: #555;
}

.tht-checkout-total-row strong {
    color: var(--dark-gray);
}

.tht-grand-total {
    padding: 15px 0 0;
    font-size: 18px;
    border-bottom: none;
}

.tht-grand-total span {
    font-weight: 700;
    color: var(--primary);
}

.tht-grand-total strong {
    font-size: 22px;
    color: var(--primary);
}

/* Shipping Methods */
.tht-shipping-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tht-shipping-method-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.tht-shipping-method-label:hover {
    border-color: var(--primary);
}

.tht-shipping-method-label input:checked + .tht-shipping-method-info {
    color: var(--primary);
}

.tht-shipping-method-label input[type="radio"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.tht-shipping-method-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.tht-shipping-method-info strong {
    font-size: 14px;
    color: var(--dark-gray);
}

.tht-shipping-method-info span {
    font-weight: 700;
    color: var(--primary);
}

/* Payment Security */
.tht-payment-security {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #EBF5FB;
    border: 1px solid #AED6F1;
    border-radius: var(--radius);
    padding: 12px 15px;
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.tht-payment-security i {
    color: #27AE60;
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Payment Methods */
.tht-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.tht-payment-method {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.tht-payment-method.active {
    border-color: var(--primary);
}

.tht-payment-method-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    cursor: pointer;
}

.tht-payment-radio {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.tht-payment-method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.tht-payment-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-gray);
}

.tht-payment-icons-small {
    display: flex;
    gap: 6px;
}

.tht-payment-icons-small i {
    font-size: 24px;
    color: #555;
}

.tht-payment-fields {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--light-gray);
}

/* Terms */
.tht-terms {
    margin-bottom: 20px;
}

/* Place Order Button */
.tht-place-order-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tht-place-order-btn:hover {
    background: linear-gradient(
        135deg,
        var(--accent),
        #B7950B
    );
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.tht-order-total {
    font-weight: 400;
    opacity: 0.9;
    font-size: 14px;
}

/* Checkout Payment Icons */
.tht-checkout-payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tht-checkout-payment-icons i {
    font-size: 28px;
    color: #aaa;
}

/* Checkout Responsive */
@media (max-width: 1024px) {
    .tht-checkout-layout {
        grid-template-columns: 1fr 360px;
    }
}

@media (max-width: 768px) {
    .tht-checkout-layout {
        grid-template-columns: 1fr;
    }

    .tht-form-grid {
        grid-template-columns: 1fr;
    }

    .tht-full-width {
        grid-column: 1;
    }

    .tht-checkout-steps {
        gap: 0;
    }

    .tht-step-line {
        width: 40px;
    }

    .tht-step span {
        display: none;
    }
}
/* ================================
   BLOG / INDEX PAGE
================================ */
.tht-index-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 60px 0;
    align-items: start;
}

.tht-page-hero {
    margin-bottom: 40px;
}

.tht-page-title {
    font-size: 38px;
    color: var(--primary);
}

/* Blog Grid */
.tht-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Blog Card */
.tht-blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tht-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tht-blog-image {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.tht-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tht-blog-card:hover .tht-blog-image img {
    transform: scale(1.05);
}

.tht-blog-no-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: rgba(255,255,255,0.5);
}

.tht-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tht-blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

/* Blog Meta */
.tht-blog-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tht-blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #888;
}

.tht-blog-meta i {
    color: var(--accent);
}

/* Blog Title */
.tht-blog-title {
    font-size: 22px;
    line-height: 1.3;
}

.tht-blog-title a {
    color: var(--primary);
    transition: var(--transition);
}

.tht-blog-title a:hover {
    color: var(--accent);
}

/* Blog Excerpt */
.tht-blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* Read More */
.tht-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.tht-read-more:hover {
    color: var(--accent);
    gap: 12px;
}

/* Blog Pagination */
.tht-blog-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.tht-blog-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tht-blog-pagination .page-numbers {
    padding: 8px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
}

.tht-blog-pagination .page-numbers:hover,
.tht-blog-pagination .page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* No Posts */
.tht-no-posts {
    text-align: center;
    padding: 80px 20px;
    color: #888;
}

.tht-no-posts i {
    font-size: 60px;
    color: var(--secondary);
    display: block;
    margin-bottom: 20px;
}

.tht-no-posts h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.tht-no-posts p {
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Sidebar */
.tht-index-sidebar {
    position: sticky;
    top: 100px;
}

/* Recent Posts */
.tht-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tht-recent-post {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.tht-recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tht-recent-post-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.tht-recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tht-recent-post-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tht-recent-post-info a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    transition: var(--transition);
}

.tht-recent-post-info a:hover {
    color: var(--accent);
}

.tht-recent-post-info span {
    font-size: 11px;
    color: #aaa;
}

/* Sidebar Products */
.tht-sidebar-product {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
}

.tht-sidebar-product:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.tht-sidebar-product-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-gray);
}

.tht-sidebar-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tht-sidebar-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tht-sidebar-product-info a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
}

.tht-sidebar-product-info span {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .tht-index-layout {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 768px) {
    .tht-index-layout {
        grid-template-columns: 1fr;
    }

    .tht-blog-card {
        grid-template-columns: 1fr;
    }

    .tht-blog-image {
        min-height: 200px;
    }

    .tht-index-sidebar {
        position: static;
    }
}
/* ================================
   ICON FIX - FORCE FONT AWESOME
================================ */

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-brands-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-regular-400.woff2') format('woff2');
}

.fa-solid,
.fas {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
}

.fa-regular,
.far {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 400 !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
}

.fa-brands,
.fab {
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
}

[class*="fa-"]::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
/* ================================
   FUCHSIA PINK & WHITE THEME
================================ */

/* White body background */
body {
    background: #FFFFFF;
}

/* Pink top bar */
.tht-top-bar {
    background: linear-gradient(
        90deg,
        #E91E8C,
        #F06292
    );
}

/* White header */
.tht-header-main {
    background: #FFFFFF;
}

/* Pink logo text */
.tht-logo-text {
    color: #E91E8C;
}

.tht-logo-sub {
    color: #F06292;
}

/* Pink nav hover */
.tht-nav ul li a:hover {
    color: #E91E8C;
    border-bottom-color: #E91E8C;
}

/* Pink hamburger */
.tht-hamburger span {
    background: #E91E8C;
}

/* Pink section labels */
.tht-section-label {
    color: #E91E8C;
}

/* White section alt background */
.tht-section-alt {
    background: #FFF5F9;
}

/* Pink category cards */
.tht-category-image {
    background: linear-gradient(
        135deg,
        #FCE4EC,
        #E91E8C
    );
}

/* Pink feature icons */
.tht-feature-icon {
    background: linear-gradient(
        135deg,
        #FCE4EC,
        #E91E8C
    );
}

/* Pink testimonial quote */
.tht-testimonial-card::before {
    color: #FCE4EC;
}

/* Pink testimonial avatar */
.tht-testimonial-avatar {
    background: linear-gradient(
        135deg,
        #FCE4EC,
        #E91E8C
    );
}

/* White newsletter */
.tht-newsletter {
    background: #FFF5F9;
}

/* Pink footer */
.tht-footer {
    background: #2C3E50;
}

/* Pink footer col border */
.tht-footer-col h4 {
    border-bottom-color: #E91E8C;
}

/* Pink sidebar title border */
.tht-sidebar-title {
    border-bottom-color: #FCE4EC;
}

/* Pink banner */
.tht-banner {
    background: linear-gradient(
        135deg,
        #E91E8C,
        #F06292
    );
}

/* Pink shop hero */
.tht-shop-hero {
    background: linear-gradient(
        135deg,
        #E91E8C,
        #F06292
    );
}

/* Pink mobile menu */
.tht-mobile-menu {
    background: #E91E8C;
}

/* Pink cart sidebar header */
.tht-cart-sidebar-header h3 {
    color: #E91E8C;
}

/* Pink checkout steps active */
.tht-step.active .tht-step-icon {
    background: #E91E8C;
    box-shadow: 0 0 0 4px #FCE4EC;
}

/* Pink place order button */
.tht-place-order-btn {
    background: linear-gradient(
        135deg,
        #E91E8C,
        #F06292
    );
}

/* Pink progress bar */
.tht-progress-fill {
    background: linear-gradient(
        90deg,
        #E91E8C,
        #F06292
    );
}

/* Pink cart table header */
.tht-cart-table-header {
    background: #E91E8C;
}

/* Pink block numbers */
.tht-block-number {
    background: #E91E8C;
}

/* Pink promo code */
.tht-promo-code {
    background: #E91E8C;
}

/* Pink sidebar promo */
.tht-sidebar-promo {
    background: linear-gradient(
        135deg,
        #E91E8C,
        #F06292
    );
}

/* Pink hero */
.tht-hero {
    background: linear-gradient(
        135deg,
        #E91E8C 0%,
        #F06292 50%,
        #F48FB1 100%
    );
}

/* Pink summary title border */
.tht-summary-title {
    border-bottom-color: #FCE4EC;
}

/* White product cards */
.tht-product-card {
    background: #FFFFFF;
    border: 1px solid #FCE4EC;
}

/* White category cards */
.tht-category-card {
    background: #FFFFFF;
    border: 1px solid #FCE4EC;
}

/* White feature cards */
.tht-feature-card {
    background: #FFFFFF;
    border: 1px solid #FCE4EC;
}

/* White testimonial cards */
.tht-testimonial-card {
    background: #FFFFFF;
    border: 1px solid #FCE4EC;
}

/* Pink add to cart button */
.tht-add-to-cart {
    background: #E91E8C;
}

.tht-add-to-cart:hover {
    background: #C2185B;
}

/* Pink checkout button */
.tht-checkout-btn {
    background: #E91E8C;
    border-color: #E91E8C;
}

/* Pink whatsapp float stays green - good for brand */

/* Pink back to top */
.tht-back-to-top {
    background: #E91E8C;
}

.tht-back-to-top:hover {
    background: #C2185B;
}

/* Pink toast */
.tht-toast {
    background: #E91E8C;
}

/* Pink review avatar */
.tht-review-avatar {
    background: #E91E8C;
}

/* Pink cat count badge */
.tht-cat-count {
    background: #E91E8C;
}

/* Pink tab active */
.tht-tab-btn.active {
    color: #E91E8C;
    border-bottom-color: #E91E8C;
}

/* Pink tab count */
.tht-tab-count {
    background: #E91E8C;
}

/* Pink share whatsapp stays green */
.tht-share-facebook { background: #3B5998; }
.tht-share-twitter { background: #1DA1F2; }
.tht-share-pinterest { background: #E60023; }
.tht-share-whatsapp { background: #25D366; }

/* Pink product badge */
.tht-product-badge {
    background: #E91E8C;
}

/* Pink blog category */
.tht-blog-category {
    background: #E91E8C;
}

/* Pink read more */
.tht-read-more {
    color: #E91E8C;
}

/* Pink pagination active */
.tht-blog-pagination .page-numbers:hover,
.tht-blog-pagination .page-numbers.current {
    background: #E91E8C;
    border-color: #E91E8C;
}

/* Pink WooCommerce buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: #E91E8C;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: #C2185B;
}

.woocommerce span.onsale {
    background: #E91E8C;
}

/* Pink price filter slider */
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background: #E91E8C;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background: #E91E8C;
}

/* Pink payment place order */
.woocommerce #payment #place_order {
    background: #E91E8C;
}

/* Pink input focus */
.tht-input:focus {
    border-color: #E91E8C;
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

/* Pink search bar button */
.tht-search-bar button {
    background: #E91E8C;
}

/* Pink sidebar search button */
.tht-sidebar-search button {
    background: #E91E8C;
}

/* Pink newsletter button */
.tht-newsletter-form button {
    background: #E91E8C;
}

/* Pink view toggle active */
.tht-view-btn.active,
.tht-view-btn:hover {
    border-color: #E91E8C;
    color: #E91E8C;
}

/* Pink footer social hover */
.tht-footer-social a:hover {
    background: #E91E8C;
}

/* Pink product action btn */
.tht-product-action-btn {
    color: #E91E8C;
}

.tht-product-action-btn:hover {
    background: #E91E8C;
}

/* Pink remove item hover */
.tht-remove-item:hover {
    background: #E74C3C;
}

/* Pink applied coupon */
.tht-applied-coupon span {
    color: #27AE60;
}

/* Pink payment method active border */
.tht-payment-method.active {
    border-color: #E91E8C;
}

/* Pink shipping method hover */
.tht-shipping-method-label:hover {
    border-color: #E91E8C;
}

/* Pink hero stat numbers */
.tht-hero-stat h3 {
    color: #FFB3D9;
}

/* Pink about stat numbers */
.tht-about-stat h3 {
    color: #E91E8C;
}

/* Soft pink trust bar */
.tht-trust-item i {
    color: #E91E8C;
}

/* Pink footer contact icons */
.tht-footer-contact i {
    color: #E91E8C;
}

/* Pink trust badges */
.tht-trust-badge i {
    color: #E91E8C;
}

/* Pink shipping note icon */
.tht-shipping-note i {
    color: #E91E8C;
}

/* Pink sidebar categories hover */
.tht-sidebar-categories li a:hover,
.tht-sidebar-categories li.active a {
    background: #FCE4EC;
    color: #E91E8C;
}

/* Pink product tag */
.tht-product-tag {
    background: #FCE4EC;
    color: #E91E8C;
}

/* Pink hair detail items */
.tht-hair-detail-item {
    background: #FFF5F9;
}

.tht-hair-detail-item i {
    color: #E91E8C;
}

/* Pink shipping items */
.tht-shipping-item i {
    color: #E91E8C;
}

/* Pink returns note border */
.tht-returns-note {
    border-left-color: #E91E8C;
}

/* Pink out of stock border stays red */

/* Pink upsell btn */
.tht-upsell-info .tht-btn {
    background: #E91E8C;
    border-color: #E91E8C;
}

/* Pink no products icon */
.tht-no-products i {
    color: #FCE4EC;
}

/* Pink empty cart icon */
.tht-empty-cart-icon i {
    color: #E91E8C;
}

/* Pink blog no image */
.tht-blog-no-image {
    background: linear-gradient(
        135deg,
        #FCE4EC,
        #E91E8C
    );
}

/* Pink recent post hover */
.tht-recent-post-info a:hover {
    color: #E91E8C;
}

/* Pink blog title hover */
.tht-blog-title a:hover {
    color: #E91E8C;
}

/* Pink instagram placeholder icon */
.tht-instagram-placeholder i {
    color: #FCE4EC;
}

/* Pink secondary color overrides */
.tht-secondary {
    color: #FCE4EC;
}
/* ================================
   CATEGORY BADGE & NO CATEGORIES
================================ */
.tht-cat-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: var(--white);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
}

.tht-no-categories {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.tht-no-categories i {
    font-size: 50px;
    color: var(--secondary);
    display: block;
    margin-bottom: 15px;
}
/* ================================
   BOOKING PAGE
================================ */
.tht-booking-section {
    padding: 50px 0 80px;
}

.tht-booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.tht-booking-title {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 10px;
}

.tht-booking-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Progress Steps */
.tht-booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 0;
}

.tht-booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tht-booking-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 18px;
    transition: var(--transition);
}

.tht-booking-step.active .tht-booking-step-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 4px var(--secondary);
}

.tht-booking-step.completed .tht-booking-step-icon {
    background: #27AE60;
    color: var(--white);
}

.tht-booking-step span {
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.tht-booking-step.active span {
    color: var(--primary);
    font-weight: 600;
}

.tht-booking-progress-line {
    height: 2px;
    width: 80px;
    background: var(--border);
    margin-bottom: 22px;
    transition: var(--transition);
}

.tht-booking-progress-line.completed {
    background: #27AE60;
}

/* Layout */
.tht-booking-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

/* Panels */
.tht-booking-panel {
    display: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.tht-booking-panel.active {
    display: block;
}

.tht-booking-panel-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
}

.tht-booking-panel-title i {
    color: var(--primary);
}

/* Services Grid */
.tht-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.tht-service-card {
    cursor: pointer;
    display: block;
}

.tht-service-card input {
    display: none;
}

.tht-service-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: var(--white);
}

.tht-service-card input:checked + .tht-service-content {
    border-color: var(--primary);
    background: #FFF5F9;
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.tht-service-content:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.tht-service-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.tht-service-info h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 4px;
}

.tht-service-info p {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.tht-service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
}

.tht-service-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tht-service-meta i {
    color: var(--primary);
}

.tht-service-price {
    font-weight: 700;
    color: var(--primary) !important;
    font-size: 14px !important;
}

/* Calendar */
.tht-date-time-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.tht-calendar-section h4,
.tht-time-section h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 15px;
}

.tht-calendar {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tht-calendar-header {
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tht-calendar-header h4 {
    color: var(--white);
    font-size: 15px;
    margin: 0;
}

.tht-cal-prev,
.tht-cal-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.tht-cal-prev:hover,
.tht-cal-next:hover {
    background: rgba(255,255,255,0.3);
}

.tht-calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--secondary);
}

.tht-calendar-days-header span {
    text-align: center;
    padding: 8px 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.tht-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
    gap: 4px;
}

.tht-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.tht-cal-day:hover:not(.disabled):not(.empty) {
    background: var(--secondary);
    color: var(--primary);
}

.tht-cal-day.selected {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.tht-cal-day.today {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.tht-cal-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

.tht-cal-day.empty {
    cursor: default;
}

/* Time Slots */
.tht-time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.tht-select-date-first {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    font-size: 14px;
    padding: 30px 0;
}

.tht-time-slot {
    padding: 10px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.tht-time-slot:hover:not(.booked) {
    border-color: var(--primary);
    color: var(--primary);
}

.tht-time-slot.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.tht-time-slot.booked {
    background: var(--light-gray);
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Location Info */
.tht-location-info {
    margin-top: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--radius);
    font-size: 13px;
    color: #666;
}

.tht-location-info h4 {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tht-location-info i {
    color: var(--primary);
}

.tht-location-info a {
    color: var(--primary);
    font-weight: 600;
}

/* File Upload */
.tht-file-upload {
    position: relative;
}

.tht-file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.tht-file-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    color: #888;
    font-size: 14px;
}

.tht-file-label:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--light-gray);
}

.tht-file-label i {
    font-size: 24px;
    color: var(--primary);
}

/* Booking Summary */
.tht-booking-summary {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 20px;
}

.tht-booking-summary h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.tht-summary-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tht-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.tht-summary-item:last-child {
    border-bottom: none;
}

.tht-summary-item span {
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tht-summary-item span i {
    color: var(--primary);
    width: 16px;
}

.tht-summary-item strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.tht-price-row {
    margin-top: 5px;
    padding-top: 15px;
    border-top: 2px solid var(--border) !important;
}

/* Deposit Notice */
.tht-deposit-notice {
    display: flex;
    gap: 15px;
    background: #FFF9E6;
    border: 2px solid #F9E79F;
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 20px;
    font-size: 14px;
}

.tht-deposit-notice i {
    color: #F39C12;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tht-deposit-notice strong {
    display: block;
    color: #E67E22;
    margin-bottom: 5px;
}

.tht-deposit-notice p {
    color: #666;
    line-height: 1.6;
}

/* Booking Terms */
.tht-booking-terms {
    margin-bottom: 25px;
}

/* Booking Nav */
.tht-booking-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Confirm Button */
.tht-confirm-booking {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tht-confirm-booking:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Success */
.tht-booking-success {
    text-align: center;
    padding: 40px 20px;
}

.tht-success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(
        135deg,
        #E8F8F0,
        #27AE60
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.tht-success-icon i {
    font-size: 50px;
    color: var(--white);
}

.tht-booking-success h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.tht-booking-success p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tht-success-details {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tht-success-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.tht-success-details i {
    color: var(--primary);
    font-size: 18px;
    width: 20px;
}

.tht-success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Right Info Panel */
.tht-booking-info-panel {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tht-booking-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.tht-booking-info-card h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.tht-booking-info-card h4 i {
    color: var(--primary);
}

.tht-booking-info-card p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.tht-booking-info-card a {
    color: var(--primary);
}

/* Hours List */
.tht-hours-list {
    list-style: none;
    padding: 0;
}

.tht-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.tht-hours-list li:last-child {
    border-bottom: none;
}

.tht-hours-list li span {
    color: #666;
}

.tht-hours-list li strong {
    color: var(--primary);
}

/* Policy List */
.tht-policy-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tht-policy-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.tht-policy-list li i {
    color: #27AE60;
    font-size: 14px;
}

/* Selected Summary */
.tht-selected-summary p {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    color: #555;
    margin: 0;
}

/* Booking Responsive */
@media (max-width: 1024px) {
    .tht-booking-layout {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 768px) {
    .tht-booking-layout {
        grid-template-columns: 1fr;
    }

    .tht-booking-info-panel {
        position: static;
    }

    .tht-services-grid {
        grid-template-columns: 1fr;
    }

    .tht-date-time-layout {
        grid-template-columns: 1fr;
    }

    .tht-booking-progress-line {
        width: 40px;
    }

    .tht-booking-step span {
        display: none;
    }
}
/* ================================
   NATURAL HAIR BOOKING BANNER
================================ */
.tht-natural-booking-banner {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    padding: 25px 0;
    margin-bottom: 0;
}

.tht-natural-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tht-natural-banner-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.tht-natural-banner-text i {
    font-size: 35px;
    color: var(--accent-light);
}

.tht-natural-banner-text h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 4px;
}

.tht-natural-banner-text p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

@media (max-width: 768px) {
    .tht-natural-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}