/**
 * PIXEL-PERFECT FIXES
 * Exact visual replication of reference design
 * DO NOT modify unless matching reference exactly
 */

/* Apply Montserrat font globally - but exclude Font Awesome icons */
* {
  font-family: 'Montserrat', sans-serif !important;
}

/* Font Awesome icons must use their own font-family */
.fa, .fas, .far, .fal, .fad, .fab, .fa-solid, .fa-regular, .fa-light, .fa-duotone, .fa-brands,
[class*="fa-"], i[class*="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands", "FontAwesome" !important;
}

body, html {
  font-family: 'Montserrat', sans-serif !important;
}

/* =========================
   HEADER - EXACT MATCH
========================= */

/* Top Bar - Exact spacing and alignment */
.top-bar {
  padding: 12px 0; /* Match reference: 12px vertical padding */
  border-bottom: 1px solid #e5e5e5; /* Exact border color */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #ffffff; /* Pure white background */
}

.logo img {
  height: 60px; /* Exact logo height */
  width: auto;
}

/* Search Box - Exact dimensions and styling */
.search-box {
  flex: 1;
  max-width: 650px; /* Match reference width */
  height: 48px; /* Exact height */
  margin: 0 30px; /* Exact horizontal margin */
  display: flex;
  border: 1px solid #e5e5e5; /* Exact border color */
  border-radius: 30px; /* Exact border radius */
  overflow: hidden;
  background: #ffffff;
}

.search-box form {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}

.search-box select {
  padding: 0 18px; /* Exact padding */
  border: none;
  border-right: 1px solid #e5e5e5;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  background: transparent;
  outline: none;
  height: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

.search-box input[type="search"] {
  flex: 1;
  padding: 0 15px; /* Exact padding */
  font-size: 14px;
  color: #333;
  border: none;
  outline: none;
  background: transparent;
  height: 100%;
}

.search-box input[type="search"]::placeholder {
  color: #999;
}

.search-box input[type="hidden"] {
  display: none;
}

.search-box button {
  width: 50px; /* Exact button width */
  height: 100%;
  cursor: pointer;
  color: #333;
  font-size: 16px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.search-box button:hover {
  color: #3b4eff;
}

/* Top Icons - Exact spacing */
.top-icons {
  display: flex;
  gap: 12px; /* Exact gap between icons */
  align-items: center;
}

.top-icons a {
  color: #333; /* Exact icon color */
  font-size: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.3s;
}

.top-icons a:hover {
  color: #3b4eff; /* Exact hover color - blue */
}

/* Cart Link - Exact styling */
.top-icons .cart {
  display: flex;
  align-items: center;
  gap: 6px; /* Exact gap between cart icon and text */
  color: #333;
  font-size: 14px;
  text-decoration: none;
  padding: 0;
  width: auto;
  height: auto;
}

.top-icons .cart i {
  font-size: 18px;
  color: #333;
}

.top-icons .cart .count {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.top-icons .cart .price {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.top-icons .cart .price .woocommerce-Price-amount {
  font-weight: 600;
  color: #333;
}

.top-icons .cart:hover {
  color: #333;
}

.top-icons .cart:hover i {
  color: #3b4eff;
}

/* Navigation Bar - Exact styling */
.nav-bar {
  background: #1f2933; /* Exact dark background */
  padding: 0;
}

.nav-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 15px;
}

.nav {
  display: flex;
  gap: 2px; /* Exact gap between nav items */
  flex-wrap: wrap;
}

.nav a {
  color: #ffffff; /* Exact white text */
  padding: 15px 18px; /* Exact padding */
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}

.nav a:hover,
.nav a.active {
  background: #3b4eff; /* Exact blue active/hover color */
}

.phone a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  background: #333333; /* Exact dark gray background */
  padding: 15px 12px; /* Exact padding */
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

/* =========================
   HERO SLIDER - EXACT MATCH
========================= */

.hero-slider {
  height: 80vh; /* Exact viewport height */
  background: #e1e4ed; /* Exact light blue-gray background */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5% 10%; /* Exact padding percentages */
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  max-width: 45%; /* Exact width percentage */
  z-index: 2;
}

.slide-content .tagline {
  display: block;
  color: #2f57ff; /* Exact blue color */
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 15px; /* Exact margin */
  text-transform: uppercase;
}

.slide-content h2 {
  font-size: 50px; /* Exact font size */
  font-weight: 700;
  margin-bottom: 15px; /* Exact margin */
  color: #111111; /* Exact dark text */
  line-height: 1.2;
}

.slide-content p {
  font-size: 16px; /* Exact font size */
  margin-bottom: 25px; /* Exact margin */
  line-height: 1.6;
  color: #333333; /* Exact gray text */
}

.slide-content .btn {
  display: inline-block;
  padding: 12px 30px; /* Exact padding */
  background-color: #2f57ff; /* Exact blue background */
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.3s;
}

.slide-content .btn:hover {
  background-color: #1c3edb; /* Exact darker blue on hover */
}

.slide-image {
  max-width: 50%; /* Exact width percentage */
  text-align: right;
  z-index: 2;
}

.slide-image img {
  max-width: 90%; /* Exact image width */
  height: auto;
  object-fit: contain;
}

/* Arrow Buttons - Exact styling */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; /* Exact button size */
  height: 50px;
  border-radius: 50%;
  background: #2f57ff; /* Exact blue background */
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.arrow:hover {
  background: #1c3edb; /* Exact darker blue on hover */
}

.prev {
  left: 20px; /* Exact left position */
}

.next {
  right: 20px; /* Exact right position */
}

/* =========================
   FAVORITE PRODUCT - EXACT MATCH
========================= */

.fav-product {
  padding: 80px 10%; /* Exact padding */
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
}

.fav-product h2 {
  font-size: 32px; /* Exact font size */
  font-weight: 700;
  margin-bottom: 15px; /* Exact margin */
  color: #111111;
}

.divider-img {
  margin-bottom: 50px; /* Exact margin */
}

.divider-img img {
  width: 115px; /* Exact divider width */
  height: auto;
}

/* Product Grid - Exact 3-column layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; /* Exact gap */
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Card - Exact styling */
.product-card {
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px; /* Exact max width */
}

.product-card img {
  width: 100%;
  max-width: 380px; /* Exact image width */
  border-radius: 10px;
  transition: transform 0.3s ease;
  object-fit: cover;
}

/* Active / Hover Effect - Exact transform */
.product-card.active img,
.product-card:hover img {
  transform: translateY(-20px); /* Exact transform value */
}

/* Buttons - Exact styling */
.product-btn {
  display: inline-block;
  margin-top: 20px; /* Exact margin */
  padding: 12px 30px; /* Exact padding */
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  transition: background 0.3s ease, transform 0.3s ease;
  font-weight: 500;
}

.product-btn.dark {
  background-color: #1f1f1f; /* Exact dark background */
}

.product-btn.dark:hover {
  background-color: #333333;
}

.product-btn.blue {
  background-color: #4169ff; /* Exact blue background */
}

.product-btn.blue:hover {
  background-color: #254eda; /* Exact darker blue on hover */
}

/* =========================
   BEST SALES - EXACT MATCH
========================= */

.best-sales {
  padding: 60px 40px; /* Exact padding */
  background-color: #f8f8f8; /* Exact light gray background */
}

.bs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px; /* Exact margin */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.bs-title-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bs-title-group h2 {
  font-size: 32px; /* Exact font size */
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.bs-header .ts-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bs-header .ts-title .sub {
  color: #e53935; /* Exact red color */
  font-size: 13px; /* Exact font size */
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.bs-header .ts-title h2 {
  font-size: 36px; /* Exact font size */
  margin: 0;
  font-weight: 700;
  color: #111111;
}

.bs-arrows {
  display: flex;
  gap: 10px;
}

.bs-arrows button {
  width: 42px; /* Exact button size */
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Exact shadow */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: 16px;
  transition: all 0.3s;
}

.bs-arrows button:hover {
  background: #f0f0f0;
}

/* Scroll Container - Exact styling */
.bs-scroll {
  display: flex;
  gap: 24px; /* Exact gap */
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap; /* Prevent wrapping for horizontal scroll */
}

.bs-scroll::-webkit-scrollbar {
  display: none;
}

/* Fixed width for product cards in bs-scroll */
.bs-scroll .product-card,
.bs-scroll .perfume-card {
  min-width: 300px;
  max-width: 300px;
  width: 300px;
  flex-shrink: 0;
}
a.add-cart.add_to_cart_button.ajax_add_to_cart {
  text-decoration: none;
}

/* Card - Exact dimensions */
.bs-card {
  min-width: 370px; /* Exact card width */
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 10px 48px 10px; /* Exact padding */
  position: relative;
  text-align: center;
  box-shadow: 0 0 4px #eaeaea; /* Exact shadow */
  flex-shrink: 0;
}

/* Sale Badge - Exact positioning */
.sale-badge {
  position: absolute;
  top: 26px; /* Exact top position */
  left: 26px; /* Exact left position */
  background: #4caf50; /* Exact green color */
  color: #ffffff;
  font-size: 12px;
  padding: 4px 10px; /* Exact padding */
  border-radius: 6px;
  z-index: 2;
  font-weight: 600;
}

/* Image Container - Exact styling */
.bs-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 15px;
  height: 300px; /* Fixed standard height */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}

.bs-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Overlay Icons - Exact styling */
.bs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* Exact gap */
  background: rgba(0,0,0,0.25); /* Exact overlay opacity */
  opacity: 0;
  transition: opacity 0.3s;
}

.bs-img:hover .bs-overlay {
  opacity: 1;
}

.bs-overlay button,
.bs-overlay .quick-view-btn {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #333 !important;
  cursor: pointer;
  font-size: 12px !important;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(10px);
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.bs-overlay button:hover,
.bs-overlay .quick-view-btn:hover {
  background: #6b0f0f !important;
  border-color: #6b0f0f !important;
  color: #ffffff !important;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(107, 15, 15, 0.4) !important;
}

.bs-overlay button i,
.bs-overlay .quick-view-btn i {
  font-size: 12px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
}

.bs-overlay .cart {
  background: #7a1c1c; /* Exact dark red background */
  color: #ffffff;
}

/* Text - Exact styling */
.bs-card h3 {
  font-size: 16px; /* Exact font size */
  margin: 14px 0 6px; /* Exact margins */
  color: #111111;
  font-weight: 500;
}

.price-m {
  padding: 20px 0; /* Exact padding */
}

.price-m del {
  color: #999999; /* Exact gray color */
  font-size: 16px;
  margin-right: 8px;
}

.price-m span {
  color: #7a1c1c; /* Exact dark red color */
  font-size: 28px; /* Exact font size */
  font-weight: 600;
}

/* Add to Cart Button - Exact styling */
.add-cart {
  margin-top: 10px; /* Exact margin */
  width: 100%;
  background: #7a1c1c; /* Exact dark red background */
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}

.add-cart:hover {
  background: #6b0f0f; /* Exact darker red on hover */
}

/* =========================
   TOP MONTH SELLERS - EXACT MATCH
========================= */

.top-sellers {
  padding: 80px 40px; /* Exact padding */
  background: #f7fbfd; /* Exact light blue background */
}

.ts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px; /* Exact margin */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.ts-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ts-title .sub {
  color: #e53935; /* Exact red color */
  font-size: 13px; /* Exact font size */
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ts-title h2 {
  font-size: 36px; /* Exact font size */
  margin-top: 6px; /* Exact margin */
  font-weight: 700;
  color: #111111;
}

/* Filter Pills - Exact styling */
.ts-filters {
  display: flex;
  gap: 10px;
}

.ts-filters button {
  padding: 10px 20px; /* Exact padding */
  border-radius: 30px; /* Exact border radius */
  border: none;
  background: #ffffff;
  margin-left: 10px; /* Exact margin */
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Exact shadow */
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  transition: all 0.3s;
}

.ts-filters .active {
  background: #000000; /* Exact black background */
  color: #ffffff;
}

/* Navigation Arrows */
.ts-arrows {
  display: flex;
  gap: 10px;
}

.ts-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: 16px;
  transition: all 0.3s;
}

.ts-arrows button:hover {
  background: #f0f0f0;
}

/* Scroll Area - Exact styling */
.ts-scroll {
  display: flex;
  gap: 24px; /* Exact gap - match bs-scroll */
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: nowrap;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 10px;
}

.ts-scroll::-webkit-scrollbar {
  display: none;
}

/* Fixed width for product cards in ts-scroll */
.ts-scroll .product-card,
.ts-scroll .perfume-card {
  min-width: 300px;
  max-width: 300px;
  width: 300px;
  flex-shrink: 0;
}

/* Card - Exact dimensions */
.ts-card {
  width: 30%; /* Exact width percentage */
  min-width: 320px; /* Exact min width */
  background: #ffffff;
  border-radius: 18px;
  padding: 18px; /* Exact padding */
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

/* Sale Badge - Exact positioning */
.sale {
  position: absolute;
  top: 26px; /* Exact top position */
  left: 26px; /* Exact left position */
  background: #4caf50; /* Exact green color */
  color: #ffffff;
  padding: 4px 12px; /* Exact padding */
  font-size: 12px;
  border-radius: 6px;
  z-index: 2;
  font-weight: 600;
}

/* Image Container - Exact styling */
.ts-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 15px;
  height: 300px; /* Fixed standard height */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}

.ts-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Overlay - Exact styling */
.ts-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* Exact overlay opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* Exact gap */
  opacity: 0;
  transition: opacity 0.3s;
}

.ts-img:hover .ts-overlay {
  opacity: 1;
}

.ts-overlay button {
  width: 44px; /* Exact button size */
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-overlay button:hover {
  background: #7a1c1c; /* Exact dark red hover */
  color: #ffffff;
}

.ts-overlay .cart,
.ts-overlay .cart-btn {
  background: #7a1c1c; /* Exact dark red background */
  color: #ffffff;
}

.ts-overlay .wishlist-btn {
  background: #ffffff;
  color: #000000;
}

.ts-overlay .wishlist-btn:hover {
  background: #7a1c1c;
  color: #ffffff;
}

/* Text - Exact styling */
.ts-card h3 {
  margin: 16px 0 6px; /* Exact margins */
  font-size: 17px; /* Exact font size */
  color: #111111;
  font-weight: 500;
}

.ts-card h3 a {
  color: #111111;
  text-decoration: none;
  transition: color 0.3s;
}

.ts-card h3 a:hover {
  color: #3b4eff;
}

.price {
  margin: 10px 0;
}

.price del {
  color: #999999; /* Exact gray color */
  font-size: 16px;
  margin-right: 8px;
}

.price span,
.price .woocommerce-Price-amount {
  font-weight: 600;
  font-size: 20px;
  color: #7a1c1c; /* Exact dark red color */
}

.price ins {
  text-decoration: none;
  color: #7a1c1c;
}

/* Add to Cart Button - Exact styling */
.ts-card .add-cart {
  margin-top: 12px; /* Exact margin */
  width: 100%;
  padding: 10px; /* Exact padding */
  background: #6b0f0f; /* Exact dark red background */
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}

.ts-card .add-cart:hover {
  background: #5a0a0a; /* Exact darker red on hover */
}

/* =========================
   PRODUCT DETAIL SECTION - EXACT MATCH
========================= */

.product-section {
  padding: 60px 20px; /* Exact padding */
  background: #ffffff;
}

.product-wrap {
  max-width: 1200px; /* Exact max width */
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* Exact column ratio */
  gap: 70px; /* Exact gap */
  align-items: center;
}

/* Left Gallery - Exact styling */
.main-img-box {
  background: #f6f9fc; /* Exact light blue background */
  padding: 20px; /* Exact padding */
  border-radius: 10px;
}

.main-img-box img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.thumbs-row {
  margin-top: 18px; /* Exact margin */
  display: flex;
  gap: 14px; /* Exact gap */
}

.thumb {
  width: 80px; /* Exact thumbnail size */
  height: 80px;
  background: #f6f9fc; /* Exact background */
  padding: 10px; /* Exact padding */
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  object-fit: cover;
}

.thumb.active {
  border-color: #e11b22; /* Exact red border */
}

/* Right Content - Exact styling */
.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category {
  color: #e11b22; /* Exact red color */
  font-size: 13px; /* Exact font size */
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-info h2 {
  font-size: 50px; /* Exact font size */
  margin: 10px 0; /* Exact margins */
  font-weight: 700;
  color: #111111;
}

.price-m {
  padding: 20px 0; /* Exact padding */
}

.price-m del,
.price-m .woocommerce-Price-amount del {
  color: #999999; /* Exact gray color */
  margin-right: 12px; /* Exact margin */
  font-size: 18px;
  text-decoration: line-through;
}

.price-m span,
.price-m .woocommerce-Price-amount span,
.price-m ins {
  font-size: 22px; /* Exact font size */
  font-weight: bold;
  color: #e11b22; /* Exact red color */
}

.price-m ins {
  text-decoration: none;
}

/* Ensure WooCommerce price wrapper doesn't interfere */
.price-m .price {
  display: inline-block;
}

.desc-t {
  font-size: 14px; /* Exact font size */
  color: #000000;
  line-height: 1.7; /* Exact line height */
  max-width: 420px; /* Exact max width */
  margin-bottom: 30px;
}

.cart-row {
  margin-top: 30px; /* Exact margin */
  display: flex;
  align-items: center;
  gap: 15px; /* Exact gap */
}

.qty {
  display: flex;
  border: 1px solid #dddddd; /* Exact border color */
  border-radius: 4px;
}

.qty button {
  width: 42px; /* Exact button size */
  height: 42px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: #333333;
  transition: background 0.3s;
}

.qty button:hover {
  background: #f0f0f0;
}

.qty span {
  width: 42px; /* Exact width */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}

.add-cart-t {
  background: #e11b22; /* Exact red background */
  color: #ffffff;
  border: none;
  padding: 0 28px; /* Exact padding */
  height: 42px; /* Exact height */
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-cart-t:hover {
  background: #c5001d; /* Exact darker red on hover */
}

/* =========================
   VIDEO HERO SECTION - EXACT MATCH
========================= */

.hero {
  min-height: 80vh; /* Exact viewport height */
  background: url(../images/0.png); /* Background image */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px; /* Exact padding */
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Exact overlay opacity */
  z-index: 1;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 600px; /* Exact max width */
  z-index: 2;
}

.play-btn {
  width: 70px; /* Exact button size */
  height: 70px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  font-size: 32px;
  cursor: pointer;
  margin-bottom: 20px; /* Exact margin */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.play-btn:hover {
  background-color: #c5001d; /* Exact red hover */
  color: #ffffff;
}

.brand {
  letter-spacing: 2px; /* Exact letter spacing */
  margin-bottom: 10px; /* Exact margin */
  color: #e11b22; /* Exact red color */
  font-size: 14px; /* Exact font size */
  font-weight: 600;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 42px; /* Exact font size */
  color: #ffffff;
  margin-bottom: 15px; /* Exact margin */
  font-weight: 700;
  line-height: 1.2;
}

.desc {
  font-size: 15px; /* Exact font size */
  color: #ffffff;
  line-height: 1.6; /* Exact line height */
  margin-bottom: 25px; /* Exact margin */
}

.cta {
  display: inline-block;
  background: #e60023; /* Exact red background */
  color: #ffffff;
  padding: 14px 30px; /* Exact padding */
  font-size: 14px; /* Exact font size */
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta:hover {
  background: #c5001d; /* Exact darker red on hover */
}

/* =========================
   PRODUCT HIGHLIGHT - EXACT MATCH
========================= */

.product-highlight {
  background: #ffffff;
  padding: 90px 0; /* Exact padding */
}

.product-grids {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; /* Exact max width */
  margin: 0 auto;
  padding: 0 20px;
  gap: 60px; /* Exact gap */
}

/* Text Content - Exact styling */
.product-content {
  flex: 1;
  max-width: 520px; /* Exact max width */
}

.product-tag {
  color: #f25c48; /* Exact red-orange color */
  font-size: 15px; /* Exact font size */
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px; /* Exact margin */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 48px; /* Exact font size */
  font-weight: 800;
  color: #2d3548; /* Exact dark blue-gray */
  margin-bottom: 20px; /* Exact margin */
  line-height: 1.2;
}

.product-desc {
  font-size: 16px; /* Exact font size */
  line-height: 1.7; /* Exact line height */
  color: #7a8194; /* Exact gray color */
  max-width: 520px; /* Exact max width */
  margin-bottom: 30px;
}

/* Buy Area - Exact styling */
.product-buy {
  display: flex;
  align-items: center;
  gap: 25px; /* Exact gap */
  margin-top: 30px; /* Exact margin */
}

.product-price {
  font-size: 36px; /* Exact font size */
  font-weight: 800;
  color: #f25c48; /* Exact red-orange color */
}

.buy-btn {
  background: #f7b54a; /* Exact yellow-orange background */
  color: #ffffff;
  padding: 14px 36px; /* Exact padding */
  border-radius: 50px; /* Exact border radius */
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.buy-btn:hover {
  background: #e9a63f; /* Exact darker yellow-orange on hover */
}

/* Image Wrap - Exact styling */
.product-image-wrap {
  display: flex;
  justify-content: center;
  flex: 1;
}

.circle-bg {
  width: 420px; /* Exact circle size */
  height: 420px;
  background: #f5f6fb; /* Exact light blue background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-bg img {
  max-height: 425px; /* Exact image height */
  object-fit: contain;
  width: auto;
}

/* =========================
   FOOTER - EXACT MATCH
========================= */

.footer {
  background: #1f1f1f; /* Exact dark background */
  color: #cfcfcf; /* Exact gray text */
  font-family: 'Montserrat', sans-serif;
}

/* Newsletter - Exact styling */
.footer-newsletter {
  text-align: center;
  padding: 22px 20px; /* Exact padding */
  background: #1f1f1f;
}

.footer-newsletter h2 {
  color: #ffffff;
  font-size: 32px; /* Exact font size */
  margin-bottom: 10px; /* Exact margin */
  font-weight: 700;
}

.footer-newsletter p {
  font-size: 16px; /* Exact font size */
  margin-bottom: 25px; /* Exact margin */
  color: #cfcfcf;
}

.newsletter-form {
  display: flex;
  max-width: 500px; /* Exact max width */
  margin: auto;
  border-radius: 4px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 14px; /* Exact padding */
  border: none;
  outline: none;
  background: #2d2d2d; /* Exact dark gray background */
  color: #ffffff;
  font-size: 14px;
}

.newsletter-form button {
  padding: 14px 30px; /* Exact padding */
  border: none;
  background: #000000; /* Exact black background */
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #333333;
}

.footer-divider {
  height: 1px;
  background: #333333; /* Exact divider color */
  margin: 0 20px 50px; /* Exact margins */
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Exact 4-column layout */
  gap: 50px; /* Exact gap */
  padding: 0 20px 50px; /* Exact padding */
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  max-width: 140px; /* Exact logo width */
  margin-bottom: 15px; /* Exact margin */
}

.footer-text {
  font-size: 14px; /* Exact font size */
  margin-bottom: 20px; /* Exact margin */
  color: #cfcfcf;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px; /* Exact margin */
  color: #ffffff;
  background: #000000; /* Exact black background */
  padding: 10px; /* Exact padding */
  border-radius: 50%;
  font-size: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #333333;
}

/* Columns - Exact styling */
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 20px; /* Exact margin */
  font-size: 20px; /* Exact font size */
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px; /* Exact margin */
}

.footer-col ul li a {
  color: #cfcfcf; /* Exact gray color */
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

/* Contact - Exact styling */
.contact-list li {
  display: flex;
  gap: 10px; /* Exact gap */
  font-size: 14px; /* Exact font size */
  margin-bottom: 10px;
  color: #cfcfcf;
}

.contact-list i {
  color: #ffffff;
  width: 20px;
}

/* Bottom - Exact styling */
.footer-bottom {
  border-top: 1px solid #333333; /* Exact border color */
  margin-top: 50px; /* Exact margin */
  padding: 20px 0; /* Exact padding */
}

.bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.payment-icons img {
  height: 28px; /* Exact icon height */
  margin-left: 10px; /* Exact margin */
  object-fit: contain;
}
