body {
  font-family: 'Times New Roman', Times, serif;
  color: #171717;
}

html,
body {
  overflow-x: hidden;
}

body {
  padding-top: 68px;
}

section {
  scroll-margin-top: 68px;
}

/* Fixed Navbar */
.navbar.fixed-top {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

ul{
  font-size: 1.3rem;
}

/* Mobile menu */
@media (max-width: 991.98px) {

  .navbar-collapse {
    position: absolute !important;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  h1 {
    font-size: 1.9rem !important;
  }

  .btn222 {
    width: 100%;
  }

}

p {
  font-size: 1.3rem !important;
  line-height: 1.8 !important;
}

h1 {
  font-size: 3.8rem;
}

.logo {
  width: 100px;
}

.navbar-brand {
  letter-spacing: 2px;
}

.nav-link {
  color: #171717 !important;
  transition: 0.3s ease;
  font-size: 1.3rem;
}

.nav-link:hover {
  opacity: 0.6;
}


.btn {
  transition: all 0.3s ease;
}

.btn-dark:hover {
  transform: translateY(-2px);
}

.hero-image {
  overflow: hidden;
  border-radius: 24px;
}

.hero-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

@media (max-width: 991px) {


  .hero-image img {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .display-3 {
    font-size: 2.4rem;
  }

  .hero-image img {
    height: 380px;
  }
}





.product-card {
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image-wrapper {
  aspect-ratio: 1 / 1.08;
}

.product-image-wrapper img {

  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-wishlist {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.product-wishlist:hover {
  background: #171717 !important;
  color: #fff;
}

.product-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-overlay .btn {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
  .product-overlay {
    display: none;
  }
}

@media (max-width: 575px) {
  .product-image-wrapper {
    aspect-ratio: 1 / 1;
  }

  .product-wishlist {
    width: 38px;
    height: 38px;
  }
}

small {
  font-size: 1.1rem;
}



/* =========================
   SHOP BY CATEGORY
========================= */

.category-card {
  height: 480px;
  background: #ddd;
}

.category-card img {

  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.25) 45%,
      rgba(0, 0, 0, 0.05) 100%);
}

.category-content {
  z-index: 2;
}

.category-content h3 {
  font-size: 2rem;
}

.category-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.category-card:hover .category-link {
  padding-left: 8px;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .category-card {
    height: 420px;
  }
}

@media (max-width: 575px) {
  .category-card {
    height: 380px;
  }

  .category-content h3 {
    font-size: 1.7rem;
  }
}




/* =========================
   WHY CHOOSE US
========================= */

.benefit-card {
  border: 1px solid #eeeeee;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.benefit-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: #171717;
  color: #fff;
  transform: scale(1.08);
}

.benefit-card h5 {
  font-size: 1.1rem;
}

.trust-strip {
  border-top: 1px solid #eeeeee;
}

.trust-strip h3 {
  font-size: 1.8rem;
}

@media (max-width: 575px) {
  .benefit-card {
    padding: 30px 22px !important;
  }

  .trust-strip h3 {
    font-size: 1.5rem;
  }
}




/* =========================
   BEST SELLERS
========================= */

.best-product-card {
  border: 1px solid #eeeeee;
  transition: all 0.3s ease;
}

.best-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
}

.best-product-image {
  aspect-ratio: 1 / 1.05;
  background: #f1f1f1;
}

.best-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.best-product-card:hover .best-product-image img {
  transform: scale(1.06);
}

.best-wishlist {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.best-wishlist:hover {
  background: #171717 !important;
  color: #fff;
}

.best-product-action {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.best-product-card:hover .best-product-action {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .best-product-action {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 575px) {
  .best-product-image {
    aspect-ratio: 1 / 1;
  }

  .best-wishlist {
    width: 38px;
    height: 38px;
  }

  .best-product-action {
    padding: 12px;
  }
}



/* =========================
   CUSTOMER REVIEWS
========================= */

.review-card {
  background: #f7f7f7;
  border: 1px solid #eeeeee;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-stars {
  color: #f4b400;
  font-size: 14px;
}

.review-quote {
  font-size: 24px;
  color: #d5d5d5;
}

.review-text {
  color: #444;
  line-height: 1.5;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #171717;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .review-card {
    padding: 28px !important;
  }
}



/* =========================
   BRAND STORY
========================= */

.brand-story-image {
  min-height: 560px;
  background: #ddd;
}

.brand-story-image>img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.brand-story-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
}

.brand-story-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #171717;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .brand-story-image {
    min-height: 450px;
  }

  .brand-story-image>img {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .brand-story-image {
    min-height: 380px;
  }

  .brand-story-image>img {
    height: 380px;
  }

  .brand-story-badge {
    left: 15px;
    bottom: 15px;
  }
}



.tivano-offer-section {
  background: #f5f5f5;
}

.tivano-offer-box {
  max-width: 750px;
  border: 1px dashed #ff4d4d;
  background: #ffffff;
  padding: 32px 18px 18px;
}

.tivano-offer-title {
  color: #050505;
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
}

.tivano-offer-subtitle {
  color: #d90000;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.tivano-product-showcase {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tivano-product-image {
  display: block;
  width: 100%;
  max-width: 470px;
  height: 350px;
  object-fit: contain;
  object-position: center;
}

.tivano-guarantee-badge {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #f5b52e;
  border: 5px solid #f9d36b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-7deg);
}

.tivano-guarantee-badge::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px dashed #111111;
  border-radius: 50%;
}

.guarantee-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  color: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.guarantee-small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.guarantee-inner strong {
  font-size: 34px;
  font-weight: 900;
  line-height: 0.95;
}

.guarantee-day {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 2px;
}

.guarantee-bottom {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-top: 4px;
}

.tivano-offer-details {
  background: #fffaf3;
  border-radius: 5px;
  padding: 18px 15px 24px;
  text-align: center;
}

.tivano-discount-title {
  color: #050505;
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 800;
}

.tivano-discount-text {
  color: #d90000;
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 800;
}

.tivano-benefit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #222222;
  font-size: 18px;
  white-space: nowrap;
}

.tivano-benefit-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: #d8fae9;
  color: #00a95c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.tivano-offer-cta {
  display: inline-block;
  color: #00a653;
  font-size: clamp(19px, 3vw, 25px);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
}

.tivano-offer-cta:hover {
  color: #007d3f;
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .tivano-offer-box {
    padding: 25px 10px 12px;
  }

  .tivano-product-showcase {
    min-height: 280px;
  }

  .tivano-product-image {
    height: 280px;
    max-width: 100%;
  }

  .tivano-guarantee-badge {
    width: 100px;
    height: 100px;
    left: 0;
    bottom: 5px;
  }

  .guarantee-inner strong {
    font-size: 28px;
  }

  .guarantee-small {
    font-size: 8px;
  }

  .guarantee-day {
    font-size: 9px;
  }

  .guarantee-bottom {
    font-size: 7px;
  }

  .tivano-offer-details {
    padding: 18px 10px 22px;
  }

  .tivano-benefit {
    font-size: 16px;
    white-space: normal;
    justify-content: center;
  }

  .tivano-offer-cta {
    font-size: 18px;
  }
}






/* =========================
   FOOTER
========================= */

.site-footer {
  background: #111 !important;
}

.footer-brand {
  display: inline-block;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 3px;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-links li {
  margin-bottom: 13px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  padding-left: 3px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact i {
  color: #fff;
  margin-top: 3px;
  width: 16px;
}


.footer-bottom {
  background: #0b0b0b;
}

.payment-methods span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
}

@media (max-width: 767px) {
  .footer-heading {
    margin-bottom: 18px;
  }

  .footer-brand {
    font-size: 26px;
  }

  .footer-bottom {
    text-align: center;
  }

  .payment-methods {
    justify-content: center !important;
  }
}




/* =========================
   FAQ SECTION
========================= */

.faq-accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-bg: transparent;
}

.faq-accordion .accordion-item {
  border: 1px solid #e8e8e8;
  border-radius: 16px !important;
  overflow: hidden;
  background: #fff;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: #d5d5d5;
}

.faq-accordion .accordion-button {
  background: #fff;
  color: #171717;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 22px 25px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #171717;
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  width: 18px;
  height: 18px;
  background-size: 18px;
}

.faq-accordion .accordion-body {
  color: #666;
  line-height: 1.5;
  padding: 0 25px 24px;
  font-size: 1.3rem;
}

.faq-bottom {
  padding-top: 10px;
}

@media (max-width: 575px) {
  .faq-accordion .accordion-button {
    padding: 18px;
    padding-right: 50px;
  }

  .faq-accordion .accordion-body {
    padding: 0 18px 20px;

    line-height: 1.5;
  }

  .faq-accordion .accordion-button::after {
    position: absolute;
    right: 18px;
  }

  .iconn {
    display: none;
  }
}