/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Child theme custom styles.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP Child Theme
Author: Your Name
Author URI: https://yourwebsite.com
Template: oceanwp
Version: 1.0.0
Text Domain: oceanwp-child
*/

/* ============================================
   IMPORTANT: Paste ALL your custom CSS below
   ============================================ */

/* Global Fixes */
#main .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Global font */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Fade-in Animation */
.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Banner / Hero Slider */
#bannerSlider {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 720px;
  overflow: hidden;
  box-sizing: border-box;
}
#bannerTrack {
  display: flex;
  height: 100%;
  transition: transform 0.85s cubic-bezier(.25,.8,.25,1);
  will-change: transform;
}
#bannerSlider .banner-slide {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  padding: 36px 48px;
  box-sizing: border-box;
}
#bannerSlider .banner-slide.s1 { background: linear-gradient(135deg,#0b0b0b 0%,#4b4b4b 100%); }
#bannerSlider .banner-slide.s2 {
 background: #000;
}
#bannerSlider .banner-slide.s3 { background: linear-gradient(135deg,#40124f 0%,#d08be0 100%); }
#bannerSlider .banner-slide.s4 {
	background: linear-gradient(135deg, #3e1f0a 0%, #8B4513 50%, #d29b6b 100%);
}
#bannerSlider .banner-slide.s5 { background: linear-gradient(135deg,#22004a 0%,#a58bff 100%); }
#bannerSlider .banner-slide.s6 { 
	background: linear-gradient(135deg, #6e6a38 0%, #BDB76B 50%, #f5f2c2 100%); 
}

#bannerSlider .text-content { z-index: 2; padding-left: 12px; color: #fff; }
#bannerSlider .banner-title {
  margin: 0 0 15px;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
}
#bannerSlider .banner-subtitle {
  margin: 0 0 25px;
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
}
#bannerSlider .shop-now-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg,#3498db 0%,#9b59b6 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
#bannerSlider .shop-now-btn:hover { transform: translateY(-3px); }

#bannerSlider .image-content { display:flex; align-items:center; justify-content:center; }
#bannerSlider .image-content img {
  height: calc(100% - 72px);
  max-width: 75%;
  object-fit: contain;
  transition: transform .45s ease;
}
#bannerSlider .banner-slide.active img { transform: scale(1.04); }

#bannerSlider #sliderDots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  gap:10px;
  z-index: 5;
}
#bannerSlider #sliderDots button {
  width:12px; height:12px; border-radius:50%; border:none;
  background: rgba(255,255,255,0.45); cursor:pointer;
}
#bannerSlider #sliderDots button.active { background:#fff; transform:scale(1.25); }

@media (max-width:900px) {
  #bannerSlider .banner-slide { display:flex; flex-direction:column; padding:18px; gap:12px; text-align:center; }
  #bannerSlider .banner-title { font-size:36px; }
  #bannerSlider { height: 560px; }
}
@media (max-width:600px) {
  #bannerSlider .banner-title { font-size:28px; }
  #bannerSlider { height: 480px; }
}

/* Accessories Grid */
.shop-by-categories {
  max-width: 1400px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #9c292905;
  border-radius: 12px;
  text-align: center;
  box-sizing: border-box;
}
.shop-by-categories .shop-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 40px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid #ef4444;
}
.shop-by-categories .category-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0,1fr)) !important;
  gap: 30px;
  justify-items: center;
  align-items: start;
}
.shop-by-categories .category-card {
  width: 100%;
  max-width: 260px;
  background: transparent;
  text-align: center;
  padding: 10px;
  transition: transform .28s ease, box-shadow .28s ease;
}
.shop-by-categories .category-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
  transition: transform .28s ease;
}
.shop-by-categories .category-card:hover img { transform: scale(1.05); }
.shop-by-categories .category-card:hover { transform: translateY(-6px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.shop-by-categories .category-card h3 {
  font-size: 18px; font-weight:700; margin: 8px 0 12px; color:#111;
}
.shop-by-categories .shop-now-btn {
  display:inline-block;
  background:#000; color:#fff; padding:8px 22px; border-radius:25px;
  text-decoration:none; font-weight:600; transition: background .2s ease;
}
.shop-by-categories .shop-now-btn:hover { background:#ef4444; }
@media (max-width:1200px) { .shop-by-categories .category-grid { grid-template-columns: repeat(4,1fr) !important; } }
@media (max-width:992px)  { .shop-by-categories .category-grid { grid-template-columns: repeat(3,1fr) !important; } }
@media (max-width:768px)  { .shop-by-categories .category-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width:480px)  { .shop-by-categories .category-grid { grid-template-columns: 1fr !important; } }

/* Mobile Accessories Grid */
.mobile-accessories-section {
  max-width: 1400px;
  margin: 60px auto;
  padding: 48px 20px;
  background: grey;
  border-radius: 12px;
  text-align: center;
  box-sizing: border-box;
  position: relative;
}
.mobile-accessories-section .section-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 36px;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid #ef4444;
}
.mobile-accessories-section ul.products {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 24px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: start;
  justify-items: center;
}
.mobile-accessories-section ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  background: #fff !important;
  border: 1px solid #eee !important;
  border-radius: 12px !important;
  padding: 6px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative !important;
  overflow: hidden !important;
}
.mobile-accessories-section ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: rgba(239,68,68,0.25) !important;
}
.mobile-accessories-section ul.products li.product a img {
  width: 100% !important;
  height: 200px !important;
  object-fit: contain !important;
  background: #fff !important;
  border-radius: 8px;
  padding: 0 !important;
  margin-bottom: 6px;
  display: block;
}
.mobile-accessories-section ul.products li.product .posted_in,
.mobile-accessories-section ul.products li.product .product-category {
  display: none !important;
}
.mobile-accessories-section .woocommerce-loop-product__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #111 !important;
  margin: 3px 0 5px !important;
  min-height: 42px;
}
.mobile-accessories-section .star-rating,
.mobile-accessories-section .woocommerce-loop-product__rating,
.mobile-accessories-section .woocommerce-product-rating {
  display: none !important;
}
.mobile-accessories-section .price {
  color: #ef4444 !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  margin-bottom: 6px !important;
  display: block;
  text-align: center;
}
.mobile-accessories-section a.button {
  display: inline-block !important;
  width: calc(100% - 10px) !important;
  max-width: 220px !important;
  text-align: center !important;
  background: #000 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 10px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: background 0.25s ease, transform 0.18s ease;
  margin-top: 5px !important;
}
.mobile-accessories-section a.button:hover {
  background: #ef4444 !important;
  transform: translateY(-2px);
  color: #fff !important;
}
.mobile-accessories-section .yith-wcqv-button {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: #000 !important;
  color: #fff !important;
  padding: 6px 8px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  z-index: 12 !important;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mobile-accessories-section ul.products li.product:hover .yith-wcqv-button {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1200px) {
  .mobile-accessories-section ul.products { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 992px) {
  .mobile-accessories-section ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
  .mobile-accessories-section ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .mobile-accessories-section ul.products { grid-template-columns: 1fr !important; }
}

/* MOBILE PHONES CAROUSEL */
.mobile-phones-fullwidth {
  width: 100%;
  background: #000000c9;
  padding: 60px 0;
  margin-top: 40px;
  overflow: hidden;
  box-sizing: border-box;
}

.mobile-phones-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  color: #fff;
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.custom-phones-carousel { position: relative; overflow: hidden; width: 100%; }
.carousel-track { display: block; }
.custom-phones-carousel .products,
.custom-phones-carousel ul.products {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 15px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  will-change: transform;
  align-items: flex-start;
}

.custom-phones-carousel li.product {
  box-sizing: border-box;
  background: #111 !important;
  border-radius: 10px !important;
  border: 1px solid #222 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.custom-phones-carousel li.product .woocommerce-loop-product__link,
.custom-phones-carousel li.product .attachment-woocommerce_thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  padding: 6px;
  background: #fff !important;
  border-bottom: 1px solid #333 !important;
}

.custom-phones-carousel li.product img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.custom-phones-carousel .product-info {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.custom-phones-carousel li.product .woocommerce-loop-product__title,
.custom-phones-carousel li.product h2,
.custom-phones-carousel li.product .price,
.custom-phones-carousel li.product .amount {
  color: #fff !important;
}

.custom-phones-carousel li.product .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin: 2px 0 2px !important;
  min-height: 38px;
  line-height: 1.2;
}

.custom-phones-carousel li.product .price {
  font-size: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
  color: #fff !important;
}

.custom-phones-carousel li.product .button {
  background: #3498db !important;
  color: #fff !important;
  border-radius: 20px !important;
  padding: 6px 14px !important;
  font-weight: 600 !important;
  display: inline-block !important;
  margin: 6px 0 10px !important;
}

.custom-phones-carousel li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(255,255,255,0.03);
}

.carousel-nav { position: absolute; top: 48%; left: 0; right: 0; display:flex; justify-content:space-between; z-index:3; pointer-events:none; }
.carousel-arrow {
  pointer-events: all;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .18s, background .18s;
}
.carousel-arrow:hover { transform: scale(1.05); background: #3498db; }

.carousel-dots { display:flex; justify-content:center; margin-top:18px; gap:10px; }
.carousel-dots .dot { width:8px; height:8px; background:#333; border-radius:50%; cursor:pointer; transition:all .18s; }
.carousel-dots .dot.active { background:#3498db; transform:scale(1.15); }

@media (max-width: 1200px) { .custom-phones-carousel li.product .woocommerce-loop-product__link { height:150px; } }
@media (max-width: 992px)  { .custom-phones-carousel li.product .woocommerce-loop-product__link { height:140px; } }
@media (max-width: 768px)  { .custom-phones-carousel li.product .woocommerce-loop-product__link { height:120px; } }
@media (max-width: 576px)  { .section-title { font-size:22px; } .custom-phones-carousel li.product .woocommerce-loop-product__link { height:110px; } }

/* WooCommerce Product Search */
form.woocommerce-product-search {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}

form.woocommerce-product-search input.search-field {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  outline: none;
  border-radius: 50px 0 0 50px;
}

form.woocommerce-product-search button[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ef4444;
  color: #fff;
  border: none;
  padding:  28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  border-radius: 0 50px 50px 0;
  height: auto;
  float: none !important;
  margin-top: 0 !important;
}

form.woocommerce-product-search button[type=submit]:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

/* Fitness & Safety + Archive pages */
.product-section.fitness-safety-only {
  max-width: 1400px;
  margin: 60px auto;
  padding: 40px 20px;
  background-image: linear-gradient(180deg, #FFF8E3 0%, #FFF8E3 100%);
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
}
.product-section.fitness-safety-only .section-heading {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid #ef4444;
}

.product-section.fitness-safety-only ul.products,
.tax-product_cat ul.products,
.tax-product_tag ul.products,
.post-type-archive-product ul.products,
.woocommerce-page ul.products,
.archive.woocommerce ul.products,
body.post-type-archive-product ul.products {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: start;
  justify-items: stretch;
}

.product-section.fitness-safety-only ul.products li.product,
.tax-product_cat ul.products li.product,
.tax-product_tag ul.products li.product,
.post-type-archive-product ul.products li.product,
.woocommerce-page ul.products li.product,
.archive.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  background: #fff !important;
  border: 1px solid #eee !important;
  border-radius: 10px !important;
  padding: 4px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative !important;
  overflow: hidden !important;
}

.product-section.fitness-safety-only ul.products li.product:hover,
.tax-product_cat ul.products li.product:hover,
.tax-product_tag ul.products li.product:hover,
.post-type-archive-product ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: rgba(239,68,68,0.12) !important;
}

.product-section.fitness-safety-only ul.products li.product a img,
.tax-product_cat ul.products li.product a img,
.post-type-archive-product ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100% !important;
  height: 180px !important;
  object-fit: contain !important;
  background: #fff !important;
  padding: 0 !important;
  margin-bottom: 6px !important;
  display: block !important;
  border-radius: 6px;
}

.product-section.fitness-safety-only .woocommerce-loop-product__title,
.tax-product_cat .woocommerce-loop-product__title,
.post-type-archive-product .woocommerce-loop-product__title,
.woocommerce-page .woocommerce-loop-product__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #111 !important;
  margin: 2px 6px 4px !important;
  min-height: 40px;
  line-height: 1.2;
}

.product-section.fitness-safety-only .price,
.tax-product_cat .price,
.post-type-archive-product .price,
.woocommerce-page .price {
  color: #ef4444 !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  margin-bottom: 4px !important;
  display: block;
  text-align: center;
}

.product-section.fitness-safety-only a.button,
.tax-product_cat a.button,
.post-type-archive-product a.button,
.woocommerce-page a.button,
.product-section.fitness-safety-only .add_to_cart_button,
.tax-product_cat .add_to_cart_button {
  display: inline-block !important;
  width: calc(100% - 12px) !important;
  max-width: 200px !important;
  text-align: center !important;
  background: #000 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 10px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: background 0.25s ease, transform 0.18s ease !important;
  margin-top: 4px !important;
}

.product-section.fitness-safety-only a.button:hover,
.tax-product_cat a.button:hover,
.post-type-archive-product a.button:hover,
.woocommerce-page a.button:hover {
  background: #ef4444 !important;
  transform: translateY(-2px);
  color: #fff !important;
}

.product-section.fitness-safety-only .yith-wcqv-button,
.product-section.fitness-safety-only .quickview-btn,
.tax-product_cat .yith-wcqv-button,
.woocommerce-page .yith-wcqv-button {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  background: #000 !important;
  color: #fff !important;
  padding: 6px 8px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  z-index: 12 !important;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.product-section.fitness-safety-only ul.products li.product:hover .yith-wcqv-button,
.tax-product_cat ul.products li.product:hover .yith-wcqv-button,
.woocommerce-page ul.products li.product:hover .yith-wcqv-button {
  opacity: 1;
  transform: translateY(0);
}

.product-section.fitness-safety-only .posted_in,
.product-section.fitness-safety-only .product-category,
.tax-product_cat .posted_in,
.woocommerce-page .posted_in,
.product-section.fitness-safety-only .star-rating,
.tax-product_cat .star-rating,
.woocommerce-page .star-rating,
.product-section.fitness-safety-only .woocommerce-loop-product__rating,
.tax-product_cat .woocommerce-loop-product__rating {
  display: none !important;
}

@media (max-width: 1200px) {
  .product-section.fitness-safety-only ul.products,
  .tax-product_cat ul.products,
  .post-type-archive-product ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .product-section.fitness-safety-only ul.products,
  .tax-product_cat ul.products,
  .post-type-archive-product ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .product-section.fitness-safety-only ul.products,
  .tax-product_cat ul.products,
  .post-type-archive-product ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .product-section.fitness-safety-only ul.products,
  .tax-product_cat ul.products,
  .post-type-archive-product ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* Apply only to these sections */
.accessories-section,
.mobile-accessories-section,
.fitness-safety-only {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 40px 30px;
  background: #c5c5c57a;
  margin: 50px auto;
  max-width: 1400px;
}

.accessories-section .section-heading,
.mobile-accessories-section .section-heading,
.fitness-safety-only .section-heading {
  color: black !important;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .accessories-section,
  .mobile-accessories-section,
  .fitness-safety-only {
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
}

/* Sale badge */
.woocommerce ul.products li.product {
    position: relative;
}
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 1px;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    padding: 1px 1px;
    border-radius: 1px;
    z-index: 9;
}

.woocommerce ul.products li.product li.category, .woocommerce ul.products li.product li.category a{
	display:none;
}

.woocommerce ul.products li.product .woo-entry-inner li.image-wrap {
    margin-bottom: 10px;
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.3);
}
.woocommerce ul.products li.product .woo-entry-inner li {
     margin-bottom: 1px; 
    line-height: 1;
}

.woocommerce ul.products li.product .price .amount {
    color: #ff0707;
}

.woocommerce ul.products li.product .price del .amount {
    color: #011117;
    font-size: 18px;
}
.wc-block-components-product-price{
	text-align:left !important;
}

#site-navigation-wrap .dropdown-menu>li>a {
	font-size: 17px;
	font-weight: 600;
	color: black;
}

/* OceanWP + CFVSW: move variation form below the Add to Cart button */
li.entry.has-media .product-inner {
  display: flex;
  flex-direction: column;
}

li.entry.has-media .woo-entry-inner {
  order: 1;
}

li.entry.has-media .cfvsw_variations_form {
  order: 2;
  margin-top: 8px;
}

.cfvsw_variations_form {
  text-align: center;
  background: #f1f1f1;
  padding: 3px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  width: 100%;
	margin-top: 4px !important;
}

/* custom Footer full width */
.neotrex-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%);
  background: #f7f7f7;
  position: relative;
  z-index: 1;
  border-top: 3px solid #e5e5e5;
}


/* ============================================
   CUSTOM PRODUCT PAGE CSS - FIX VERTICAL THUMBNAILS
   ============================================ */

/* 1. FIX VERTICAL THUMBNAILS DISPLAY */
.owp-thumbs-layout-vertical .flex-control-thumbs {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100px !important;
    max-height: 500px !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 10px 5px !important;
    z-index: 10 !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.owp-thumbs-layout-vertical .flex-control-thumbs li {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.owp-thumbs-layout-vertical .flex-control-thumbs li:last-child {
    margin-bottom: 0 !important;
}

.owp-thumbs-layout-vertical .flex-control-thumbs img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 6px !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: block !important;
}

.owp-thumbs-layout-vertical .flex-control-thumbs img:hover {
    opacity: 0.8 !important;
    border-color: #9ca3af !important;
    transform: translateY(-2px) !important;
}

.owp-thumbs-layout-vertical .flex-control-thumbs img.flex-active {
    opacity: 1 !important;
    border-color: #ef4444 !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2) !important;
}

/* 2. ADJUST MAIN GALLERY FOR VERTICAL THUMBS */
.owp-thumbs-layout-vertical .woocommerce-product-gallery {
    padding-left: 120px !important; /* Space for thumbnails */
    position: relative !important;
    min-height: 400px !important;
}

.owp-thumbs-layout-vertical .flex-viewport {
    width: 100% !important;
    margin-left: 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
}

.owp-thumbs-layout-vertical .woocommerce-product-gallery__wrapper {
    width: 100% !important;
}

.owp-thumbs-layout-vertical .woocommerce-product-gallery__image {
    width: 100% !important;
}

/* 3. MAIN PRODUCT IMAGE STYLING */
.woocommerce-product-gallery__image.flex-active-slide img {
    width: 100% !important;
    height: auto !important;
    max-height: 500px !important;
    object-fit: contain !important;
    background: #f9fafb !important;
    padding: 20px !important;
    border-radius: 8px !important;
    transition: transform 0.5s ease !important;
}

.woocommerce-product-gallery__image.flex-active-slide img:hover {
    transform: scale(1.02) !important;
}

/* 4. LIGHTBOX TRIGGER BUTTON */
.woocommerce-product-gallery__trigger {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 20 !important;
    transition: all 0.3s ease !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.woocommerce-product-gallery__trigger:hover {
    background: #ef4444 !important;
    transform: scale(1.1) !important;
}

.woocommerce-product-gallery__trigger img.emoji {
    width: 20px !important;
    height: 20px !important;
    filter: brightness(0) invert(1) !important;
}

/* 5. PRODUCT SUMMARY SECTION */
.summary.entry-summary {
    padding: 30px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    margin-top: 20px !important;
}

.single-post-title.product_title.entry-title {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #111 !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
    position: relative !important;
    padding-bottom: 15px !important;
}

.single-post-title.product_title.entry-title:after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #ef4444, #f97316) !important;
    border-radius: 2px !important;
}

/* 6. PRICE STYLING */
.summary.entry-summary .price {
    margin: 20px 0 25px !important;
    padding: 15px 0 !important;
    border-top: 1px dashed #e5e5e5 !important;
    border-bottom: 1px dashed #e5e5e5 !important;
}

.summary.entry-summary .price .woocommerce-Price-amount {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #ef4444 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.summary.entry-summary .price .woocommerce-Price-currencySymbol {
    font-size: 24px !important;
    color: #111 !important;
}

/* 7. PRODUCT DESCRIPTION */
.woocommerce-product-details__short-description {
    margin: 25px 0 30px !important;
    padding: 25px !important;
    background: #ffffff !important;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

.woocommerce-product-details__short-description h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.woocommerce-product-details__short-description h2 img.emoji {
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
}

.woocommerce-product-details__short-description p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #374151 !important;
    margin-bottom: 15px !important;
}

/* 8. ADD TO CART FORM */
.summary.entry-summary form.cart {
    margin: 30px 0 !important;
    padding: 25px !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.summary.entry-summary .quantity {
    display: flex !important;
    align-items: center !important;
    background: #fff !important;
    border-radius: 8px !important;
    border: 2px solid #e5e7eb !important;
    overflow: hidden !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
}

.summary.entry-summary .quantity .minus,
.summary.entry-summary .quantity .plus {
    width: 45px !important;
    height: 50px !important;
    background: #f3f4f6 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    cursor: pointer !important;
    border: none !important;
    transition: all 0.2s !important;
    user-select: none !important;
}

.summary.entry-summary .quantity .minus:hover,
.summary.entry-summary .quantity .plus:hover {
    background: #e5e7eb !important;
    color: #111 !important;
}

.summary.entry-summary .quantity .qty {
    width: 70px !important;
    height: 50px !important;
    border: none !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #111 !important;
    background: #fff !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

.single_add_to_cart_button.button.alt {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 40px !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 200px !important;
    flex: 1 !important;
}

.single_add_to_cart_button.button.alt:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
}

/* 9. PRODUCT META */
.product_meta {
    margin-top: 30px !important;
    padding-top: 25px !important;
    border-top: 1px solid #e5e5e5 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 15px !important;
}

.product_meta span {
    display: block !important;
    padding: 12px 18px !important;
    background: #f9fafb !important;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    transition: all 0.2s !important;
    font-size: 14px !important;
    color: #4b5563 !important;
}

.product_meta a {
    color: #3b82f6 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s !important;
}

.product_meta a:hover {
    color: #1d4ed8 !important;
    text-decoration: underline !important;
}

/* 10. PRODUCT TABS */
.woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 40px !important;
    background: #fff !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    overflow: hidden !important;
}

.wc-tabs {
    display: flex !important;
    background: #f8fafc !important;
    border-bottom: 1px solid #e5e7eb !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.wc-tabs li a {
    display: block !important;
    padding: 18px 20px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    text-decoration: none !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.3s !important;
}

.wc-tabs li.active a,
.wc-tabs li a:hover {
    color: #ef4444 !important;
    border-bottom-color: #ef4444 !important;
    background: #fff !important;
}

/* 11. RELATED PRODUCTS */
.related.products {
    margin-top: 50px !important;
    padding-top: 30px !important;
    border-top: 2px solid #f3f4f6 !important;
}

.related.products h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #111 !important;
    text-align: center !important;
    margin-bottom: 30px !important;
}

.products.oceanwp-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
}

.products.oceanwp-row li.entry {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: all 0.3s !important;
}

.products.oceanwp-row li.entry:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: #ef4444 !important;
}

/* 12. RESPONSIVE FIXES */
@media (max-width: 1200px) {
    .products.oceanwp-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .owp-thumbs-layout-vertical .woocommerce-product-gallery {
        padding-left: 0 !important;
    }
    
    .owp-thumbs-layout-vertical .flex-control-thumbs {
        position: relative !important;
        width: 100% !important;
        max-height: none !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        margin-top: 15px !important;
        padding: 10px !important;
    }
    
    .owp-thumbs-layout-vertical .flex-control-thumbs li {
        width: 70px !important;
        margin: 0 5px 5px 0 !important;
    }
}

@media (max-width: 768px) {
    .summary.entry-summary form.cart {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .single_add_to_cart_button.button.alt {
        width: 100% !important;
    }
    
    .products.oceanwp-row {
        grid-template-columns: 1fr !important;
    }
    
    .wc-tabs {
        flex-direction: column !important;
    }
    
    .wc-tabs li a {
        padding: 15px !important;
        border-bottom: 1px solid #e5e7eb !important;
    }
}

@media (max-width: 480px) {
    .single-post-title.product_title.entry-title {
        font-size: 24px !important;
    }
    
    .summary.entry-summary .price .woocommerce-Price-amount {
        font-size: 24px !important;
    }
    
    .woocommerce-product-details__short-description {
        padding: 15px !important;
    }
    
    .owp-thumbs-layout-vertical .flex-control-thumbs li {
        width: 60px !important;
    }
}

/* 13. ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.summary.entry-summary {
    animation: fadeInUp 0.6s ease-out !important;
}

/* 14. CUSTOM SCROLLBAR FOR VERTICAL THUMBS */
.owp-thumbs-layout-vertical .flex-control-thumbs::-webkit-scrollbar {
    width: 6px !important;
}

.owp-thumbs-layout-vertical .flex-control-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 3px !important;
}

.owp-thumbs-layout-vertical .flex-control-thumbs::-webkit-scrollbar-thumb {
    background: #c1c1c1 !important;
    border-radius: 3px !important;
}

.owp-thumbs-layout-vertical .flex-control-thumbs::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1 !important;
}

/* 15. FORCE VISIBILITY FIX (LAST RESORT) */
.owp-thumbs-layout-vertical .flex-control-nav {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
   /* position: static !important; */
}

/* Debug helper - uncomment if needed */
/*
.owp-thumbs-layout-vertical .flex-control-thumbs {
    border: 2px solid red !important;
}
.owp-thumbs-layout-vertical .flex-control-thumbs li {
    border: 1px solid blue !important;
}
*/


