/*
Theme Name: AmizDesign
Author: Snop
Description: Custom theme with hero carousel
Version: 1.0
*/
    /*body { background: red !important; } to show is something still load */

/* ---------------------------------------------
   AMIZ DESIGN THEME - RESET + GLOBAL STYLES
---------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Bebas Neue', sans-serif;
  justify-content: center;
  background-color: #000;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #a452ff;
  text-decoration: none;
}

h1, h2 {
  font-weight: bold;
}

.container {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
}


/* ------------------------- */
/* 🔝 SITE HEADER STYLES     */
/* ------------------------- */

.site-header {
  background-color: #000;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  position: relative; /* 🧠 enables absolute positioning inside */
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  position: relative;
}

/* 🔧 Center the nav absolutely */
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Logo */
.site-logo img {
  max-width: 140px;
  height: 100px;
  display: block;
}

/* Nav menu */
.nav-list {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #FBFBEE;
  text-decoration: none;
  font-weight: bold;
  font-size: 30px;
  transition: color 0.3s;
}

.nav-list li a:hover {
  color: #E92132;
}

/* Cart & Checkout icons */
.header-icons {
  display: flex;
  gap: 20px;
}

/* ------------------------- */
/* 🎯 HEADER ICONS STYLES     */
/* ------------------------- */

.header-icons a {
  color: #FBFBEE; /* Same as nav text */
  font-size: 25px; /* Make icons bigger */
  transition: color 0.3s;
}

.header-icons a:hover {
  color: #E92132; /* Same hover as nav */
}

.header-icons i {
  display: inline-block;
  vertical-align: middle;
}

/* === Show cart & checkout links only on MOBILE === */
@media screen and (min-width: 769px) {
  .nav-list .cart-link,
  .nav-list .checkout-link {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .nav-list .cart-link,
  .nav-list .checkout-link {
    display: block;
  }
}




/* ----------------------------------------------
   HERO SECTION WITH VIDEO BACKGROUND
---------------------------------------------- */
.hero-1 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-1 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background-color: black; /* fallback background */
}


.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}

.hero-title {
  font-size: 4rem;
  color: white;
  text-shadow: 2px 2px 10px black;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ccc;
  margin-top: 1rem;
}

/* Tablet: 768px and below */
@media (max-width: 768px) {
  .hero-1 {
    height: 80vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* HERO VIDEO MOBILE RESPONSIVE FIX */
@media (max-width: 480px) {
  .hero-1 video {
    object-fit: cover;
    object-position: center center;
  }

  .hero-1 {
    height: 100vh;
  }
  
  .hero-content {
    padding: 1rem;
  }
}



/* Smallest: 360px and below */
@media (max-width: 360px) {
  .hero-1 {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .hero-content {
    padding: 1.2rem;
  }
}



/* === MOVING BANNER === */
.scrolling-banner {
  background: #000;
  color: white;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  z-index: 999;
  padding: 8px 0;
  text-align: center;
}

.scrolling-banner p {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 12s linear infinite;
}

@keyframes scroll-left {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}





/* ---------------------------------------------
   HOME PAGE CONTENT
---------------------------------------------- */
.home-content {
  padding: 60px 5%;
  text-align: left;
  background-color: #000;
}

.home-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.home-content p {
  font-size: 1rem;
  color: #aaa;
}


/* Position the icons row (matches your current structure) */
.header-icons {
  display: flex;
  gap: 14px;       /* adjust if needed */
  align-items: center;
}

/* Cart badge */
.header-cart {
  position: relative;
  display: inline-block;
}

.header-cart .cart-count {
  position: absolute;
  top: -8px;       /* tune for your header height */
  right: -10px;
  background: #ff3d3d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #000; /* ring to stand out on dark header */
}










/* FOOTER */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #b32b2b;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #aba9a2;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: #999;
  font-size: 13px;
}

/* FOOTER SEPARATOR */
.footer-separator {
  border: none;
  border-top: 1px solid #FFFFBF;
  margin: 60px auto 0;
  width: 90%;
  opacity: 0.2;
}





/* STATIC PAGE: Impressum */
.amiz-static-page {
  padding: 60px 20px;
  color: #fff;
  background-color: #000;
  text-align: center;
}
.amiz-static-page h1,
.amiz-static-page h3 {
  color: #7b7c85;
}
.amiz-static-page a {
  color: #FF6F61;
  text-decoration: underline;
  
}






/* ---------------------------------------- */
/* HOME SECTION INTRO TEXT */
/* ---------------------------------------- */
.home-section {
  padding: 80px 20px 40px;
  text-align: center;
  background-color: #000;
}

.home-section h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.home-section p {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------------------------------------- */
/* FEATURED COLLECTIONS SECTION */
/* ---------------------------------------- */
.featured-collections {
  padding: 60px 20px;
  background-color: #1a1a1a;
  text-align: center;
}

.featured-collections h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
}

.collection-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.collection-card {
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 260px;
  text-align: center;

}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px ;
}

.collection-card img {
  width: 100%;
  height: auto;
  display: block;
}

.collection-card h3 {
  margin: 15px 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #fff;
}


/* CATEGORY HERO SECTION */
.collection-hero {
  background: #000;
  padding: 40px 20px;
  margin-bottom: 40px;
  text-align: center;
  border-radius: 12px;
  
  color: #fff;
}

.collection-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.collection-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* === FIX WIDE CATEGORY PAGE FOR 1 PRODUCT === */

body.tax-product_cat .woocommerce-category-products {
  display: flex;
  justify-content: center;
}

/* === FIX PRODUCT CARD PADDING AND ALIGNMENT === */

body.tax-product_cat ul.products.columns-4 {
  margin: 40px auto 140px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

body.tax-product_cat ul.products.columns-4 li.product {
  width: 100%;
  max-width: 420px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  background: #111; /* or keep it transparent if you want */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* CATEGORY PRODUCT CARD HOVER SHADOW */
body.tax-product_cat ul.products li.product {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

body.tax-product_cat ul.products li.product:hover {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}





/* ----------------------------------------
   ABOUT PAGE STYLES
------------------------------------------- */

/* === ABOUT PAGE === */


.about-section {
  background-color: #000; /* Keep background fully black */
  padding: 3rem 2rem;
  border-top: 1px solid #222;
}

.about-section .container {
  max-width: 900px;
  margin: 0 auto;
  color: #ddd;
  font-size: 1.3rem;
  line-height: 1.9;
}

.about-heading {
  text-align: center;
  font-size: 2.2rem;
  color: #ff4b4b;
  margin-bottom: 2rem;
  text-shadow: 0 0 12px rgba(255, 75, 75, 0.4);
}

.about-vibes {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 1rem;
}

.about-vibes li {
  font-size: 1.3rem;
  margin: 0.75rem 0;
  color: #eee;
}

.impressum {
  background-color: #0a0a0a;
  padding-bottom: 5rem;
}





/* BLOG PAGE HEADER SECTION */
.blog-welcome-section {
  padding: 4rem 2rem 2rem;
  background-color: #181818;
  text-align: center;
}

.blog-title {
  font-size: 2.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  
}

.blog-intro {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
}

/* BLOG CARDS SECTION */
.blog-grid-section {
  padding: 3rem 2rem 5rem;
  background-color: #181818;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background-color: #222;
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px ;
}

.blog-card-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  max-height: 200px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #a452ff;
  margin-bottom: 0.8rem;
  text-align: center;
}

.blog-card p {
  color: #eee;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}


/* SINGLE POST PAGE */
.single-post-container {
  padding: 4rem 2rem;
  background-color: #181818;
  color: #fff;
}

.single-post-title {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.single-post-content img {
  display: block;
  max-width: 80%;
  margin: 2rem auto;
  border-radius: 10px;
}

.single-post-content p {
  font-size: 1.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #ccc;
  font-family: sans-serif;
}

.featured-image {
  display: block;
  margin: 2rem auto;
  max-width: 600px;
  padding: 1rem;
  border-radius: 10px;
  background-color: #111;
  text-align: center;
  box-shadow: 0 0 25px 5px #d452ff80;
}

.featured-image img {
  max-width: 100%;
  border-radius: 10px;
}





/* SHOP PAGE */
/* SHOP PAGE GRID */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0;
  margin: 0 auto;
}


/* PRODUCT CARD */
ul.products li.product {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 144, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  
}

/* PRODUCT CARD HOVER */
ul.products li.product:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px ;
}

/* PRODUCT TITLE */
ul.products li.product h2.woocommerce-loop-product__title {
  color: #F1F0F1;
  font-size: 1.2rem;
  
  margin: 10px 0;
}

/* PRODUCT PRICE */
ul.products li.product .price {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.woocommerce ul.products li.product .woocommerce-Price-amount {
  color:  #ffffff !important;
}


/* PRODUCT IMAGE */
ul.products li.product img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}





/* 🛑 REMOVE ADD TO CART ON SHOP PAGE */
body.woocommerce-shop ul.products li.product a.button {
  display: none !important;
}

/* SHOP PAGE HEADING */
.shop-heading {
  text-align: center;
  color: #F1F0F1;
  font-size: 2rem;
  margin: 2rem auto;
  max-width: 90%;
}

/* SHOP PAGE – GRID CENTERED PRODUCT CARDS */
/* SHOP PAGE PRODUCT GRID FIX */
.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 30px; /* vertical, horizontal spacing */
  padding: 40px 0;
  margin: 0 auto;
  max-width: 1400px;
}

/* PRODUCT ITEM */
.woocommerce ul.products li.product {
  width: 220px;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* PRODUCT TITLE FONT */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 1rem;
  text-align: center;
}


/* Remove WooCommerce default grid hacks */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}








/* ---------------------------------- */
/* GLOBAL TEXT SELECTION HIGHLIGHT   */
/* ---------------------------------- */
*::selection {
  background: #ff66cc !important;
  color: #000000 !important;
}

*::-moz-selection {
  background: #ff66cc !important;
  color: #000000 !important;
}


/* ---------------------------------- */
/* WOOCOMMERCE DROPDOWN STYLING      */
/* ---------------------------------- */
.woocommerce-ordering select {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 2px solid #F1F0F1;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Optional: Add arrow styling for WebKit */
.woocommerce-ordering select::-ms-expand {
  display: none;
}

/* Optional: Add hover effect */
.woocommerce-ordering select:hover {
  background-color: #2a2a2a;
  border-color: #ff99dd;
}

/* HIDE DEFAULT PAGE TITLE & PRODUCT COUNT */
.archive .page-title,
.woocommerce-result-count {
  display: none !important;
}




/* 💖 SINGLE PRODUCT PAGE STYLING — TITLE + PRICE */
.single-product .product_title {
  color: #ffffff !important;   /* White title */
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #b3443c !important;   /* Same as Add to Cart button */
  font-size: 1.8rem;
  font-weight: bold;
}
/* 💰 Single Product Page Price Styling */
.single-product .woocommerce-Price-amount {
  color: #b3443c !important;    /* Match Add to Cart button */
  font-size: 1.8rem !important;
  font-weight: bold;
}




/* 🔹 Tabs Styling (Description, Reviews, etc.) */
.woocommerce div.product .woocommerce-tabs {
  background-color: #000;
  border-radius: 10px;
  padding: 20px;
  margin-top: 40px;
  width: 100%;
}

.woocommerce div.product .woocommerce-tabs h2 {
  color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: #b3443c !important;
  font-weight: bold;
}

.woocommerce div.product .woocommerce-tabs .panel {
  color: #eee;
  font-size: 15px;
}

/* 🔹 Add to Cart Button */
.woocommerce div.product form.cart .button {
  background-color: #ff00cc;
  color: #000;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: bold;
}

.woocommerce div.product form.cart .button:hover {
  background-color: #ffffff;
  color: #000;
}

/* 📦 FIXED LAYOUT WRAPPERS FOR SINGLE PRODUCT PAGE */
.amiz-product-page-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
  background-color: #1a1a1a;
  color: white;
}

.amiz-product-images {
  flex: 1 1 100%;
  max-width: 600px;
  margin: 0 auto;
}

.amiz-product-details {
  flex: 1 1 100%;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.amiz-product-tabs {
  width: 100%;
  margin-top: 40px;
}

.amiz-product-sidebar {
  flex: 1 1 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #2a2a2a;
  color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 191, 0.15);
}


/* Product Content Main Area */
.amiz-product-main {
  flex: 1 1 65%;
  max-width: 65%;
}

/* Product Sidebar */
.amiz-product-sidebar {
  flex: 1 1 30%;
  max-width: 30%;
  background-color: #2a2a2a;
  color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 191, 0.15);
}




/* 🧱 SIDEBAR STYLING */
.amiz-product-sidebar .widget {
  margin-bottom: 30px;
}

.amiz-product-sidebar .widget-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffbf;
  border-bottom: 1px solid #ffffbf;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.amiz-product-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.amiz-product-sidebar ul li {
  margin: 8px 0;
  border-bottom: 1px solid #333;
  padding-bottom: 6px;
}

.amiz-product-sidebar a {
  color: #ffcc66;
  text-decoration: none;
  transition: 0.2s ease;
}

.amiz-product-sidebar a:hover {
  color: #ffffbf;
  text-decoration: underline;
}

/* 🛒 SIDEBAR PRODUCT CAROUSEL */
.carousel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 10px 0;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  min-width: 120px;
  background-color: #222;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 191, 0.5);
  transition: transform 0.3s ease;
}

.carousel-card:hover {
  transform: scale(1.05);
}

/* 🖼️ PRODUCT IMAGE GALLERY */
.amiz-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.amiz-main-image {
  text-align: center;
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 12px;
}

.amiz-main-image img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 10px;
  box-shadow: 0 0 20px #ffffbf40;
  transition: 0.3s;
}

.amiz-thumbnails {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
}

.amiz-thumb {
  width: 100px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.amiz-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #ffffbf80;
}

/* 🧩 FLEX LAYOUT FOR IMAGE + DETAILS */
.amiz-single-product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 40px;
  width: 100%;
}

.amiz-product-images {
  flex: 1 1 400px;
  max-width: 600px;
}

.amiz-product-details {
  flex: 1 1 400px;
  max-width: 600px;
  color: white;
}

/* 📱 RESPONSIVE STYLING */
@media (max-width: 768px) {
  .amiz-product-page-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .amiz-product-main,
  .amiz-product-sidebar {
    flex: 1 1 100%;
  }

  .amiz-product-sidebar {
    margin-top: 20px;
  }
}


/* 🟣 SINGLE PRODUCT TABS (WooCommerce) */
.woocommerce-tabs.wc-tabs-wrapper {
  background: #121212;
  padding: 2rem;
  border-radius: 16px;
  
  margin-top: 40px;
}

.woocommerce-tabs.wc-tabs-wrapper ul.wc-tabs {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
  border-bottom: 2px solid #333;
}

.woocommerce-tabs.wc-tabs-wrapper ul.wc-tabs li {
  margin: 0;
}

.woocommerce-tabs.wc-tabs-wrapper ul.wc-tabs li a {
  color: #ff00cc;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.woocommerce-tabs.wc-tabs-wrapper ul.wc-tabs li.active a,
.woocommerce-tabs.wc-tabs-wrapper ul.wc-tabs li a:hover {
  color: #ffffbf;
  border-bottom: 2px solid #ffffbf;
}

.woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel {
  color: #eee;
  font-size: 16px;
  line-height: 1.6;
  padding-top: 1rem;
}

.woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel {
  color: #eee;
  font-size: 16px;
  line-height: 1.6;
  padding: 1.5rem 2rem;
  background: #1a1a1a;
  border-radius: 12px;
  
  max-width: 100%;
  overflow-wrap: break-word;
}


.woocommerce-product-gallery__wrapper {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 100%;
}

.woocommerce-product-gallery__image {
  padding: 5px;
}

.slick-slide img {
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 191, 0.15);
}

/* 🖼️ Thumbnails Carousel */
.gallery-thumbs {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.gallery-thumbs .swiper-wrapper {
  display: flex;
  flex-direction: row; /* ✅ NOT "Carousel" */
  align-items: center;
}


.gallery-thumbs .swiper-slide {
  width: auto;
  max-width: 100px;
  margin-right: 10px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.gallery-thumbs img {
  width: 100%;
  height: auto;
  display: block;
}

/* 🧭 Navigation Arrows */
.thumbs-prev,
.thumbs-next {
  color: #fff;
  top: 35%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffbf;
  transition: 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #ffffff;
}

/* 🚫 Hide Swiper navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}



/* SIDEBAR PRODUCT CAROUSEL – IMPROVED */

/* SIDEBAR CONTAINER WIDTH FIX */
.amiz-product-sidebar {
  width: 100%;
  max-width: 100%;
  padding: 2rem;
  margin: 0 auto;
  display: block;
}


.amiz-sidebar-carousel {
  width: 100%;
  max-width: 100%;
  margin-top: 3rem;
  background: transparent;
}

.carousel-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.carousel-item {
  text-align: center;
  padding: 0.5rem;
}

.carousel-thumb {
  width: auto;
  height: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 12px #ffffbf66;
  display: block;
  margin: 0 auto;
  transition: transform 0.2s ease;
}


.carousel-product-title {
  font-size: 0.9rem;
  color: #FFFFBF;
  margin-top: 0.5rem;
}
/* ---------------------------------------------
   ✅ MOBILE RESPONSIVENESS (SHOP + SINGLE PRODUCT)
---------------------------------------------- */
@media (max-width: 768px) {
  /* 🔹 Header and Nav */
  .amiz-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .amiz-header nav {
    flex-direction: column;
    gap: 12px;
  }

  /* 🔹 Shop Grid */
  .product-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .woocommerce-page .woocommerce-products-header {
    text-align: center;
    padding: 0 1rem;
  }

  .woocommerce ul.products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 10px;
  }

  .woocommerce ul.products li.product {
    width: 100% !important;
  }

  .woocommerce .woocommerce-ordering {
    float: none;
    margin: 1rem auto;
    display: block;
  }

  .hero-slide h1 {
    font-size: 2rem;
    padding: 0 10px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  /* 🔹 SINGLE PRODUCT PAGE FIX */
  .amiz-product-page-wrapper {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }

  .amiz-product-images,
  .amiz-product-details,
  .amiz-product-tabs,
  .amiz-product-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px;
    margin: 0 auto;
  }

  .woocommerce div.product form.cart {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .amiz-main-image img {
    max-height: 300px;
    object-fit: contain;
  }

  .amiz-thumbnails {
    gap: 10px;
    padding: 0 5px;
  }

  .amiz-thumb {
    width: 80px;
  }

  .woocommerce-tabs.wc-tabs-wrapper {
    padding: 1.5rem;
  }

  .woocommerce-tabs.wc-tabs-wrapper ul.wc-tabs {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel {
    padding: 1rem;
  }

  .carousel-thumb {
    height: 140px;
  }

  .carousel-title {
    font-size: 1rem;
  }

  .carousel-card {
    min-width: 100px;
  }
}


/* === HEADER LAYOUT === */
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: relative;
  z-index: 10;
}

/* === TOGGLE BUTTON === */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background: #fff; /* ✅ White visible lines */
  transition: all 0.4s ease;
  border-radius: 2px;
}

/* === Hamburger to X === */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === DEFAULT NAV === */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* === MOBILE DROPDOWN === */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100vw; /* ✅ Full screen width */
  margin-left: -20px; /* ✅ Offset padding from .container */
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 24px 0;
  border-bottom: 1px solid #222;
  z-index: 999;
}


  .main-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-list li a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .nav-list li a:hover {
    color: #e10600;
    background: rgba(255, 255, 255, 0.05);
  }
}

/* === ICONS FOR CART AND CHECKOUT (DESKTOP ONLY) === */
@media screen and (min-width: 769px) {
  .main-nav .cart-icon a::before {
    content: "\f07a"; /* cart icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
    color: #ffffbff; /* ✅ bright neon yellow (visible) */
    margin-left: 25px;
  }

  .main-nav .checkout-icon a::before {
    content: "\f09d"; /* credit card icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
    color: #ffffbf; /* ✅ same neon yellow */
    margin-left: 25px;
  }
}

/* === ICONS FOR CART AND CHECKOUT (MOBILE ONLY) === */
@media screen and (max-width: 768px) {
  .main-nav .cart-icon a::before {
    content: "\f07a"; /* cart icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
    color: #ffffbf;
    margin-left: 10px;
  }

  .main-nav .checkout-icon a::before {
    content: "\f09d"; /* credit card icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;
    color: #ffffbf;
    margin-left: 10px;
  }
}



/*
.main-nav .cart-icon a,
.main-nav .checkout-icon a {
    text-indent: -9999px;
    overflow: hidden;
    display: inline-block;
    width: 25px;
    height: 25px;
}
*/

/* 🎯 CART & CHECKOUT ICON VISIBILITY */
.header-cart i,
.header-checkout i {
  color: #FFFFBF; /* or white if too yellow: #fff */
  font-size: 1.5rem;
  margin-left: 20px;
  cursor: pointer;
}

.header-cart i:hover,
.header-checkout i:hover {
  color: #ff4b4b;
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}

/* --------------------------- */
/* 🛒 CART PAGE STYLING - AMIZ */
/* --------------------------- */

.woocommerce-cart {
  color: #FFFFFF;
}

/* Table headings */
.woocommerce-cart table th {
  background-color: #000;
  color: #FFFFFF;
  font-weight: 700;
  border-bottom: 1px solid #FEFBD8;
  padding: 14px;
  text-transform: uppercase;
}

/* Table body cells */
.woocommerce-cart table td {
  background-color: #000;
  color: #FFFFFF;
  border-top: 1px solid #333;
  padding: 14px;
}

/* Quantity box */
.woocommerce-cart input.qty {
  background-color: #000;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  padding: 8px;
  text-align: center;
  width: 60px;
}

/* REMOVE item icon */
.woocommerce-cart a.remove {
  color: #B93337 !important;
  font-size: 22px;
  transition: all 0.3s ease;
}
.woocommerce-cart a.remove:hover {
  color: #FFFFFF !important;
}

/* ------------------- */
/* BUTTONS & FORMS     */
/* ------------------- */
.woocommerce-cart .button,
.woocommerce-cart .checkout-button,
.woocommerce-cart input.button {
  background-color: #B93337 !important;
  color: #FFFFFF;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.woocommerce-cart .button:hover,
.woocommerce-cart .checkout-button:hover,
.woocommerce-cart input.button:hover {
  background-color: #D24C50 !important;
  color: #B93337;
}

/* Coupon input field */
.woocommerce-cart .coupon input.input-text {
  background-color: #000;
  color: #FFFFFF;
  border: 1px solid #B93337;
  padding: 10px;
  width: 150px;
}

/* Coupon button */
.woocommerce-cart .coupon .button {
  margin-left: 10px;
}

/* Cart totals box */
.woocommerce-cart .cart_totals {
  background-color: #0a0a0a;
  border: 1px solid #FFFFFF;
  padding: 20px;
  color: #FFFFFF;
  box-shadow: 0 0 30px #FFFFFF66;
}

.woocommerce-cart .cart_totals h2 {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Totals table rows */
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* ✅ FINAL FIX - MOBILE HEADER ICON + TOGGLER POSITION */
/* 📱 FINAL MOBILE HEADER FIX – Hide icons, show menu toggle */
@media (max-width: 768px) {
  header.site-header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-header .site-branding {
    flex: 1 1 100%;
    text-align: center;
  }

  .site-header .menu-toggle {
    order: 2;
    z-index: 20;
    display: flex !important;
  }

  .site-header .header-icons {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    display: none !important; /* ✅ Hide on mobile */
  }
}


  .site-header .header-icons i {
    font-size: 26px;
    color: #FEFFFF;
    transition: color 0.3s ease;
  }

  .site-header .header-icons i:hover {
    color: #FEFBD8;
  }

/* Page wrapper */
.checkout-page-wrapper {
  background-color: #0a0a0a;
  color: #FFFFFF;
  padding: 40px 0;
}

/* Section container */
.checkout-content.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Page Title */
.checkout-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FEFBD8;
  text-align: center;
  margin-bottom: 40px;
}

/* Form fields */
.woocommerce form.checkout input,
.woocommerce form.checkout textarea,
.woocommerce form.checkout select {
  background-color: #000;
  color: #FFFFFF;
  border: 1px solid #FEFBD8;
  padding: 12px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 4px;
}

/* Labels */
.woocommerce form.checkout label {
  color: #FEFBD8;
  font-weight: 600;
}

/* Order Review Box */
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  color: #FEFBD8;
  border-color: #FFFFFF;
  background-color: #111;
  padding: 12px;
}

/* Place Order Button */
#place_order,
.woocommerce button.button.alt {
  background-color: #B93337 !important;
  color: #FEFFFF;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  padding: 14px 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#place_order:hover,
.woocommerce button.button.alt:hover {
  background-color: #D24C50 !important;
  color: #FEFBD8;
}

/* === WooCommerce Notices styled like free-shipping banner === */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  margin: 12px 0 16px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 18px rgba(255,255,191,0.25) inset;
}
/* Remove WooCommerce notice icons */
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  content: none !important;   /* safer than display:none */
}


/* Success (cart updated, product added, etc.) */
.woocommerce-message {
  background: rgba(0, 128, 0, 0.2);      /* subtle green bg */
  border-color: rgba(0, 255, 0, 0.3);
  box-shadow: 0 0 18px rgba(0, 255, 0, 0.25) inset;
  color: #7CFF7C;                         /* neon green text */
}

/* Errors (invalid coupon, stock issue, etc.) */
.woocommerce-error {
  background: rgba(128, 0, 0, 0.3);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.25) inset;
  color: #FF7C7C;
}

/* Info (shipping notice, etc.) */
.woocommerce-info {
  background: rgba(0, 0, 128, 0.2);
  border-color: rgba(0, 128, 255, 0.3);
  box-shadow: 0 0 18px rgba(0, 128, 255, 0.25) inset;
  color: #7CCEFF;
}


/* Payment method titles */
.woocommerce-checkout-payment li label {
  color: #FFFFFF;
}

/* CHECKOUT PAGE */
.checkout-page-wrapper {
  background-color: #111;
  color: #fff;
  padding: 4rem 2rem;
}

.checkout-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 2rem;
}

/* WooCommerce Checkout Form */
.woocommerce form.checkout {
  background-color: transparent;
  color: #fff;
}

.woocommerce form.checkout label {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.woocommerce form.checkout input,
.woocommerce form.checkout textarea,
.woocommerce form.checkout select {
  background-color: #222;
  border: 1px solid #555;
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 4px;
  width: 100%;
}

.woocommerce form.checkout ::placeholder {
  color: #bbb;
}

/* Required field stars */
.woocommerce form.checkout label .required {
  color: #ff6b6b;
}

/* Coupon notice */
.woocommerce-info {
  background-color: #222;
  color: #fff;
  border-left: 4px solid #FFFFBF;
}

/* Order review + payment section */
.woocommerce-checkout-review-order-table,
.woocommerce-checkout-payment {
  background-color: #181818;
  border: 1px solid #333;
  padding: 1rem;
  border-radius: 8px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  color: #fff;
}

/* Payment methods */
.woocommerce-checkout-payment ul.payment_methods {
  color: #fff;
}

.woocommerce-checkout-payment label {
  color: #fff;
}

/* Place Order Button */
.woocommerce #place_order {
  background-color: #FFFFBF;
  color: #FFFFFF;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  border: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.woocommerce #place_order:hover {
  background-color: #fff;
  color: #000;
}

/* CART ICON BADGE */
.cart-icon-link {
  position: relative;
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #FFFFBF;
  color: black;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  box-shadow: 0 0 6px #FFFFBF;
  line-height: 1;
}


/* CHECKOUT – Stripe Card Fields Wrapper */
.wc-stripe-elements-field,
.woocommerce-checkout .wc_payment_method .wc-stripe-elements-field {
  background: transparent;
  border: 1px solid #FFFFBF;
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 10px rgba(255, 255, 191, 0.25);
}

/* Optional: Align placeholder style in case outer container influences it */
input::placeholder {
  color: #ccc;
}



/* WIDERRUFSBELEHRUNG PAGE STYLING – GRAY TEXT VERSION */
.legal-page-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px;
  color: #cccccc; /* Gray text */
  background-color: transparent;
  font-family: 'Arial', sans-serif;
  text-align: center;
  line-height: 1.7;
}

.legal-page-container h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #ffffff; /* Keep title white */
}

.legal-page-container h2 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ffffff; /* Section headings also white */
}

.legal-page-container p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #cccccc; /* Gray paragraphs */
}

.legal-page-container a {
  color: #c080ff;
  text-decoration: underline;
}

.legal-page-container a:hover {
  color: #ff7ad9;
}

.legal-page-container hr {
  border: none;
  border-top: 1px solid #777;
  margin: 40px 0;
}


/* VERSAND & ZAHLUNG STYLING */
.legal-page-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px;
  color: #cccccc;
  background-color: transparent;
  font-family: 'Arial', sans-serif;
  text-align: center;
  line-height: 1.7;
}

.legal-page-container h1,
.legal-page-container h2 {
  color: #ffffff;
}

.legal-page-container a {
  color: #c080ff;
  text-decoration: underline;
}

.legal-page-container a:hover {
  color: #ff7ad9;
}


/* SHOP PAGE INTRO PARAGRAPH */
.amiz-shop-intro {
  font-family: 'Bebas Neue', sans-serif;
  
  color: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 30px;
  margin-top: 100px;
  text-align: center;
}

.amiz-shop-intro strong {
  color: #E92132;
  font-weight: 700;
}

.amiz-shop-intro em {
  font-style: italic;
  opacity: 0.85;
}




/* SIZE SWATCHES – FORCE SMALLER */
.variable-items-wrapper .variable-item {
  width: 30px !important;
  height: 30px !important;
  font-size: 12px !important;
  line-height: 30px !important;
}



/* SINGLE PRODUCT - Quantity Box Style */
.woocommerce div.quantity input.qty {
  max-width: 60px;
  padding: 8px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  text-align: center;
  background-color: #1a1a1a;
  color: #fff;
  margin-bottom: 10px;
}

/* Optionally style the wrapper */
.woocommerce div.quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}



/* SHOP PAGE SEO BLOCK */
.amiz-shop-seo-content {
  max-width: 960px;
  margin: 60px auto 40px;
  padding: 40px 30px;
  background-color: #1c1c1c;
  color: #f2f2f2;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 191, 0.2);
}

.amiz-shop-seo-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FA003F;
}

.amiz-shop-seo-content p {
  margin-bottom: 16px;
}

.amiz-shop-seo-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}

.amiz-shop-seo-content li {
  margin-bottom: 10px;
}

.amiz-shop-seo-content em {
  display: block;
  font-style: italic;
  margin-top: 10px;
  color: #ccc;
}

.amiz-shop-seo-content a {
  color: #FA003F;
  text-decoration: uppercase;
}

@media (max-width: 768px) {
  .amiz-shop-seo-content {
    padding: 24px 16px;
    font-size: 0.95rem;
  }
}


/* === SHOP PAGE – Themed SEO intro (dark/neon) === */
.amiz-shop-seo{
  /* container */
  margin: 18px 0 26px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,191,.22);          /* #FFFFBF */
  background: rgba(255,255,191,.03);
  box-shadow:
    inset 0 0 30px rgba(255,255,191,.08),
    0 10px 28px rgba(0,0,0,.35);
}

.amiz-shop-seo h2{
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: .3px;
  text-transform: none;
}

.amiz-shop-seo p{
  margin: 0 0 8px;
  line-height: 1.7;
}

.amiz-shop-seo strong{ font-weight: 700; }

/* Details (expandable text) */
.amiz-shop-seo details{
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,191,.18);
  background: rgba(0,0,0,.25);
  padding: 10px 12px;
}

.amiz-shop-seo summary{
  list-style: none;           /* remove default marker */
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* custom caret */
.amiz-shop-seo summary::before{
  content: "";
  width: 10px; height: 10px;
  border-right: 2px solid rgba(255,255,191,.9);
  border-bottom: 2px solid rgba(255,255,191,.9);
  transform: rotate(-45deg);
  transition: transform .2s ease;
}

.amiz-shop-seo details[open] summary::before{
  transform: rotate(45deg);
}

.amiz-shop-seo .amiz-shop-seo-body{
  margin-top: 8px;
}

.amiz-shop-seo .amiz-shop-seo-body h3{
  margin: 12px 0 6px;
  font-size: 1rem;
  text-transform: none;
}

.amiz-shop-seo a,
.amiz-shop-seo a:visited {
  color: #FA003F; /* theme red */
  text-decoration: underline;
 
}

.amiz-shop-seo a:hover {
  color: #FF4F6F; /* lighter red on hover */
}

/* === SHOP PAGE – compact variant === */
.amiz-shop-seo.compact{
  margin: 12px 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
}

.amiz-shop-seo.compact h2{
  margin: 0 0 4px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.2;
}

.amiz-shop-seo.compact p,
.amiz-shop-seo.compact li{
  font-size: .95rem;
  line-height: 1.55;
}

.amiz-shop-seo.compact .amiz-shop-seo-body h3{
  margin: 8px 0 4px;
  font-size: .95rem;
}

/* Links inside SEO intro (force theme red incl. visited) */
.amiz-shop-seo a,
.amiz-shop-seo a:visited { color: #FA003F; text-decoration: underline; text-underline-offset: 2px; }
.amiz-shop-seo a:hover    { color: #FF4F6F; }


.seo-badge{ margin:12px 0 0; text-align:left; }
.seo-badge img{ max-width:140px; height:auto; border-radius:10px; opacity:.95; }

/* Compact on mobile */
@media (max-width: 768px){
  .amiz-shop-seo{ padding: 14px 14px; border-radius: 14px; }
  .amiz-shop-seo details{ padding: 8px 10px; }
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce){
  .amiz-shop-seo summary::before{ transition: none; }
}



/* Product Description - collapsible */
.wc-desc-collapse{
  margin: 8px 0 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 8px 24px rgba(0,0,0,.25);
}
.wc-desc-collapse summary{
  cursor: pointer;
  font-weight: 700;
  padding: 10px 12px;
  list-style: none;
  display: flex;
  align-items: center;
  border-radius: 12px;
}
.wc-desc-collapse summary::-webkit-details-marker{ display: none; }
.wc-desc-body{ padding: 12px; line-height: 1.65; }

/* Mobile tweaks */
@media (max-width: 768px){
  .wc-desc-collapse{ padding: 0; }
  .wc-desc-body{ padding: 10px; }
}

/* === Seamless marquee (no gap, continuous) === */
.amiz-freebar{
  position: relative;
  margin: 12px 0 16px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(255,255,191,0.25) inset;
  overflow: hidden;
  --marquee-duration: 15s; /* change speed here */
}

.amiz-freebar-track{
  display: inline-flex;     /* two copies side-by-side */
  gap: 0;                   /* no space between copies */
  width: max-content;       /* track fits text width */
  will-change: transform;
  animation: amiz-marquee var(--marquee-duration) linear infinite;
}

.amiz-freebar:hover .amiz-freebar-track{ animation-play-state: paused; }

.amiz-freebar-text{
  flex: 0 0 auto;
  white-space: nowrap;
  line-height: 1;
  margin: 0;                /* IMPORTANT: no margins */
  padding: 0;               /* IMPORTANT: no padding */
  font-weight: 600;
  letter-spacing: .2px;
}

@keyframes amiz-marquee {
  0%   { transform: translateX(175%); }
  100% { transform: translateX(-100%); } /* shift by exactly one copy width */
}

@media (prefers-reduced-motion: reduce) {
  .amiz-freebar-track{ animation: none; }
}




/* In-frame hover zoom for the MAIN image only */
.amiz-product-main .swiper-slide-active {
  overflow: hidden;              /* keep zoomed image inside frame */
  position: relative;
}

.amiz-product-main .swiper-slide-active img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, transform-origin;
  transition: transform 0.06s linear;
  cursor: zoom-in;
}

/* MAIN PRODUCT IMAGE — fixed square frame */
.amiz-product-main{
  width: 1024px;          /* desktop target width */
  max-width: 100%;        /* don't overflow smaller layouts */
  aspect-ratio: 1 / 1;    /* perfect square */
  margin: 0;              /* keep your own outer spacing */
}

/* Make the slide fill the square */
.amiz-product-main .swiper-wrapper,
.amiz-product-main .swiper-slide{
  height: 100%;
}

/* Image covers the square; works with our in-frame zoom */
.amiz-product-main .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;       /* crop as needed to keep square */
}

/* Optional: on very narrow screens, give a small gutter */
@media (max-width: 1100px){
  .amiz-product-main{
    width: min(100%, 1024px);
  }
}

/* PAGES (shared) */
.amiz-page{padding:40px 20px;color:#fff;background:#781C1E;}
.amiz-page .amiz-page-title{color:#FFFFBF;text-align:center;margin:0 0 20px;font-size:2rem;}
.amiz-page .amiz-page-content{line-height:1.6}

/* Cookie Policy extras */
.cookie-policy .amiz-page-content p{margin-bottom:14px;}
.cookie-policy a{color:#FFFFBF;text-decoration:underline;}



/* Make cookie banner title bigger */
.cmplz-cookiebanner .cmplz-title {
  font-size: 22px !important;   /* Bigger title */
  font-weight: 700 !important;
}

/* Make cookie banner message text bigger */
.cmplz-cookiebanner .cmplz-message {
  font-size: 18px !important;   /* Bigger text */
  line-height: 1.6 !important;  /* Better readability */
  font-weight: 500 !important;
}

