.anime-universe {
  margin: 60px auto;
  text-align: center;
  padding: 20px;
  position: relative;
}

.anime-universe h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2em;
  color: #171102;
  margin-bottom: 30px;
}

.anime-universe img[usemap] {
  transition: transform 0.2s ease, filter 0.3s ease;
  width: 100%;
  max-width: 1400px;
  border-radius: 10px;
}

.anime-universe img[usemap]:hover {
  filter: drop-shadow(0 0 15px #ff6a00);
}

.anime-universe img[usemap]:active {
  transform: scale(1.02) rotate(-0.5deg);
  filter: brightness(1.1) drop-shadow(0 0 25px #ff0000);
}

/* 🔥 Animated golden arrow buttons */
.anime-button {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffcc00 0%, #ff9900 70%, #663300 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffae00;
  box-shadow: 0 0 15px #ff6600, 0 0 30px #ff6600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 10;
}

.anime-button::before {
  content: '➤';
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 0 6px #ffcc00;
}

.anime-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #ff9900, 0 0 35px #ff3300;
}

.anime-button:active {
  transform: scale(0.95);
  box-shadow: 0 0 25px #ffaa00 inset;
}

/* 📱 Mobile layout improvements */
@media screen and (max-width: 768px) {
  .anime-universe h2 {
    font-size: 1.6em;
    line-height: 1.3;
    padding: 0 15px;
  }

  .anime-universe img {
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 80, 0, 0.2);
    margin: 0 auto;
    transform: scale(1.05);
  }

  .anime-button {
    width: 40px !important;
    height: 40px !important;
    top: 63% !important;
    box-shadow: 0 0 10px #ff6600, 0 0 18px #ff8800;
  }

  .anime-button::before {
    font-size: 16px;
  }
}
/* 🌀 Shockwave Hover Animation */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 153, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
  }
}

.anime-button:hover {
  animation: pulse-ring 1.2s infinite;
}

/* 💥 Spark Flash on Click */
.anime-button:active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8e1 0%, transparent 70%);
  animation: flash-click 0.4s ease-out;
  z-index: -1;
}

@keyframes flash-click {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* ✨ Glowing Name Tags on Hover */
.anime-name {
  transition: text-shadow 0.3s ease;
}

.anime-button:hover + .anime-name {
  text-shadow: 0 0 10px #ffcc00, 0 0 20px #ffaa00;
  color: #fff1b8;
}

  font-size: 0.95em;
  line-height: 1.5;
  color: #f9f0d1;
}

@media screen and (max-width: 768px) {
  .footer-wrapper {
    padding: 0;
    margin: 0;
  }

  .footer-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 0 15px;
    scroll-snap-type: x mandatory;
  }

  .footer-section {
    min-width: 85%;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background-color: #0d0b0a;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: left;
  }

  .footer-section img {
    max-width: 100px;
    display: block;
    margin: 0 auto 10px;
  }

  .footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #ffd700;
  }

  .footer-section p,
  .footer-section a,
  .footer-section li {
    font-size: 0.95em;
    color: #ddd;
    line-height: 1.5;
  }

  .footer-payment {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .footer-payment img {
    width: 40px;
    margin: 5px;
  }

  .hero-text h1 {
    font-size: 1.3em !important;
    text-align: center;
    color: #f1c40f;
  }

  .hero-text p {
    font-size: 0.95em;
    text-align: center;
    margin-top: 10px;
    color: #ccc;
  }

  footer {
    padding-bottom: 40px !important;
  }
}

.katana-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.katana-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.katana-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

.katana-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: white;
  text-shadow: 2px 2px 10px #000;
}

.character-name {
  font-size: 2.5em;
  font-weight: bold;
  color: #00ffcc;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #00ffcc; }
  to { text-shadow: 0 0 20px #00ffcc, 0 0 30px #00ffcc; }
}
.product-card img {
  width: 100%;
  height: 160px; /* You can adjust this value */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.5s ease, filter 0.5s ease;
}


/* White background */
.single-product {
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

/* Product title */
.woocommerce div.product .product_title {
  font-size: 1.7em;
  font-weight: 600;
  color: #222;
}

/* Price styling */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 2em;
  font-weight: bold;
  color: #cc0000;
  background: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 15px;
}

/* Add to Cart button */
.woocommerce div.product form.cart button.single_add_to_cart_button {
  background-color: #cc0000;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 30px;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 0 15px #ff4d4d;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  background-color: #a30000;
  box-shadow: 0 0 25px #ff4d4d;
}

/* Product image zoom on hover */
.woocommerce div.product div.images img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 0 20px gold;
}
.woocommerce div.product div.images img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 40px #ffd700;
  z-index: 10;
}

/* Tabs & Content styling */
.woocommerce div.product .woocommerce-tabs h2,
.woocommerce div.product .product_meta {
  font-size: 1.2em;
  color: #444;
}
.woocommerce-Tabs-panel {
  font-size: 1.15em;
  line-height: 1.7;
  padding-top: 20px;
}

/* Add katana icon to Avis tab */
.woocommerce div.product .woocommerce-tabs ul.tabs li.avis_tab a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 18px;
  height: 18px;
  background-image: url('https://mangamaniak.com/wp-content/uploads/2025/06/katana_6837114.png');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

/* Pulse animation for active tab */
@keyframes pulseTab {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 215, 0, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 12px rgba(255, 215, 0, 0.6); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 215, 0, 0.4); }
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  animation: pulseTab 1.6s infinite;
}


/* CART PAGE STYLING */
.woocommerce-cart .site {
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.woocommerce-cart table.shop_table {
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  background: #fff;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  border: none;
  padding: 15px;
}

.woocommerce-cart .product-thumbnail img {
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.woocommerce-cart .cart_totals {
  border: 1px solid #eee;
  background: #fafafa;
  padding: 20px;
  margin-top: 20px;
}

.woocommerce-cart .cart_totals h2 {
  font-size: 1.3em;
  border-bottom: 2px solid gold;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

/* Buttons */
.woocommerce-cart .actions .button,
.woocommerce-cart .checkout-button {
  background-color: #cc0000;
  color: white;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: bold;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.woocommerce-cart .actions .button:hover,
.woocommerce-cart .checkout-button:hover {
  background-color: #a30000;
  box-shadow: 0 0 15px #ff4d4d;
}

/* CHECKOUT PAGE STYLING */
.woocommerce-checkout .site {
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.woocommerce-checkout h3 {
  font-size: 1.4em;
  border-bottom: 2px solid gold;
  padding-bottom: 6px;
  margin-bottom: 20px;
  color: #222;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px;
  width: 100%;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  margin-bottom: 15px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
  border: 1px solid #eee;
  background: #fafafa;
  padding: 20px;
}

/* Place Order Button */
#place_order {
  background-color: #cc0000;
  color: white;
  padding: 14px 30px;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s ease;
}
#place_order:hover {
  background-color: #a30000;
  box-shadow: 0 0 15px #ff4d4d;
}

/* Cart Page Title Styling */
.woocommerce-cart .woocommerce h1,
.woocommerce-cart .woocommerce-page h1,
.woocommerce-cart h1.entry-title {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #cc0000;
  font-size: 2.4em;
  font-weight: 700;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Add cart icon next to Cart title */
.woocommerce-cart h1.entry-title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url('https://mangamaniak.com/wp-content/uploads/2025/06/shopping-cart_9658755.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Checkout Page Background + Font */
.woocommerce-checkout .site {
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

/* Checkout title spacing + icon */
.woocommerce-checkout h1.entry-title {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #cc0000;
  font-size: 2.4em;
  font-weight: 700;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Add credit card icon next to Checkout title */
.woocommerce-checkout h1.entry-title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url('https://mangamaniak.com/wp-content/uploads/2025/06/credit-card_401825.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Checkout top samurai message */
.samurai-top-msg {
  font-size: 1.2em;
  color: #a30000;
  background: #fff3f3;
  padding: 15px 20px;
  margin-bottom: 30px;
  border-left: 4px solid #cc0000;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(204, 0, 0, 0.08);
}

/* Checkout bottom message */
.samurai-bottom-msg {
  background: #f9f9f9;
  padding: 20px 25px;
  margin-top: 40px;
  font-size: 1em;
  border-left: 4px solid #ffd700;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
.samurai-bottom-msg p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Custom Thank You message box */
.thankyou-katana-message {
  margin: 40px auto;
  max-width: 500px;
  background: #fff7f0;
  border-left: 4px solid #cc0000;
  padding: 25px 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  animation: fadeInSlide 1s ease-in-out;
}
.thankyou-katana-message img {
  width: 42px;
  margin-bottom: 15px;
}
.thankyou-katana-message p {
  font-size: 1.3em;
  color: #a30000;
  font-weight: bold;
  margin: 0;
}

/* Entry animation */
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 🛠️ Global mobile fix: apply spacing to all checkout and cart sections */
@media (max-width: 768px) {
  body.woocommerce-cart .site,
  body.woocommerce-checkout .site {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }

  /* Fix header titles (Cart / Checkout) */
  .woocommerce-cart h1.entry-title,
  .woocommerce-checkout h1.entry-title {
    margin-top: 60px !important;
    font-size: 2em;
    color: #cc0000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
  }

  .woocommerce-cart h1.entry-title::before,
  .woocommerce-checkout h1.entry-title::before {
    width: 28px;
    height: 28px;
    background-size: contain;
  }

  /* Form input padding and spacing */
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    box-sizing: border-box;
    border-radius: 6px;
  }

  /* Space between form rows */
  .woocommerce form .form-row {
    margin-bottom: 16px;
  }

  /* Coupon + summary block padding */
  .woocommerce-checkout .woocommerce-checkout-review-order,
  .woocommerce-checkout .woocommerce form.checkout {
    padding: 0 !important;
  }

  /* Fix summary box inner spacing */
  .woocommerce-checkout #order_review,
  .woocommerce-checkout .wc-block-checkout__order-summary {
    padding: 20px !important;
    box-sizing: border-box;
  }

  /* Custom messages padding */
  .thankyou-katana-message,
  .samurai-top-msg,
  .samurai-bottom-msg {
    margin: 30px 0;
    padding: 20px;
    font-size: 1em;
    text-align: center;
  }
}
/* Hide original hamburger lines */
.menu-toggle span,
.menu-toggle .ast-icon,
.menu-toggle .menu-toggle-icon {
  display: none !important;
}

/* Enlarge menu toggle button */
.menu-toggle {
  background: url('https://mangamaniak.com/wp-content/uploads/2025/06/menu_166441.png') center center no-repeat !important;
  background-size: contain !important;
  width: 60px !important;
  height: 60px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background-color: transparent !important;
  display: block !important;
}

/* Also check its wrapper (some themes constrain size here) */
.ast-button-wrap,
.header-main-layout,
.ast-header-break-point .ast-button-wrap {
  height: auto !important;
  max-height: none !important;
}


/* === FORCE SUBMENU STYLING === */

/* Generic override to all submenu containers */
ul ul {
  background-color: rgba(0, 0, 0, 0.95) !important;
  padding: 12px 0;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  min-width: 220px;
}

/* All submenu links */
ul ul li a {
  color: #aaccff !important;
  padding: 10px 20px !important;
  display: block;
  text-shadow: 0 0 4px rgba(170, 204, 255, 0.2);
  font-weight: normal;
}

/* Hover style */
ul ul li a:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.05);
  text-shadow: 0 0 8px #aaccff;
  border-radius: 5px;
}


/* 💥 Style shipping method box */
.woocommerce-checkout .woocommerce-shipping-methods label {
  font-weight: 600;
  color: #f1c40f; /* Gold text */
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 🌟 Add glow to selected shipping method */
.woocommerce-checkout .woocommerce-shipping-methods input[type="radio"]:checked + label {
  background-color: #111;
  color: #fff;
  border: 2px solid #f1c40f;
  box-shadow: 0 0 8px #f1c40f;
}

/* 🖼️ Optional icon for Mondial Relay (replace text with emoji/icon) */
label[for*="mondial_relay_point_relais"]:before {
  content: "📦 ";
  font-size: 18px;
}

label[for*="mondial_relay_domicile"]:before {
  content: "🏠 ";
  font-size: 18px;
}


/* === CATEGORY PAGE REBUILD: Manga Maniak === */

/* 1. White background for entire product category pages */
body.archive.woocommerce,
body.tax-product_cat {
  background: #ffffff !important;
  color: #111 !important;
}

/* 2. CATEGORY TITLE: Gold, Big, 3D Glow with fading glow and katana background */
.woocommerce-products-header h1.page-title {
  position: relative;
  z-index: 1;
  font-size: 52px;
  color: #e6b800 !important;
  font-family: 'Georgia', serif;
  text-shadow: 1px 1px 1px #000, 2px 2px 3px rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.woocommerce-products-header h1.page-title::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  z-index: -1;
  border-radius: 16px;
  filter: blur(12px);
  pointer-events: none;
}

/* 3. Katana image behind title */
.woocommerce-products-header {
  background: url('https://mangamaniak.com/wp-content/uploads/2025/06/katana-sword-ninja-weapon-japanese-warrior-assassin-illustration-isolated-on-white-background-vector.jpg') no-repeat center top;
  background-size: contain;
  padding-top: 100px;
  padding-bottom: 50px;
  background-color: #fff;
}

/* 4. Product title styling */
ul.products li.product .woocommerce-loop-product__title {
  color: #222 !important;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
}

/* 5. Price styling */
ul.products li.product .price {
  color: #e6b800 !important;
  font-size: 16px;
  text-align: center;
}

/* 6. Card hover effect for product tiles */
ul.products li.product {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

ul.products li.product:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* 7. Remove duplicate product image on archive pages */
.archive .ast-woocommerce-container .woocommerce ul.products li.product img.wp-post-image {
  display: none !important;
}


.floating-cart {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: transparent;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.floating-cart:hover {
  transform: scale(1.1);
}

.cart-icon {
  width: 50px;
  height: auto;
  max-height: 52px;
  filter: drop-shadow(0 0 5px gold);
  transition: filter 0.3s ease;
}

.floating-cart:hover .cart-icon {
  filter: drop-shadow(0 0 6px #ffd700) brightness(1.1);
}


/* === MANGA MANIAK: Product Showcase === */
.modern-product-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Oswald', sans-serif;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.06);
}

.modern-product-section h2 {
  font-size: 2.4em;
  color: #d4af37;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  position: relative;
}

.modern-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  justify-items: center;
}

.modern-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 220px;
  position: relative;
}

.modern-product-card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.modern-product-card::after {
  content: "🗡️";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.2em;
  animation: sparkle 1.8s infinite ease-in-out;
  color: #e6b800;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3) rotate(15deg); }
}

.modern-product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.modern-product-card:hover img {
  transform: scale(1.05);
}

.modern-product-info {
  padding: 15px;
  text-align: left;
}

.modern-product-title {
  font-size: 1em;
  font-weight: bold;
  color: #111;
  margin: 0 0 8px;
}

.modern-product-price {
  font-size: 0.9em;
  color: #444;
  margin-bottom: 12px;
}

.view-product-button {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  font-size: 0.8em;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.view-product-button:hover {
  background: #e6b800;
  color: #111;
  transform: scale(1.05);
}


@media screen and (max-width: 768px) {
  .modern-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }

  .modern-product-card {
    max-width: 100%;
  }

  .modern-product-section {
    padding: 40px 15px;
  }

  .view-product-button {
    font-size: 0.75em;
    padding: 5px 10px;
  }

  .modern-product-title {
    font-size: 0.95em;
  }

  .modern-product-price {
    font-size: 0.85em;
  }
}


.modern-product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.modern-product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.view-product-button {
  margin-top: auto;
}



.anime-universe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 10px;
  background-color: #1a1a1a;
}

.anime-universe-title {
  width: 100%;
  text-align: center;
  font-size: 42px;
  color: #e6b800;
  text-shadow: 1px 1px 2px #000, 2px 2px 6px #ffc107, 0 0 12px rgba(255, 217, 0, 0.7);
  font-family: 'Cinzel', serif;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}

.character-container {
  width: 200px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.character-container img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.character-container:hover img {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.8), 0 0 50px rgba(255, 204, 0, 0.5);
}

.character-name {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #ffe600;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 1px 1px 3px #000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.character-container:hover .character-name {
  opacity: 1;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .character-container {
    width: 45%;
  }

  .anime-universe-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .character-name {
    font-size: 12px;
    padding: 4px 8px;
  }
}


/* Brighter Gold Title */
.anime-universe-title {
  width: 100%;
  text-align: center;
  font-size: 42px;
  color: #f4c430;
  text-shadow: 1px 1px 2px #000, 2px 2px 6px #ffe066, 0 0 16px rgba(255, 215, 0, 0.9);
  font-family: 'Cinzel', serif;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}

/* Full-width horizontal character row on desktop */
.anime-universe {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  background-color: #1a1a1a;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow-x: auto;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}


/* Fix width so 6 can fit in a row */
.character-container {
  flex: 0 0 15%;
  min-width: 200px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

/* Keep mobile layout as-is */
@media screen and (max-width: 768px) {
  .anime-universe {
    flex-wrap: wrap;
    justify-content: center;
  }

  .character-container {
    width: 45%;
    flex: unset;
    min-width: unset;
  }

  .anime-universe-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .character-name {
    font-size: 12px;
    padding: 4px 8px;
  }
}


/* Force container wrappers to not restrict width */
.wp-block-group,
.entry-content,
.container,
.site-content {
  overflow-x: visible;
  max-width: 100vw !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}



/* ===== Manga Maniak Header Upgrade ===== */

/* General Menu Styling */
.main-navigation ul li a {
  color: #FFD700;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Hover Glow */
.main-navigation ul li a:hover {
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.8), 0 0 12px rgba(255, 215, 0, 0.4);
}

/* Active/Current Menu Item */
.main-navigation ul li.current-menu-item > a {
  text-shadow: 0 0 10px rgba(255, 215, 0, 1);
  border-bottom: 2px solid #FFD700;
}

/* Dropdown Styling */
.main-navigation ul li ul {
  background-color: #000;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.main-navigation ul li ul li a {
  color: #FFD700;
  padding: 10px 15px;
}

.main-navigation ul li ul li a:hover {
  background-color: rgba(255, 215, 0, 0.1);
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

/* Cart Button */
.header-cart {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
  transition: transform 0.2s ease;
}

.header-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.9);
}

/* Responsive Tweaks (optional) */
@media (max-width: 768px) {
  .main-navigation ul li a {
    font-size: 16px;
  }

  .header-cart {
    font-size: 14px;
    padding: 6px 12px;
  }
}



/* === Full Mobile Header Menu Styles === */
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    background: #000;
    padding: 10px 20px;
    gap: 20px;
  }

  .main-navigation ul li {
    width: 100%;
  }

  .main-navigation ul li a {
    font-size: 16px;
    padding: 10px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  }

  .header-cart {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    padding: 10px 20px;
  }

  .menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    color: #FFD700;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
  }
}
