:root {
  --primary: #fccc64;
}

.shadow-lg {
  box-shadow: inset 0 40px 30px rgba(151, 130, 52, 0.5) !important;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: 0.3s all ease-in-out;
}

input {
  outline: 0;
}

body {
  font-family: "Lato", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

.bg-secondary {
  background-color: #191919 !important;
}

a {
  color: white;
  text-decoration: none;
}

.bg-primary {
  background: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.section-heading {
  position: relative;
  width: auto;
}

.section-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -220px;
  background-color: #808080;
  width: 200px;
  height: 2px;
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 120px);
  transform: translateX(-50%);
  background-color: #808080;
  width: 200px;
  height: 2px;
}

@media only screen and (max-width: 692px) {
  .section-heading::before,
  .section-heading::after {
    display: none;
  }
}

/* Header */
#header .topbar {
  background-color: var(--primary);
  height: 55px;
}

#header .topbar .text {
  position: relative;
}

#header .topbar .text::after {
  content: "Flat 20% off on Lakme India Products";
  position: absolute;
  top: calc(50% + 5px);
  left: 50%;
  z-index: 1;
  width: 100%;
  font-size: 16px;
  /* Use font-size instead of font-style for text size */
  color: #000;
  text-align: center;
  font-weight: bold;
  transform: translate(-50%, -50%);
  /* Center vertically and horizontally */
  opacity: 0;
  transition: 0.5s all ease-in-out;
  animation: change 12s ease-in-out infinite;
}

@media only screen and (max-width: 692px) {
  #header .topbar .text::after {
    font-size: 10px;
    text-align: center;
    top: calc(50% + 12px);
  }
}

@keyframes change {
  0%,
  32% {
    content: "Get up to Rs. 250/- Cashback on paying via Mobikwik Wallet";
    opacity: 1;
    transform: translate(-50%, 0);
    /* Fade left */
  }

  33% {
    opacity: 0;
    transform: translate(-50%, -50%);
    /* Reset to center while fading out */
  }

  34%,
  65% {
    content: "Buy 1 get 1 free on selected products";
    opacity: 1;
    transform: translate(-50%, 0);
    /* Fade left */
  }

  66% {
    opacity: 0;
    transform: translate(-50%, -50%);
    /* Reset to center while fading out */
  }

  67%,
  99% {
    content: "Flat 20% off on Ocean Beauty Products";
    opacity: 1;
    transform: translate(-50%, 0);
    /* Fade left */
  }
}

/* Navbar */
#header .navbar .dropdown-btn {
  position: relative;
}

#header .navbar .dropdown-btn:hover .dropdown {
  display: block;
}

#header .navbar .dropdown-btn .dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  padding: 40px 20px;
  width: 90vw;
  z-index: 9;
  display: none;
  height: 600px;
  /*background-color: black;*/
}

#header .navbar .search {
  background-color: #fff;
  padding: 10px 20px;
  border: 2px solid #000;
  border-radius: 25px;
}

#header .navbar .search input {
  background-color: transparent;
  border: 0;
}

#header .navbar .search input::placeholder {
  color: #999;
  font-weight: bold;
}

@media (max-width: 768px) {
  .home-holy {
    height: auto !important;
  }
  .home-holy-logo {
    width: 100% !important;
    margin-top: -20px;
    margin-left: 100px;
  }
}

@media (max-width: 1024px) {
  .home-holy {
    height: auto !important;
  }
  .home-holy-logo {
    width: 265px;
    position: relative;
    left: -265px;
    top: 5x;
  }
}

/* Cateogory */
.swiper {
  width: 100%;
  height: 135px;
  /* Adjust height as needed */
  /* padding: 20px 0; */
}

.swiper-slide {
  /* background: #fff; */
  /* border-radius: 10px; */
  /* Rounded corners for stories */
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.swiper-slide img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #000;
  outline: 5px solid var(--primary);
}

/* Banner */
.slick-prev,
.slick-next {
  color: var(--primary) !important;
  width: 50px;
  background-color: transparent;
  border: none;
  height: 50px;
  position: absolute;
  top: 50%;
  z-index: 99;
  transform: translate(-70%, -50%);
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0%;
  transform: translate(60%, -50%);
}

/* Shop By Category */
/* Style the tab buttons */
.tablink {
  background-color: #272727;
  color: white;
  border: none;
  border-radius: 50px;
  outline: none;
  cursor: pointer;
  margin: 0 6px;
  padding: 8px 16px;
  font-size: 15px;
}

/* Change background color of buttons on hover */
.tablink:hover {
  background-color: var(--primary);
}

/* Set default styles for tab content */
.tabcontent {
  color: white;
  display: none;
  /* padding: 50px; */
  text-align: center;
}

/* products */
/*.team-member {*/
/*  background-color: #272727;*/
/*  overflow: hidden;*/
/*  color: white;*/
/*  border-radius: 5px;*/
/*  box-shadow: 0px 2px 15px rgba(255, 255, 255, 0.1);*/
/*  height: 100%;*/
/*}*/

.team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team-member:hover .img1 {
  display: none;
}

.team-member:hover .img2 {
  display: block !important;
}

.team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team-member .shades {
  margin-top: 20px;
}

.shade-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin: 5px;
  outline: none;
  transition: transform 0.3s ease;
}

.shade-btn:hover {
  transform: scale(1.2);
}

.team-member .social a {
  background: color-mix(in srgb, var(--primary), transparent 25%);
  color: color-mix(in srgb, #000, transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team-member .social a:hover {
  color: var(--contrast-color);
  background: black;
}

.team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team-member .member-info {
  padding: 25px 15px;
}

.team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: white;
}

.team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

.team-member .cate {
  background-color: var(--primary);
}

.team-member .color1,
.color2,
.color3 {
  display: inline-flex;
  background-color: red;
  border-radius: 50%;
  border: 2px solid var(--primary);
  width: 30px;
  height: 30px;
}

.team-member .disabled-product {
  background-color: #978252 !important;
  cursor: not-allowed;
}

/* mobile product */
@media only screen and (max-width: 692px) {
  .team-member .member-info {
    padding: 10px 5px;
  }

  .team-member .member-info h6 {
    font-size: 14px;
  }

  .team-member .cate {
    font-size: 12px !important;
    padding: 5px 10px !important;
  }

  .team-member button {
    font-size: 12px;
  }
}

/* mobile product end */
.btn-outline-primary {
  /*background-color: var(--primary);*/
  border: 1px solid var(--primary);
  color: black;
  font-weight: bold;
}

.btn-outline-primary:hover {
  color: #fff;
  border: 1px solid var(--primary);
  font-weight: bold;
  background: linear-gradient(135deg, #976c17, #fccc64);
}

/* policy */
.policy .card img {
  padding: 10px;
  border: 2px solid var(--primary);
  border-radius: 50%;
}

/* quantity button */
.quantity-container {
  display: flex;
  align-items: center;
}

.quantity-button {
  background-color: rgb(213, 185, 122);
  color: white;
  border: none;
  padding: 0 10px;
  cursor: pointer;
  font-size: 18px;
}

.quantity-display {
  margin: 0 10px;
  font-size: 14px;
}

::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */
}

#product-overview-info::-webkit-scrollbar {
  width: 0;
}

::-webkit-scrollbar-track {
  background: #2b2a2a;
  /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  /* Color of the scrollbar thumb */
  border-radius: 0px;
  /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* Color of the thumb on hover */
}

.slider-container {
  /* width: 60%; */
  margin: auto;
}

.product-slider img {
  width: 100%;
  height: auto;
}

.thumbnail-slider img {
  width: 100%;
  height: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumbnail-slider .slick-current img {
  border: 2px solid #333;
  width: 98%;
}

/* product-overview-details */
.product-card {
  width: 100%;
  /* padding: 20px; */
  border-radius: 8px;
}

.product-image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.color-selection {
  margin: 15px 0;
}

.color-option {
  margin: 5px;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s;
}

.color-option:hover {
  background-color: #ddd;
}

.quantity-control {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  margin: 15px 0;
}

.quantity-btn {
  padding: 0px 20px;
  font-size: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.quantity {
  margin: 0 10px;
}

.total-price {
  font-size: 1.5em;
  color: #333;
}

/* slick */
.slick-next::before,
.slick-prev::before {
  color: var(--primary);
  opacity: 1;
  line-height: 3;
}

/* Add Css 2026 */
/* ===============================
   SECTION
================================ */
.ubc-section {
  background: #fdfdfd;
  padding: 60px 0;
}

/* ===============================
   SECTION HEADING
================================ */
.ubc-heading {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* spacing between lines and text */
  position: relative;
  text-transform: uppercase;
}

.ubc-heading b {
  color: #d5b97a;
}

/* Decorative lines */
.ubc-line {
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d5b97a, #b99a5f);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hover animation */
.ubc-heading:hover .ubc-line {
  width: 120px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ubc-heading {
    font-size: 26px;
    gap: 10px;
  }
  .ubc-line {
    width: 60px;
  }
  .ubc-heading:hover .ubc-line {
    width: 90px;
  }
}

@media (max-width: 576px) {
  .ubc-heading {
    font-size: 16px;
    gap: 8px;
  }
  .ubc-line {
    width: 40px;
  }
  .ubc-heading:hover .ubc-line {
    width: 70px;
  }
}

/* tabs */
.ubc-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.ubc-tablink {
  background: #f5f5f5;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.ubc-tablink:hover,
.ubc-tablink.active {
  background: #d5b97a;
  color: #fff;
}

/* ===============================
   PRODUCT CARD
================================ */
.ubc-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
}

.ubc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ===============================
   IMAGE AREA + HOVER EFFECT
================================ */
.ubc-card-img {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.ubc-product-img img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.ubc-card:hover .ubc-product-img img {
  transform: scale(1.12);
}

/* PRODUCT BADGE */
.ubc-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d5b97a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  z-index: 2;
}

/* ===============================
   ACTION ICONS (slide-up)
================================ */
.ubc-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: bottom 0.35s ease;
}

.ubc-card:hover .ubc-actions {
  bottom: 0;
}

.ubc-actions a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.ubc-actions a:hover {
  background: #d5b97a;
  color: #fff;
  transform: translateY(-3px) scale(1.1);
}

/* ===============================
   CARD BODY
================================ */
.ubc-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ubc-card-body h6 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.ubc-stock {
  font-size: 13px;
  color: #2e7d32;
  margin-bottom: 8px;
}

.ubc-card-body p {
  font-size: 15px;
  margin-bottom: 12px;
}

.ubc-card-body del {
  font-size: 13px;
  color: #888;
}

/* ===============================
   BUTTONS
================================ */
.ubc-card-body .btn {
  margin-top: auto;
  border-radius: 30px;
  font-size: 14px;
  padding: 12px;
  transition: all 0.35s ease;
}

.ubc-card-body .btn-dark {
  background: linear-gradient(135deg, #976c17, #fccc64);
  color: #fff;
  border: none;
}

.ubc-card-body .btn-dark:hover {
  background: linear-gradient(135deg, #d5b97a, #b99a5f);
  color: #fff;
}

.ubc-card-body .btn-success {
  cursor: default;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .ubc-product-img img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .ubc-product-img img {
    height: 220px;
  }

  .ubc-card-body h6 {
    font-size: 15px;
  }

  .ubc-actions {
    bottom: 0;
    /* always visible on mobile */
  }
}

@media (max-width: 576px) {
  .ubc-product-img img {
    height: 200px;
    object-fit: contain !important;
  }

  .ubc-actions a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* next section css add */
/* ===============================
   Section Styling
================================ */
.popular-section {
  background: #fff;
  padding: 60px 0;
}

.popular-heading {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* spacing between lines and text */
  position: relative;
}

.popular-heading b {
  color: #d5b97a;
}

/* Lines on both sides */
.popular-heading .line {
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d5b97a, #b99a5f);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hover effect */
.popular-heading:hover .line {
  width: 120px;
}

/* Responsive */
@media (max-width: 768px) {
  .popular-heading {
    font-size: 26px;
    gap: 10px;
  }

  .popular-heading .line {
    width: 60px;
  }

  .popular-heading:hover .line {
    width: 90px;
  }
}

@media (max-width: 576px) {
  .popular-heading {
    font-size: 22px;
    gap: 8px;
  }

  .popular-heading .line {
    width: 40px;
  }

  .popular-heading:hover .line {
    width: 70px;
  }
}

/* ===============================
   Product Card Styling
================================ */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Image */
.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  /* height: 250px; */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

/* Action Buttons */
.product-actions {
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  visibility: visible;
}

.product-actions a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.product-actions a:hover {
  background: #d5b97a;
  color: #fff;
  transform: translateY(-3px);
}

/* Info */
.product-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.product-stock {
  font-size: 13px;
  color: #2e7d32;
  margin-bottom: 6px;
}

.product-price {
  font-size: 15px;
  margin-bottom: 12px;
}

.product-price del {
  color: #000;
  margin-left: 5px;
}

/* Buttons */
.product-info .btn {
  border-radius: 30px;
  padding: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.product-info .btn-dark:hover {
  background: #d5b97a;
  border-color: #d5b97a;
}

.product-info .btn-success {
  cursor: default;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 992px) {
  .product-img img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .popular-heading {
    font-size: 28px;
  }
  .product-img img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .product-img img {
    height: 200px;
  }
  .product-actions a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* List css add */

/* Main Wrapper */
.ao-creative-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Header */
.ao-creative-header {
  background: linear-gradient(135deg, #fccc64, #240b36) !important;
  color: #fff;
  text-align: center;
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Table */
.ao-creative-table {
  margin: 0;
}

.ao-creative-table thead th {
  background: #f4f6f8;
  font-size: 14px;
  text-transform: uppercase;
  color: #555;
  border: none;
  padding: 14px;
}

.ao-creative-table tbody tr {
  transition: all 0.3s ease;
}

.ao-creative-table tbody tr:hover {
  background: #fafafa;
  transform: scale(1.01);
}

.ao-creative-table td {
  border-top: 1px solid #eee;
  padding: 16px;
  font-size: 14px;
  vertical-align: middle;
}

/* Price */
.ao-creative-price {
  color: #c31432;
  font-weight: 700;
  font-size: 15px;
}

/* Button */
.ao-creative-btn {
  background: #fccc64;
  border: none;
  color: #fff;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 20px;
  transition: 0.3s;
  white-space: nowrap;
}

.ao-creative-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Footer Navigation */
.ao-creative-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  font-size: 13px;
}

.ao-creative-footer a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.ao-creative-footer a:hover {
  color: #c31432;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .ao-creative-table thead {
    display: none;
  }

  .ao-creative-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
  }

  .ao-creative-table td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: none;
  }

  .ao-creative-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #555;
  }

  .ao-creative-btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   GLOBAL PRODUCT PAGE
========================= */
/* .product-overview {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
} */

.product-card {
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Product Title */
.product-name {
  font-size: 28px;
  letter-spacing: 0.5px;
}

/* Price */
.product-price-change {
  color: #ffcc00;
  font-weight: 700;
}

/* Color / Shade buttons */
.color-selection {
  margin-top: 20px;
}

.color-option {
  border-radius: 10px;
  border: none;
  margin: 5px;
  min-width: 120px;
  transition: 0.3s;
}

.color-option:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Quantity Box */
.qtyField {
  display: inline-flex;
  align-items: center;
  /*background: #111;*/
  border-radius: 30px;
  overflow: hidden;
}

.qtyField input {
  background: transparent;
  border: none;
  color: #fff;
  width: 60px;
}

/* Total Price */
.total-price-change {
  font-weight: 700;
  font-size: 18px;
}

/* =========================
   CREATIVE OFFER TABLE
========================= */
.ao-creative-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.ao-creative-header {
  background: linear-gradient(135deg, #c31432, #240b36);
  color: #fff;
  text-align: center;
  padding: 22px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ao-creative-table thead th {
  background: #f4f6f8;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  color: #555;
}

.ao-creative-table tbody tr {
  transition: 0.3s;
}

.ao-creative-table tbody tr:hover {
  background: #fafafa;
  transform: scale(1.01);
}

.ao-creative-table td {
  padding: 18px;
  font-size: 14px;
  border-top: 1px solid #eee;
}

.ao-creative-price {
  color: #c31432;
  font-weight: 800;
  font-size: 16px;
}

/* Button */
.ao-creative-btn {
  background: linear-gradient(135deg, #56ccf2, #2f80ed);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 13px;
  transition: 0.3s;
}

.ao-creative-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(47, 128, 237, 0.4);
}

/* Footer nav */
.ao-creative-footer {
  background: #f8f9fa;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.ao-creative-footer a {
  text-decoration: none;
  color: #333;
}

.ao-creative-footer a:hover {
  color: #c31432;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .product-name {
    font-size: 22px;
  }

  .ao-creative-table thead {
    display: none;
  }

  .ao-creative-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
  }

  .ao-creative-table td {
    display: flex;
    justify-content: space-between;
    border: none;
    padding: 10px;
  }

  .ao-creative-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #555;
  }

  .ao-creative-btn {
    width: 100%;
  }
}

/* Tracking Order Details Css  */
/* Form */
.tracking-form-wrapper {
  max-width: 600px;
  margin: 0 auto 50px;
}

.tracking-form {
  display: flex;
  gap: 15px;
}

.tracking-form input[type="text"] {
  flex: 1;
  padding: 18px 25px;
  font-size: 1.2rem;
  border-radius: 12px;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  outline: none;
}

.tracking-form input[type="text"]::placeholder {
  color: #aaa;
  font-weight: 500;
}

.tracking-form input[type="text"]:focus {
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.95);
}

.tracking-form button {
  padding: 18px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  background: #fccc64;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.tracking-form button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Tracker */
.progress-tracker {
  gap: 1rem;
}

.step {
  position: relative;
  flex: 1;
  padding-bottom: 30px;
}

.icon-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #888;
  transition:
    background-color 0.3s,
    color 0.3s;
  z-index: 1;
}

.icon-wrapper.completed {
  background: #28a745;
  color: white;
}

.icon-wrapper .main-icon {
  z-index: 1;
}

.checkmark {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #28a745;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 2px solid white;
  z-index: 2;
}

.label {
  font-size: 0.9rem;
  color: #333;
}

.connector {
  position: absolute;
  top: 22px;
  right: -60%;
  height: 6px;
  width: 100%;
  background: #ddd;
  z-index: 0;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.connector.completed {
  background: #28a745;
}

/* Responsive */
@media (max-width: 576px) {
  .tracking-form {
    flex-direction: column;
  }

  .tracking-form input,
  .tracking-form button {
    width: 100%;
  }

  .progress-tracker {
    flex-direction: column;
    gap: 2rem;
    padding-left: 20px;
    position: relative;
  }

  .step {
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .icon-wrapper {
    margin: 0;
  }

  .label {
    font-size: 1rem;
    color: white;
  }

  .connector {
    position: absolute;
    top: 45px;
    left: 22px;
    width: 6px;
    height: 70px;
    border-radius: 3px;
  }
}

/*popular products css */
/* Card Wrapper */
.white-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  color: #333;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.white-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 250px;
  /* object-fit: cover; */
  transition: transform 0.4s ease;
}

.white-card:hover .card-image img {
  transform: scale(1.05);
}

/* Action Buttons */
.card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-actions a {
  width: 36px;
  height: 36px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card-actions a:hover {
  background: #fccc64;
  color: #000;
  transform: scale(1.2);
}

.liked {
  color: red !important;
}

.cart-added {
  color: #28a745;
}

/* Discount Badge */
.badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4b5c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
}

/* Card Body */
.card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-shades {
  font-size: 13px;
  color: #28a745;
  margin-bottom: 10px;
}

.product-price {
  font-size: 14px;
  margin-bottom: 12px;
}

.current-price {
  font-weight: 700;
  color: green;
  margin-right: 6px;
}

.original-price {
  opacity: 0.6;
}

/* Buttons */
.btn-dark,
.btn-success {
  border-radius: 50px;
  font-weight: 600;
  padding: 13px 46px;
  transition: 0.3s;
  background: linear-gradient(135deg, #976c17, #fccc64);
  border: none;
}

.btn-dark:hover {
  background: #fccc64;
  color: #000;
}

@media (max-width: 768px) {
  .btn-dark,
  .btn-success {
    padding: 10px;
    font-size: 15px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .card-image img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .card-image img {
    height: 180px;
    object-fit: contain;
  }
  .card-actions a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .product-title {
    font-size: 15px;
  }
}

/* cart icon css */
.cart-badge {
  position: absolute;
  top: 35px;
  /*right: 156px;*/
  background: #cf932b;
  color: #fff;
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 50%;
}

@media (max-width: 576px) {
  .cart-badge {
    right: 35px;
    top: 56px !important;
  }

  .cart-icon {
    position: relative;
    left: 50px;
  }

  .cart-icon-heart {
    position: relative;
    left: 42px;
  }

  .badge-style {
    position: absolute;
    top: -14px;
    right: -42px !important;
    background: #cf932b;
    color: #fff;
    font-size: 9px;
    padding: 3px 7px;
    border-radius: 50%;
  }

  .cart-icon-truck {
    position: relative;
    left: 38px;
  }
}

/* Whislist css */
.badge-style {
  position: absolute;
  top: -14px;
  right: 2px;
  background: #cf932b;
  color: #fff;
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 50%;
}

/* Add My Css */
/* Category css Start */
.category-section {
  background: #f7f7f7;
  padding: 15px 0;
  overflow: hidden;
}

/* SLICK SPACING */
.category-slider .slick-slide {
  padding: 0 8px;
}

.category-slider .slick-list {
  margin: 0 -8px;
}

/* CARD */
.category-card {
  display: block;
  text-align: center;
  text-decoration: none;
  transition: all 0.35s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.category-img {
  width: 76px;
  height: 76px;
  margin: auto;
  border-radius: 50%;
  padding: 3px;
  position: relative;

  background: linear-gradient(135deg, #c89b2b, #f5dfa0, #b8860b);

  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 0 10px rgba(200, 155, 43, 0.2);

  overflow: hidden;
  transition: 0.35s ease;
}

.category-img::before {
  content: "";
  position: absolute;
  inset: 3px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

/* SHINE EFFECT */
.shine {
  position: absolute;
  top: -120%;
  left: -40%;
  width: 35px;
  height: 220%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(25deg);
  z-index: 3;
  transition: 0.7s;
}

.category-card:hover .shine {
  left: 130%;
}

.category-card:hover .category-img {
  transform: scale(1.08);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.14),
    0 0 16px rgba(200, 155, 43, 0.35);
}

/* TITLE */
.category-title {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  transition: 0.3s ease;
}

.category-card:hover .category-title {
  color: #b8860b;
}

/* TABLET */
@media (max-width: 768px) {
  .category-img {
    width: 65px;
    height: 65px;
  }

  .category-title {
    font-size: 11px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .category-section {
    padding: 10px 0;
  }

  .category-img {
    width: 56px;
    height: 56px;
  }

  .category-title {
    font-size: 10px;
    margin-top: 6px;
  }
}

/* End */

/* Banner Css */
.banner {
  width: 100%;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

/* End */

/* Shop By Popular Product Css */
.white-card {
  height: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* FIX IMAGE SIZE */
.card-image-fixed {
  width: 100%;
  /* height: 220px; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}

.card-image-fixed img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* BODY FIX */
.white-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* TITLE FIX */
.product-title {
  font-size: 15px;
  min-height: 40px;
  overflow: hidden;
}

/* PRICE FIX */
.product-price {
  margin-bottom: 10px;
}

/* BUTTON ALWAYS SAME POSITION */
.white-card .btn {
  border-radius: 8px;
}

/* End */

/* ===== Service Bar ===== */
.service-bar {
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* ===== Card Style ===== */
.service-item {
  padding: 25px 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
  height: 100%;
  position: relative;
}

/* Subtle shadow hover */
.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ===== Icon ===== */
.icon-wrapper {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-wrapper i {
  font-size: 26px;
  color: #666;
  transition: all 0.3s ease;
}

/* Icon hover effect */
.service-item:hover .icon-wrapper {
  background: linear-gradient(135deg, #976c17, #fccc64);
}

.service-item:hover .icon-wrapper i {
  color: #fff;
  transform: scale(1.1);
}

/* ===== Text ===== */
.service-item h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.service-item p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 576px) {
  .service-item {
    padding: 20px 10px;
  }

  .icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .icon-wrapper i {
    font-size: 22px;
  }

  .service-item h6 {
    font-size: 13px;
  }

  .service-item p {
    font-size: 12px;
  }
}

.policy {
  /* background: linear-gradient(90deg, #020617, #1e293b); */
  background-color: #000;
}

.policy-card {
  background: transparent;
  color: white;
  padding: 20px;
  border-radius: 18px;
  transition: 0.35s;
}

.policy-card img {
  width: 60px;
  margin-bottom: 12px;
}

.policy-card h5 {
  font-weight: 700;
  margin-bottom: 4px;
}

.policy-card p {
  font-size: 14px;
  opacity: 0.8;
}

.policy-card:hover {
  transform: translateY(-6px);
}

/* ===== Base Section ===== */
.hh-newsletter-section {
  padding: 60px 15px;
  background: #f9f9f9;
}

/* Optional container (if not using Bootstrap) */
.hh-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== Card Layout ===== */
.hh-newsletter-card {
  display: flex;
  flex-wrap: wrap;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* ===== Left Image ===== */
.hh-newsletter-media {
  flex: 1;
  min-height: 420px;
  background: url("../../images/candel-1.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.hh-newsletter-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

/* Overlay Text */
.hh-overlay-content {
  position: relative;
  color: #fff;
  padding: 40px;
}

.hh-overlay-content h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

.hh-overlay-content p {
  font-size: 14px;
  opacity: 0.85;
}

/* ===== Right Form ===== */
.hh-newsletter-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hh-form-box {
  width: 100%;
  max-width: 420px;
  padding: 50px 30px;
  text-align: center;
}

.hh-form-box h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.hh-form-box h2 span {
  color: #d5b97a;
}

.hh-form-box p {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

/* ===== Inputs ===== */
.hh-input-group {
  margin-bottom: 15px;
}

.hh-input-group input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  transition: 0.3s;
}

.hh-input-group input:focus {
  border-color: #d5b97a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(213, 185, 122, 0.2);
}

/* ===== Checkbox ===== */
.hh-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #777;
  text-align: left;
  margin-bottom: 20px;
}

/* ===== Button ===== */
.hh-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #976c17, #fccc64);
  transition: 0.3s;
}

.hh-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== Footer Note ===== */
.hh-note {
  display: block;
  margin-top: 15px;
  color: #999;
  font-size: 11px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hh-newsletter-media {
    display: none;
  }

  .hh-newsletter-card {
    border-radius: 12px;
  }

  .hh-form-box {
    padding: 35px 20px;
  }
}

@media (max-width: 576px) {
  .hh-newsletter-section {
    padding: 40px 10px;
  }

  .hh-form-box h2 {
    font-size: 22px;
  }

  .hh-input-group input {
    padding: 12px;
  }

  .hh-submit-btn {
    padding: 12px;
  }
}
