/** Shopify CDN: Minification failed

Line 37:0 All "@import" rules must come first
Line 264:10 Unexpected "{"
Line 264:19 Expected ":"

**/
/* ============================================
   GERMAG 2026 - Custom Theme Styles
   ============================================ */

/* === CSS Variables === */
:root {
  --germag-red: #DD3333;
  --germag-red-hover: #C42B2B;
  --germag-red-light: #FFF0F0;
  --germag-dark: #040707;
  --germag-dark-hover: #1A1D1D;
  --germag-gray-light: #F4F4F4;
  --germag-gray: #E8E8E8;
  --germag-gray-medium: #999;
  --germag-white: #FFFFFF;
  --germag-success: #27AE60;
  --germag-warning: #F39C12;
  --germag-radius: 12px;
  --germag-radius-sm: 8px;
  --germag-radius-lg: 16px;
  --germag-shadow-sm: 0 2px 8px rgba(4, 7, 7, 0.06);
  --germag-shadow-md: 0 4px 16px rgba(4, 7, 7, 0.1);
  --germag-shadow-lg: 0 8px 32px rgba(4, 7, 7, 0.12);
  --germag-shadow-hover: 0 12px 40px rgba(4, 7, 7, 0.16);
  --germag-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --germag-transition-fast: 0.15s ease;
}

/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* === Global Typography Override === */
body,
.body,
input,
textarea,
select,
button {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.hN {
  font-family: 'Montserrat', 'Inter', sans-serif !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* === Smooth Scroll === */
html {
  scroll-behavior: smooth;
}

/* === Global Link Style === */
a {
  transition: color var(--germag-transition-fast);
}

/* === Modern Buttons === */
.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button {
  border-radius: var(--germag-radius-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  transition: all var(--germag-transition) !important;
  text-transform: none !important;
  font-size: 1.4rem;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background-color: var(--germag-red) !important;
  color: var(--germag-white) !important;
  border: none !important;
}

.button--primary:hover {
  background-color: var(--germag-red-hover) !important;
  box-shadow: var(--germag-shadow-md);
}

/* === Product Card Modern === */
.card-wrapper {
  transition: transform var(--germag-transition), box-shadow var(--germag-transition);
  border-radius: var(--germag-radius);
  overflow: hidden;
}

.card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--germag-shadow-hover);
}

.card {
  border-radius: var(--germag-radius) !important;
  overflow: hidden;
  border: 1px solid rgba(4, 7, 7, 0.06);
}

.card__inner {
  border-radius: var(--germag-radius) !important;
}

.card__media {
  border-radius: var(--germag-radius) var(--germag-radius) 0 0 !important;
  overflow: hidden;
}

.card__media img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

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

.card__heading {
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__heading a {
  text-decoration: none !important;
  color: var(--germag-dark);
}

.card__heading a:hover {
  color: var(--germag-red);
}

/* Price Styling */
.price .money,
.price-item--regular,
.price-item--sale {
  font-weight: 700 !important;
  font-size: 1.6rem !important;
}

.price-item--sale {
  color: var(--germag-red) !important;
}

.price-item--regular .price-item--regular {
  font-weight: 400 !important;
  color: var(--germag-gray-medium) !important;
  text-decoration: line-through !important;
}

/* === Germag Product Ribbons === */
.germag-ribbons {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.germag-ribbon {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 6px;
  line-height: 1.3;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.germag-ribbon--sale {
  background: var(--germag-red);
  color: #FFFFFF;
}

/* Sale Badge */
.badge {
  border-radius: var(--germag-radius-sm) !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  padding: 0.4rem 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Quick Add Button */
.quick-add__submit {
  background-color: var(--germag-red) !important;
  color: var(--germag-white) !important;
  border: none !important;
  border-radius: var(--germag-radius-sm) !important;
  font-weight: 700 !important;
  transition: all var(--germag-transition) !important;
}

.quick-add__submit:hover {
  background-color: var(--germag-red-hover) !important;
  box-shadow: 0 4px 12px rgba(221, 51, 51, 0.25);
}

/* Card Add to Cart button */
.card-wrapper .button,
.card-wrapper .quick-add__submit,
.card-wrapper [name="add"] {
  background-color: var(--germag-red) !important;
  color: var(--germag-white) !important;
  border: none !important;
}

.card-wrapper .button:hover,
.card-wrapper .quick-add__submit:hover,
.card-wrapper [name="add"]:hover {
  background-color: var(--germag-red-hover) !important;
}

/* === Input Fields Modern === */
.field__input,
.select__select,
.customer .field input,
.localization-form__select {
  border-radius: var(--germag-radius-sm) !important;
  border: 1.5px solid var(--germag-gray) !important;
  transition: border-color var(--germag-transition-fast), box-shadow var(--germag-transition-fast) !important;
  font-size: 1.4rem;
  padding: 1.2rem 1.6rem;
}

.field__input:focus,
.select__select:focus,
.customer .field input:focus {
  border-color: var(--germag-red) !important;
  box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.1) !important;
  outline: none !important;
}

/* === Section Spacing === */
.section-{{ section.id }}-padding {
  scroll-margin-top: 80px;
}

/* === Announcement Bar === */
.announcement-bar {
  background-color: var(--germag-dark) !important;
  color: var(--germag-white) !important;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* === Header Modern === */
.header-wrapper {
  box-shadow: var(--germag-shadow-sm);
  transition: box-shadow var(--germag-transition), transform var(--germag-transition);
}

.header-wrapper--border-bottom {
  border-bottom: none !important;
}

/* Announcement bar should scroll away, only header sticks */
.shopify-section-group-header-group {
  z-index: 1000;
}

/* Header icons */
.header__icon .icon {
  width: 2.2rem;
  height: 2.2rem;
}

/* Search */
.search__input {
  border-radius: 24px !important;
  border: 1.5px solid var(--germag-gray) !important;
  padding: 1rem 2rem !important;
  font-size: 1.4rem;
}

.search__input:focus {
  border-color: var(--germag-red) !important;
  box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.1) !important;
}

/* Cart count bubble */
.cart-count-bubble {
  background-color: var(--germag-red) !important;
  color: var(--germag-white) !important;
  font-weight: 700;
  min-width: 1.8rem;
  height: 1.8rem;
  font-size: 1rem;
  border-radius: 50%;
}

/* === Mega Menu Nav === */
.germag-mega-nav {
  display: flex;
  align-items: center;
}

.header__menu-item {
  font-weight: 600 !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--germag-transition-fast) !important;
  padding: 0.8rem 0.9rem !important;
  white-space: nowrap;
}

.header__menu-item:hover,
.header__menu-item span:hover {
  color: var(--germag-red) !important;
}

.header__active-menu-item {
  color: var(--germag-red) !important;
}

/* Mobile drawer - force dark theme */
.menu-drawer {
  background: var(--germag-dark) !important;
  color: var(--germag-white) !important;
}

.menu-drawer .menu-drawer__menu-item {
  color: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.menu-drawer .menu-drawer__menu-item:hover,
.menu-drawer .menu-drawer__menu-item--active {
  color: var(--germag-red) !important;
}

.menu-drawer .menu-drawer__close-button {
  color: var(--germag-white) !important;
}

.menu-drawer .menu-drawer__submenu {
  background: var(--germag-dark) !important;
}

.menu-drawer__utility-links {
  background: rgba(255, 255, 255, 0.05) !important;
}

/* === Slideshow Desktop/Mobile Image Switch === */
.slideshow__desktop-img,
.slideshow__mobile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slideshow__desktop-img img,
.slideshow__mobile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* small-hide = hidden on mobile (< 750px) */
@media screen and (max-width: 749px) {
  .slideshow__desktop-img.small-hide {
    display: none !important;
  }
}

/* medium-hide large-up-hide = hidden on tablet+ (>= 750px) */
@media screen and (min-width: 750px) {
  .slideshow__mobile-img.medium-hide {
    display: none !important;
  }
}

/* === Slideshow / Hero Banner === */
.slideshow {
  border-radius: 0 !important;
}

.slideshow__text h2,
.banner__heading {
  font-size: clamp(2.8rem, 5vw, 5.6rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slideshow .button,
.banner .button {
  font-size: 1.5rem !important;
  padding: 1.4rem 3.2rem !important;
  border-radius: var(--germag-radius-sm) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Slider navigation */
.slider-counter {
  border-radius: var(--germag-radius-sm);
}

/* === Benefits Bar === */
.germag-benefits {
  padding: 2.4rem 0;
  background: var(--germag-white);
  border-bottom: 1px solid var(--germag-gray);
  overflow-x: hidden;
}

.germag-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

@media screen and (max-width: 749px) {
  .germag-benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    padding: 0 1.5rem;
  }
}

.germag-benefits__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--germag-radius);
  background: var(--germag-gray-light);
  transition: all var(--germag-transition);
  min-width: 0;
}

.germag-benefits__item:hover {
  background: var(--germag-white);
  box-shadow: var(--germag-shadow-md);
  transform: translateY(-2px);
}

.germag-benefits__icon {
  width: 4.8rem;
  height: 4.8rem;
  min-width: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--germag-red-light);
  border-radius: var(--germag-radius-sm);
  color: var(--germag-red);
}

.germag-benefits__icon svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke: var(--germag-red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.germag-benefits__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.germag-benefits__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--germag-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.germag-benefits__desc {
  font-size: 1.2rem;
  color: var(--germag-gray-medium);
  line-height: 1.4;
}

/* === Category Carousel Section === */
.germag-category-section {
  padding: 4rem 0;
}

.germag-category-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--page-width);
  margin: 0 auto 2.4rem;
  padding: 0 2rem;
}

.germag-category-section__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--germag-dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.8rem;
}

.germag-category-section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4rem;
  height: 3px;
  background: var(--germag-red);
  border-radius: 2px;
}

.germag-category-section__link {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--germag-red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--germag-transition);
}

.germag-category-section__link:hover {
  gap: 0.8rem;
}

.germag-category-section__link::after {
  content: '\2192';
  transition: transform var(--germag-transition);
}

.germag-category-section__link:hover::after {
  transform: translateX(4px);
}

/* === Trust Section === */
.germag-trust {
  padding: 6rem 0;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F4F4F4 100%);
}

.germag-trust__header {
  text-align: center;
  max-width: var(--page-width);
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.germag-trust__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--germag-dark);
  margin-bottom: 1rem;
}

.germag-trust__subtitle {
  font-size: 1.6rem;
  color: var(--germag-gray-medium);
  max-width: 60rem;
  margin: 0 auto;
}

.germag-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media screen and (max-width: 989px) {
  .germag-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .germag-trust__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .germag-trust__title {
    font-size: 2.4rem;
  }
}

.germag-trust__card {
  text-align: center;
  padding: 3.2rem 2.4rem;
  background: var(--germag-white);
  border-radius: var(--germag-radius-lg);
  box-shadow: var(--germag-shadow-sm);
  transition: all var(--germag-transition);
  border: 1px solid rgba(4, 7, 7, 0.04);
}

.germag-trust__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--germag-shadow-lg);
}

.germag-trust__icon {
  width: 6.4rem;
  height: 6.4rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--germag-red-light);
  border-radius: 50%;
}

.germag-trust__icon svg {
  width: 3.2rem;
  height: 3.2rem;
  stroke: var(--germag-red);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.germag-trust__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--germag-red);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.germag-trust__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--germag-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.germag-trust__description {
  font-size: 1.3rem;
  color: var(--germag-gray-medium);
  line-height: 1.5;
}

/* === Categories Grid === */
.germag-categories-grid {
  padding: 4rem 0;
}

.germag-categories-grid__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media screen and (max-width: 989px) {
  .germag-categories-grid__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 549px) {
  .germag-categories-grid__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.germag-categories-grid__item {
  position: relative;
  border-radius: var(--germag-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.germag-categories-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.germag-categories-grid__item:hover img {
  transform: scale(1.08);
}

.germag-categories-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 7, 7, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: background var(--germag-transition);
}

.germag-categories-grid__item:hover .germag-categories-grid__overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(221, 51, 51, 0.8) 100%);
}

.germag-categories-grid__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--germag-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 990px) {
  .germag-categories-grid__name {
    font-size: 1.8rem;
  }
}

/* === Promo Banner === */
.germag-promo {
  padding: 4rem 0;
}

.germag-promo__container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.germag-promo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--germag-radius-lg);
  overflow: hidden;
  background: var(--germag-dark);
  min-height: 32rem;
}

@media screen and (max-width: 749px) {
  .germag-promo__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.germag-promo__image {
  overflow: hidden;
}

.germag-promo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.germag-promo__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  color: var(--germag-white);
}

.germag-promo__label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--germag-red);
  margin-bottom: 1.2rem;
}

.germag-promo__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.6rem;
  color:white;
}

.germag-promo__description {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 2.4rem;
}

.germag-promo__button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--germag-red);
  color: var(--germag-white);
  padding: 1.4rem 3.2rem;
  border-radius: var(--germag-radius-sm);
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--germag-transition);
  border: none;
  cursor: pointer;
  width: fit-content;
}

.germag-promo__button:hover {
  background: var(--germag-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221, 51, 51, 0.3);
}

/* === Newsletter Modern === */
.germag-newsletter {
  padding: 6rem 0;
  background: var(--germag-dark);
  position: relative;
  overflow: hidden;
}

.germag-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(221, 51, 51, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(221, 51, 51, 0.05) 0%, transparent 50%);
}

.germag-newsletter__container {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.germag-newsletter__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--germag-white);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.card__badge.top {
  display: none !important;
}


.germag-newsletter__text {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3.2rem;
  line-height: 1.6;
}


/* Hide out of stock products completely */
.card-wrapper:has(.badge--sold-out) {
  display: none !important;
}

.grid__item:has(.badge--sold-out) {
  display: none !important;
}


.germag-newsletter__form {
  display: flex;
  gap: 1.2rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media screen and (max-width: 549px) {
  .germag-newsletter__form {
    flex-direction: column;
  }
  .germag-newsletter__title {
    font-size: 2.2rem;
  }
}

.germag-newsletter__input {
  flex: 1;
  padding: 1.4rem 2rem;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--germag-white);
  font-size: 1.4rem;
  outline: none;
  transition: all var(--germag-transition-fast);
}

.germag-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.germag-newsletter__input:focus {
  border-color: var(--germag-red);
  background: rgba(255, 255, 255, 0.12);
}

.germag-newsletter__button {
  padding: 1.4rem 3.2rem;
  background: var(--germag-red);
  color: var(--germag-white);
  border: none;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--germag-transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.germag-newsletter__button:hover {
  background: var(--germag-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221, 51, 51, 0.3);
}

/* === ANPC Badges === */
.germag-anpc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 2rem 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.6rem;
}

.germag-anpc__badge {
  display: inline-flex;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.germag-anpc__badge:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.germag-anpc__badge img {
  height: 5rem;
  width: auto;
  object-fit: contain;
}

@media screen and (max-width: 749px) {
  .germag-anpc {
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
  }

  .germag-anpc__badge img {
    height: 4rem;
  }
}

/* === Footer Modern === */
.footer {
  background: var(--germag-dark) !important;
  color: var(--germag-white) !important;
  padding-top: 6rem !important;
}

.footer__content-top {
  border: none !important;
}

.footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color var(--germag-transition-fast) !important;
}

.footer a:hover {
  color: var(--germag-red) !important;
}

.footer h2,
.footer .footer-block__heading {
  color: var(--germag-white) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: 1.4rem !important;
  letter-spacing: 0.06em;
  margin-bottom: 2rem !important;
}

.footer__content-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 2.4rem !important;
  margin-top: 4rem !important;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 1.2rem;
}

/* === Product Page === */

.product__title h1 {
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: var(--germag-dark);
}

.product__info-container .price {
  font-size: 2.4rem !important;
}

.product__info-container .price-item--sale {
  color: var(--germag-red) !important;
  font-weight: 800 !important;
  font-size: 2.8rem !important;
}

/* Product Add to Cart - BIG RED BUTTON */
.product-form__submit {
  background: var(--germag-red) !important;
  color: var(--germag-white) !important;
  border: none !important;
  border-radius: var(--germag-radius-sm) !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  padding: 1.8rem 3.2rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--germag-transition) !important;
  min-height: 5.6rem;
}

.product-form__submit:hover {
  background: var(--germag-red-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221, 51, 51, 0.3) !important;
}

/* Buy Now button */
.shopify-payment-button .shopify-payment-button__button {
  background: var(--germag-dark) !important;
  border-radius: var(--germag-radius-sm) !important;
  min-height: 5.2rem;
  font-weight: 700 !important;
}

/* Product Trust Badges */
.germag-product-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--germag-gray);
}

.germag-product-trust__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  color: var(--germag-gray-medium);
}

.germag-product-trust__item svg {
  width: 1.8rem;
  height: 1.8rem;
  stroke: var(--germag-success);
  fill: none;
  stroke-width: 2;
  min-width: 1.8rem;
}

/* === Collapsible Description === */
.germag-desc {
  position: relative;
  margin: 2rem 0;
}

.germag-desc__preview {
  max-height: 12rem;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.4rem;
  line-height: 1.7;
  color: #444;
}

.germag-desc--open .germag-desc__preview {
  max-height: 300rem;
}

.germag-desc__fade {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.germag-desc--open .germag-desc__fade {
  opacity: 0;
}

.germag-desc__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.8rem 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--germag-red);
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: gap 0.2s ease, color 0.15s ease;
}

.germag-desc__toggle:hover {
  gap: 0.8rem;
  color: var(--germag-red-hover);
}

.germag-desc__toggle svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.germag-desc--open .germag-desc__toggle svg {
  transform: rotate(180deg);
}

/* Product Tabs */
.germag-product-tabs {
  max-width: var(--page-width);
  margin: 4rem auto;
  padding: 0 2rem;
}

.germag-product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--germag-gray);
  margin-bottom: 2.4rem;
}

.germag-product-tabs__tab {
  padding: 1.2rem 2.4rem;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--germag-gray-medium);
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: color var(--germag-transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.germag-product-tabs__tab:hover {
  color: var(--germag-dark);
}

.germag-product-tabs__tab.active {
  color: var(--germag-dark);
}

.germag-product-tabs__tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--germag-red);
  border-radius: 2px 2px 0 0;
}

/* Shipping info on product page */
.germag-shipping-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.6rem;
  background: var(--germag-gray-light);
  border-radius: var(--germag-radius-sm);
  font-size: 1.3rem;
  color: var(--germag-dark);
  margin: 1.6rem 0;
}

.germag-shipping-info svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--germag-red);
  fill: none;
  stroke-width: 2;
  min-width: 2rem;
}

/* === Cart Drawer Modern === */
.cart-drawer {
  border-radius: var(--germag-radius-lg) 0 0 var(--germag-radius-lg) !important;
  box-shadow: var(--germag-shadow-lg) !important;
}

/* Free shipping progress bar */
.germag-free-shipping {
  padding: 1.2rem 1.6rem;
  background: var(--germag-gray-light);
  border-radius: var(--germag-radius-sm);
  margin-bottom: 1.6rem;
  text-align: center;
}

.germag-free-shipping__bar {
  height: 4px;
  background: var(--germag-gray);
  border-radius: 2px;
  margin-top: 0.8rem;
  overflow: hidden;
}

.germag-free-shipping__progress {
  height: 100%;
  background: var(--germag-success);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.germag-free-shipping__text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--germag-dark);
}

/* === Mobile Bottom Navigation === */
/* Hidden by default (inline style display:none), shown only on mobile */
.germag-mobile-nav {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .germag-mobile-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--germag-white);
    border-top: 1px solid var(--germag-gray);
    justify-content: space-around;
    align-items: center;
    padding: 0.8rem 0 calc(0.8rem + env(safe-area-inset-bottom));
    z-index: 999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  }

  .germag-mobile-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: var(--germag-gray-medium);
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--germag-transition-fast);
    padding: 0.4rem 1.2rem;
  }

  .germag-mobile-nav__item.active,
  .germag-mobile-nav__item:hover {
    color: var(--germag-red);
  }

  .germag-mobile-nav__item svg {
    width: 2.2rem !important;
    height: 2.2rem !important;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
  }

  /* Add bottom padding to body so content doesn't hide behind nav */
  body {
    padding-bottom: 7rem;
  }
}

/* === Fade-in Animation === */
@keyframes germagFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.germag-animate {
  opacity: 0;
  animation: germagFadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.germag-animate--delay-1 { animation-delay: 0.1s; }
.germag-animate--delay-2 { animation-delay: 0.2s; }
.germag-animate--delay-3 { animation-delay: 0.3s; }
.germag-animate--delay-4 { animation-delay: 0.4s; }

/* === Count Up Animation (Trust Section) === */
@keyframes germagCountUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.germag-trust__number[data-count] {
  animation: germagCountUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* === Breadcrumbs Modern === */
.breadcrumbs {
  font-size: 1.2rem;
  color: var(--germag-gray-medium);
  padding: 1.2rem 0;
}

.breadcrumbs a {
  color: var(--germag-gray-medium);
  text-decoration: none;
  transition: color var(--germag-transition-fast);
}

.breadcrumbs a:hover {
  color: var(--germag-red);
}

/* === Quantity Selector Modern === */
.quantity {
  border-radius: var(--germag-radius-sm) !important;
  border: 1.5px solid var(--germag-gray) !important;
  overflow: hidden;
}

.quantity__button {
  transition: background var(--germag-transition-fast) !important;
}

.quantity__button:hover {
  background: var(--germag-gray-light) !important;
}

/* === Related Products === */
.related-products .related-products__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* === Predictive Search Modern === */
.predictive-search {
  border-radius: 0 0 var(--germag-radius) var(--germag-radius) !important;
  box-shadow: var(--germag-shadow-lg) !important;
  border-top: 3px solid var(--germag-red);
}

/* === Selection Color === */
::selection {
  background: rgba(221, 51, 51, 0.15);
  color: var(--germag-dark);
}

/* === Placeholder SVG Fix === */
.placeholder-svg,
.placeholder-svg.placeholder {
  max-height: 400px;
  background: var(--germag-gray-light);
  fill: var(--germag-gray);
}

.slideshow .placeholder-svg,
.slideshow .placeholder {
  max-height: none;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  fill: rgba(255, 255, 255, 0.05);
}

/* Slideshow without images - nice gradient background */
.slideshow--placeholder .banner__media,
.slideshow .media.placeholder {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 40%, #DD3333 100%) !important;
}

/* Ensure slideshow images cover properly */
.slideshow .banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slideshow medium height fix */
.banner--medium {
  min-height: 46rem;
}

@media screen and (min-width: 750px) {
  .banner--medium {
    min-height: 56rem;
  }
}

/* === Footer Fix === */
.footer .footer-block--menu .list-menu__item--link {
  padding: 0.4rem 0;
  font-size: 1.3rem;
}

.footer .footer-block__details-content.rte {
  font-size: 1.3rem;
  line-height: 1.8;
}

.footer .footer-block__details-content.rte p {
  color: rgba(255, 255, 255, 0.7);
}

/* Remove brand_information empty block space */
.footer-block__brand-info:empty {
  display: none;
}

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--germag-gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--germag-gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--germag-gray-medium);
}
