/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  font-family: 'Montserrat', sans-serif;
}

html, body, input, textarea, select, button {
  font-family: 'Montserrat', sans-serif;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin:0 auto;
  padding: 0 15px;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

/* SEARCH */
.search-box {
  flex: 1;
  max-width: 650px;
  height: 48px;
  margin: 0 30px;
  display: flex;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
}

.search-box form {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}

.search-box select,
.search-box input,
.search-box button {
  border: none;
  outline: none;
  background: transparent;
}

.search-box select {
  padding: 0 18px;
  padding-right: 35px;
  border-right: 1px solid #e5e5e5;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  height: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.search-box input[type="search"] {
  flex: 1;
  padding: 0 15px;
  font-size: 14px;
  color: #333;
  height: 100%;
}

.search-box input[type="search"]::placeholder {
  color: #999;
}

.search-box input[type="hidden"] {
  display: none;
}

.search-box button {
  width: 50px;
  height: 100%;
  cursor: pointer;
  color: #333;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.search-box button:hover {
  color: #3b4eff;
}

/* ICONS */
.top-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-icons a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 16px;
}

.top-icons a:hover {
  color: #3b4eff;
}

.top-icons .cart {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  width: auto;
  height: auto;
  font-size: 14px;
}

.top-icons .cart .count {
  font-weight: 600;
}

.top-icons .cart .price {
  font-weight: 600;
}

/* =========================
   NAV BAR
========================= */
.nav-bar {
  background: #1f2933;
}

.nav-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  padding: 15px 18px;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  background: #3b4eff;
}

.phone a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  background: #333;
  padding: 15px 12px;
  text-decoration: none;
  border-radius: 5px;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}
/* HERO SLIDER */
.hero-slider {
  height: 80vh;
  background: #e1e4ed;
  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%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  flex-wrap: wrap;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  max-width: 45%;
}

.slide-content .tagline {
  display: block;
  color: #2f57ff;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.slide-content h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.slide-content p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #333;
}

.slide-content .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #2f57ff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.slide-content .btn:hover {
  background-color: #1c3edb;
}

.slide-image {
  max-width: 50%;
  text-align: right;
}

.slide-image img {
  max-width: 90%;
  height: auto;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2f57ff;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: 0.3s;
}

.arrow:hover {
  background: #1c3edb;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}


/* =========================
   FAVORITE PRODUCTS
========================= */
.fav-product {
  padding: 80px 10%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.fav-product h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.divider-img img {
  width: 115px;
  margin-bottom: 50px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

/* Product Card */
.product-card {
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Active / Hover Effect */
.product-card.active img,
.product-card:hover img {
  transform: translateY(-20px);
}

/* Buttons */
.product-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}

.product-btn.dark {
  background-color: #1f1f1f;
}

.product-btn.dark:hover {
  background-color: #333;
}

.product-btn.blue {
  background-color: #4169ff;
}

.product-btn.blue:hover {
  background-color: #254eda;
}


/* =========================
   BEST SALES SLIDER
========================= */
.best-sales {
  padding: 60px 40px;
  background-color: #f8f8f8;
}

.bs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.bs-header h2 {
  font-size: 32px;
}

.bs-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}

/* SCROLL */
.bs-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  flex-wrap: nowrap; /* Prevent wrapping for horizontal scroll */
}
.bs-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.bs-card {
  min-width: 370px;
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 4px #eaeaea;
}

/* SALE */
.sale-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  background: #4caf50;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

/* IMAGE */
.bs-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  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 */
.bs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: 0.3s;
}

.bs-img:hover .bs-overlay {
  opacity: 1;
}

/* ICON BUTTONS */
.bs-overlay button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER BACKGROUND COLOR */
.bs-overlay button:hover {
  background: #7a1c1c;
  color: #fff;
}

/* CART ICON HIGHLIGHT */
.bs-overlay .cart {
  background: #7a1c1c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* TEXT */
.bs-card h3 {
  font-size: 16px;
  margin: 14px 0 6px;
}
.price-m {
  padding: 20px 0;
}
.price-m del {
  color: #999;
}
.price-m span {
  color: #7a1c1c;
  font-size: 28px;
  font-weight: 600;
}

/* ADD TO CART */
.add-cart {
  margin-top: 10px;
  padding: 10px 0;
  width: 100%;
  background: #7a1c1c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}


/* =========================
   PRODUCT DETAILS
========================= */
.top-sellers {
  padding: 80px 40px;
  background: #f7fbfd;
}

/* HEADER */
.ts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.ts-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ts-title .sub {
  color: #e53935;
  font-size: 13px;
  font-weight: 600;
}

.ts-title h2 {
  font-size: 36px;
  margin-top: 6px;
}

/* FILTER PILLS */
.ts-filters {
  display: flex;
  gap: 10px;
}

.ts-filters button {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.ts-filters .active {
  background: #000;
  color: #fff;
}

/* 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 */
.ts-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding-bottom: 10px;
  flex-wrap: nowrap; /* Prevent wrapping for horizontal scroll */
}
.ts-scroll::-webkit-scrollbar {
  display: none;
}

/* Fixed width for product cards in scroll containers */
.bs-scroll .product-card,
.bs-scroll .perfume-card,
.ts-scroll .product-card,
.ts-scroll .perfume-card {
  min-width: 300px;
  max-width: 300px;
  width: 300px;
  flex-shrink: 0; /* Prevent cards from shrinking */
}

/* CARD */
.ts-card {
  width: 30%;
  min-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  position: relative;
}

/* SALE */
.sale {
  position: absolute;
  top: 26px;
  left: 26px;
  background: #4caf50;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 6px;
  z-index: 2;
}

/* IMAGE */
.ts-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  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 */
.ts-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: 0.3s;
}

.ts-img:hover .ts-overlay {
  opacity: 1;
}

/* ICON BUTTONS */
.ts-overlay button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.ts-overlay button:hover {
  background: #7a1c1c;
  color: #fff;
}

.ts-overlay .cart {
  background: #7a1c1c;
  color: #fff;
  display: flex;
    justify-content: center;
    align-items: center;
}

/* TEXT */
.ts-card h3 {
  margin: 16px 0 6px;
  font-size: 17px;
}

.price del {
  color: #999;
}
.price span {
  font-weight: 600;
}

/* ADD TO CART */
.add-cart {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: #6b0f0f;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}


.product-section {
  padding: 60px 20px;
}

.product-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
}

/* LEFT GALLERY */
.main-img-box {
  background: #f6f9fc;
  padding: 20px;
  border-radius: 10px;
}

.main-img-box img {
  width: 100%;
  display: block;
}

.thumbs-row {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.thumb {
  width: 80px;
  height: 80px;
  background: #f6f9fc;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumb.active {
  border-color: #e11b22;
}

/* RIGHT CONTENT */
.category {
  color: #e11b22;
  font-size: 13px;
  letter-spacing: 1px;
}

.product-info h1 {
  font-size: 38px;
  margin: 10px 0;
}

.price del {
  color: #999;
  margin-right: 12px;
}

.price span {
  font-size: 22px;
  font-weight: bold;
  color: #e11b22;
}

.desc-t {
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
  max-width: 420px;
}

.cart-row {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty {
  display: flex;
  border: 1px solid #ddd;
}

.qty button {
  width: 42px;
  height: 42px;
  border: none;
  background: none;
  cursor: pointer;
}

.qty span {
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-cart-t {
  background: #e11b22;
  color: #fff;
  border: none;
  padding: 0 28px;
  height: 42px;
  cursor: pointer;
  font-size: 14px;
}
.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-info h2 {
  margin-top: 10px;
  font-size: 50px;
}

/* =========================
   PRODUCT HERO
========================= */
.product-hero {
  padding: 140px 0;
}

.product-hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}

.product-content h1 {
  font-size: 56px;
}

.price {
  color: #f05a4f;
}

/* =========================
   VIDEO HERO
========================= */
.hero {
  min-height: 80vh;
  background:url(../images/0.png);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.4); /* overlay color */
  z-index: 1;
}

.hero-content {
  position: absolute;
  text-align: center;
  max-width: 600px;
  z-index: 2;
}

.brand {
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #e11b22;
  font-size: 14px;
}

.hero-content h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 15px;
}

.desc {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cta {
  display: inline-block;
  background: #e60023;
  color: #fff;
  padding: 14px 30px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.cta:hover {
  background: #c5001d;
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  font-size: 32px;
  cursor: pointer;
  margin-bottom: 20px;
}

.play-btn:hover {
  background-color: #c5001d;
  color: #fff;
}

.product-highlight {
  background: #ffffff;
  padding: 90px 0;
}


.product-grids {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Text */
.product-tag {
  color: #f25c48;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.product-title {
  font-size: 48px;
  font-weight: 800;
  color: #2d3548;
  margin-bottom: 20px;
}

.product-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #7a8194;
  max-width: 520px;
}

/* Buy Area */
.product-buy {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.product-price {
  font-size: 36px;
  font-weight: 800;
  color: #f25c48;
  
}

.buy-btn {
  background: #f7b54a;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.buy-btn:hover {
  background: #e9a63f;
}

/* Image */
.product-image-wrap {
  display: flex;
  justify-content: center;
}

.circle-bg {
  width: 420px;
  height: 420px;
  background: #f5f6fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-bg img {
  max-height: 425px;
  object-fit: contain;
}


/* ================= FOOTER ================= */
.footer {
  background: #1f1f1f;
  color: #cfcfcf;
  font-family: 'Montserrat', sans-serif;
}

/* Newsletter */
.footer-newsletter {
  text-align: center;
  padding: 60px 20px;
}

.footer-newsletter h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 16px;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
  background: #2d2d2d;
  color: #fff;
}

.newsletter-form button {
  padding: 14px 30px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.footer-divider {
  height: 1px;
  background: #333;
  margin-bottom: 50px;
}



.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  background: #000;
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
}

/* Columns */
.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfcfcf;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Contact */
.contact-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.contact-list i {
  color: #fff;
}

/* Product Image - Global Standard Size */
.product-image,
.perfume-image,
.product-card .product-image,
.bs-img,
.ts-img,
.related-product-image,
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
	height: 300px !important;
	width: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: #f8f8f8 !important;
	overflow: hidden !important;
}

.product-image img,
.perfume-image img,
.product-card .product-image img,
.bs-img img,
.ts-img img,
.related-product-image img,
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
}

/* Quick View Button - Global Override */
button.quick-view-btn,
.quick-view-btn,
.product-overlay .quick-view-btn,
.perfume-overlay .quick-view-btn,
.bs-overlay .quick-view-btn,
.ts-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;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.3s ease;
	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;
	text-align: center !important;
}

button.quick-view-btn:hover,
.quick-view-btn:hover,
.product-overlay .quick-view-btn:hover,
.perfume-overlay .quick-view-btn:hover,
.bs-overlay .quick-view-btn:hover,
.ts-overlay .quick-view-btn:hover {
	background: #6b0f0f !important;
	border-color: #6b0f0f !important;
	color: #fff !important;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(107, 15, 15, 0.4) !important;
}

button.quick-view-btn i,
.quick-view-btn i,
.product-overlay .quick-view-btn i,
.perfume-overlay .quick-view-btn i,
.bs-overlay .quick-view-btn i,
.ts-overlay .quick-view-btn i {
	font-size: 12px !important;
	line-height: 1 !important;
	width: auto !important;
	height: auto !important;
	display: inline-block !important;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 50px;
  padding: 20px 0;
}

.bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-icons img {
  height: 28px;
  margin-left: 10px;
}
