/*
Theme Name: Stylez
Author:     Stylez
Template: storefront
*/
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair', serif;
    margin: 0;
    padding: 0;
}
.hero-header {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  /* Background image wrapper */
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Overlay ON TOP of image, BELOW content */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
  }
  
  /* Content should always be above overlay */
  .hero-content,
  #mainNav,
  .video-card {
    position: relative;
    z-index: 3;
  }
  #mainNav {
    position: relative;
    width: 100%;
    padding: 15px 0;
  }
  
  .nav-left,
  .nav-right {
    flex: 1; /* forces equal flex areas */
  }
  
  .nav-left {
    justify-content: flex-start;
  }
  
  .nav-right {
    justify-content: flex-end;
  }
  
  .nav-logo img.navbar-logo {
    height: 46px;
    width: auto;
  }
  .nav-logo {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Navbar Sticky */
  #mainNav.nav-scrolled {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
  }
  
  /* Hero content */
  .hero-content {
    margin-top: 12%;
    max-width: 650px;
    color: #fff;
    margin-left: 3rem;
  }
  
  /* Animations */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s ease forwards;
  }
  .fade-in:nth-child(1) { animation-delay: .2s; }
  .fade-in:nth-child(2) { animation-delay: .4s; }
  .fade-in:nth-child(3) { animation-delay: .6s; }
  
  .nav-link, .nav-icons a {
    color:#fff;
  }


  
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Video card */
  .video-card {
    bottom: 60px;
    right: 60px;
    border-radius: 10px;
  }
  .video-card .card {
    border-radius: 12px;
    overflow: hidden;
  }
  .video-card .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: #fff;
    color: #333;
    font-size: 2rem;
    border-radius: 50%;
    width: 55px;
    height: 55px;
  }
  
  /* Mobile menu */
  .offcanvas {
    background: #333;
  }
  .offcanvas .nav-link {
    color: #fff !important;
  }
  
  .hero-title {
    color:#fff;
    font-size: 4.3rem;
    line-height: 1;
  }
  .btn-primary {
    background-color: #3D85C6;
    border-color: #3D85C6;
  }
  .btn {
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  /* Responsive */

  /* Default navigation styles applied on Home (transparent header) */
.hero-header #mainNav {
  background: transparent;
  border-bottom: none;
}

/* (Inner Page Header) White background navigation */
.inner-page-header #mainNav {
  background: #ffffff !important;
  border-bottom: 1px solid #e7e7e7;
}

.inner-page-header #mainNav .nav-link,
.inner-page-header #mainNav .icon-link i {
  color: #222 !important;
}

.inner-page-header #mainNav.nav-scrolled {
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border-bottom-color: #e2e2e2;
}

  @media (max-width: 992px) {
    .video-card { display: none; }
    .logo { height: 48px; }
    .hero-title { font-size: 2.4rem; }
  }

  .promo-card {
    position: relative;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
  }
  
  .promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }
  
  /* Soft dark overlay */
  .promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
    transition: background .3s ease;
  }
  
  .promo-content {
    position: absolute;
    bottom: 25px;
    left: 30px;
    color: #fff;
    z-index: 2;
  }
  
  .promo-content h3 {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 10px;
  }
  
  .promo-cta {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    position: relative;
  }
  
  .promo-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: .6;
    transition: opacity .3s ease, transform .3s ease;
  }
  
  .promo-card:hover .promo-img {
    transform: scale(1.05);
  }
  
  .promo-card:hover .promo-overlay {
    background: rgba(0,0,0,0.45);
  }
  
  .promo-card:hover .promo-cta::after {
    opacity: 1;
    transform: scaleX(1.05);
  }
  
  /* Mobile layout */
  @media (max-width: 768px) {
    .promo-card {
      height: 300px;
    }
    .promo-content h3 {
      font-size: 1.6rem;
    }
  }

  .section-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
  }
  
  /* View All Button */
  .view-all-btn {
    background: #4a90e2;
    color: #fff;
    padding: .5rem 1.4rem;
    border-radius: 30px;
    font-size: .95rem;
    transition: background .3s ease;
  }
  .view-all-btn:hover {
    background: #3a79c0;
    color: #fff;
  }
  
  /* Product card */
  .product-card {
    cursor: pointer;
  }
  
  /* Image layout */
  .product-img-wrapper {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 28px;
    overflow: hidden;
  }
  
  .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
  }
  
  /* Hover zoom */
  .product-card:hover .product-img {
    transform: scale(1.05);
  }
  
  /* Title + Price */
  .product-title {
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2a2a2a;
  }
  
  .product-price {
    color: #6c6c6c;
    font-size: .95rem;
  }
  
  /* "New" Tag */
  .badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #59c57b;
    color: #fff;
    font-size: .75rem;
    padding: 5px 10px;
    border-radius: 12px;
    z-index: 2;
  }
  
  /* Responsive Cards */
  @media (max-width: 768px) {
    .product-img-wrapper {
      height: 300px;
    }
  }

  /* Banner Image */
.banner-img-wrapper {
  width: 100%;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.banner-img-wrapper:hover .banner-img {
  transform: scale(1.05);
}

/* Text content */
.max-w-800 {
  max-width: 800px;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #222;
  line-height: 1.3;
}

.banner-text {
  font-size: 1rem;
  color: #6b6b6b;
  margin-bottom: 28px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.banner-btn {
  padding: .75rem 2rem;
  border-radius: 32px;
  background-color: #4a90e2;
  border: none;
  font-size: .95rem;
  transition: background .3s ease, transform .2s ease;
}

.banner-btn:hover {
  background-color: #3a79c0;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .banner-img-wrapper {
    height: 270px;
  }
  .banner-title {
    font-size: 1.75rem;
  }
}

.wide-banner {
  border-radius: 28px;
  overflow: hidden;
  height: 420px;
}

/* Image */
.wide-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  position: relative;
  transition: transform .5s ease;
}

/* Dark Overlay */
.wide-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
  z-index: 2;
  transition: background .3s ease;
}

/* Text Layer */
.wide-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 3;
}

.wide-banner-title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 14px;
}

/* CTA link */
.wide-banner-cta {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}

.wide-banner-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: .6;
  transition: opacity .3s ease, transform .3s ease;
}

/* Hover effects */
.wide-banner:hover .wide-banner-img {
  transform: scale(1.05);
}
.wide-banner:hover .wide-banner-overlay {
  background: rgba(0,0,0,0.55);
}
.wide-banner:hover .wide-banner-cta::after {
  opacity: 1;
  transform: scaleX(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .wide-banner {
    height: 320px;
  }
  .wide-banner-title {
    font-size: 2rem;
  }
}

.fullwidth-banner {
  width: 100%;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Image */
.banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform .6s ease;
}

/* Overlay */
.banner-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 2;
}

/* Content */
.banner-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-content {
  max-width: 400px;
  color: #111;
}

.banner-heading {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.25;
  color: #222;
}

.banner-btn {
  background-color: #4a90e2;
  color: #fff;
  padding: .7rem 1.6rem;
  border-radius: 30px;
  font-size: 1rem;
  transition: background .3s ease, transform .25s ease;
}

.banner-btn:hover {
  background-color: #3a79c0;
  transform: translateY(-2px);
}

/* Hover effect */
.fullwidth-banner:hover .banner-bg-img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .fullwidth-banner {
    height: 350px;
  }
  .banner-heading {
    font-size: 1.9rem;
  }
}

.features-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin:auto;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.feature-text {
  font-size: .95rem;
  color: #7b7b7b;
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.site-footer {
  background: #f3f5fa;
  color: #222;
  font-size: 15px;
}

.footer-newsletter {
  padding: 60px 0 40px;
}

.footer-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.footer-subtext {
  color: #555;
  margin-bottom: 24px;
}

/* Form */
.email-input {
  padding: 12px 18px;
  min-width: 320px;
  border: 1px solid #ccc;
  border-radius: 30px 0 0 30px;
  outline: none;
}
.subscribe-btn {
  border-radius: 0 30px 30px 0;
  background: #4a90e2;
  color: #fff;
  padding: 12px 24px;
}

.footer-divider {
  margin: 0 auto 40px;
  border: none;
  border-top: 1px solid #ddd;
  width: 90%;
}

/* Contact */
.footer-logo {
  height: 48px;
}
.footer-label {
  font-weight: 600;
  margin-bottom: 0;
}
.footer-info {
  color: #555;
  margin-bottom: 10px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #222;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Social Icons */
.footer-socials a {
  font-size: 1.25rem;
  color: #222;
}
.footer-socials a:hover {
  opacity: .6;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #ddd;
}
.footer-bottom-links a {
  text-decoration: none;
  color: #222;
}
.footer-bottom-links a:hover {
  text-decoration: underline;
}
.footer-payments img {
  height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 15px;
  }
  .email-input {
    min-width: 200px;
  }
}

.inner-page-header .nav-link, .inner-page-header .nav-icons a {
    color:#000;
  }

  /* Ensure no old widths/floats from WooCommerce fight with Bootstrap layout */
.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
    width: 100% !important;
    float: none !important;
}
/* === 2-column gallery layout WITH new WC markup === */

/* Container remains full width */
.single-product div.product .woocommerce-product-gallery {
  margin-bottom: 30px;
}

/* Create grid inside the wrapper */
.single-product div.product .woocommerce-product-gallery__wrapper {
  display: grid !important;
  grid-template-columns: 90px 1fr; /* thumbs left, image right */
  gap: 16px;
  align-items: flex-start;
}

/* Main image forced to right column */
.single-product div.product 
.woocommerce-product-gallery__image:first-child {
  grid-column: 2;
}

/* Thumbnails on left */
.single-product div.product 
.woocommerce-product-gallery .flex-control-thumbs {
  grid-column: 1;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove bullets/numbers */
.single-product div.product 
.woocommerce-product-gallery .flex-control-thumbs li {
  list-style: none;
}

/* Make thumbs fit */
.single-product div.product 
.woocommerce-product-gallery .flex-control-thumbs img {
  width: 100% !important;
  height: auto !important;
  border-radius: 6px;
  cursor: pointer;
}

.entry-header .entry-title, .woocommerce-products-header__title.page-title {
  font-size: 3.5rem;
  text-align: center;
  padding:2.5rem 0;
}
.product_title {
  padding-top:2rem;
}

.cart {
  display: flex;
}

.promo-content h3, .wide-banner-title {
  color:#fff
}

.product-img, ul.products li.product img, ul.products .wc-block-grid__product img, .wc-block-grid__products li.product img, .wc-block-grid__products .wc-block-grid__product img {
  border-radius: 20px;
}
.category-nav {
  padding: 0;
  margin: 20px 0;
}

.category-nav .list-inline-item {
  margin: 0 10px;
  font-size: 16px;
}

.category-nav .cat-link {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color .2s ease;
}

.category-nav .cat-link:hover,
.category-nav .cat-link.active,
.category-nav .cat-link:focus {
  color: #000;
  text-decoration: underline;
}

