/* EXACT Cart Icon Styles from Brummstadt Live Theme */
.header-menu__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 32px;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.header-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 7px;
    border-radius: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    color: inherit;
}

.header-icon-button svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.header-icon-button:hover,
.header-icon-button:focus-visible {
    background-color: #f3f4f6;
}

.header-icon-button:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.header-icon-button:active {
    transform: scale(0.95);
}

.header-icon-button--cart {
    padding: 5px;
}

.header-icon-button--cart svg {
    width: 16px;
    height: 16px;
    transform: scale(1.6);
    transform-origin: center;
}

.header-icon-badge {
    position: absolute;
    top: -1px;
    right: -3px;
}

.icon--svg {
    display: inline-block;
    vertical-align: middle;
}

.bag-1-svg {
    width: 16px !important;
    height: 16px !important;
}

/* Cart Count Badge - NO OVERLAP */
.header__cart-count {
    font-size: 11px;
    color: #000;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1;
    min-width: 14px;
    text-align: center;
}

/* Green Bouncing Dot */
.cart-indicator-dot {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 6px;
    height: 6px;
    background: #00ff00;
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: 10;
    animation: happyBounce 1.5s ease-in-out infinite;
    box-shadow: 0 0 3px rgba(0, 255, 0, 0.5);
}

@keyframes happyBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-3px) scale(1.1);
    }
    50% {
        transform: translateY(0) scale(1);
    }
    75% {
        transform: translateY(-5px) scale(1.2);
    }
}

/* Cart Count Animation when Updated */
@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.cart-count-updated {
    animation: cartBounce 0.3s ease-in-out;
}

/* Hide cart count when 0 */
.cart-count:empty,
.cart-count:contains("0") {
    display: none;
}

/* Mobile adjustments */
@media screen and (max-width: 767px) {
    .header__cart-count {
        top: 0;
        right: 2px;
    }
}

/* Premium subtle hover effects - simplified to match other icons */
.header-menu__link--icon-cart .bag-1-svg path {
    transition: none;
}

/* Subtle glow on hover */
@keyframes subtleGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.header-menu__link--icon-cart:hover .cart-indicator-dot {
    animation: subtleGlow 1s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
}/* Currency Button States */
.currency-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
}

.currency-btn:hover {
    background-color: #f3f4f6 !important;
}

.currency-btn.active {
    background-color: #f3f4f6 !important;
}

.currency-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Currency Text */
.currency-btn .currency-text {
    opacity: 1 !important;
    width: auto !important;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.02em;
    font-weight: 500;
}

/* Currency Arrow - SVG rotation */
.currency-btn .currency-arrow {
    transition: transform 0.2s ease;
    width: 10px;
    height: 10px;
}

.currency-btn.active .currency-arrow {
    transform: rotate(180deg);
}

/* Modal Arrow Pointer positioning */
#currency-modal .currency-arrow-pointer {
    transition: left 0.2s ease;
}

/* Selected currency visual indicator */
.currency-option[data-selected="true"] {
    background-color: #f0fdf4 !important;
}

.currency-option[data-selected="true"] .currency-check {
    display: inline !important;
}

.search-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(80px, 12vh, 160px) 24px 48px;
    opacity: 0;
    pointer-events: none;
    z-index: 1000001;
    transition: opacity 0.25s ease;
}

.search-overlay[hidden] {
    display: none !important;
}

.search-overlay--active {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay__panel {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.2),
        0 -12px 24px rgba(15, 23, 42, 0.12);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.search-overlay--active .search-overlay__panel {
    opacity: 1;
    transform: translateY(0);
}

.search-overlay__panel-input {
    padding: 20px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.search-overlay__input-wrap {
    position: relative;
}

.search-overlay__input {
    width: 100%;
    padding: 14px 48px 14px 18px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-overlay__input:focus {
    border-color: #755AFF;
    box-shadow: 0 0 0 3px rgba(117, 90, 255, 0.15);
}

.search-overlay__close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 999px;
    transition: background-color 0.2s ease;
}

.search-overlay__close:hover {
    background-color: rgba(15, 23, 42, 0.08);
}

.search-overlay__results {
    margin-top: 0;
    max-height: min(60vh, 520px);
    overflow-y: auto;
    position: relative;
    padding: 0;
    background: #ffffff;
}

.search-overlay__results-heading {
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.search-overlay__results-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    margin: 12px 0 16px;
}

.search-overlay__results-list [data-entry-type] {
    border-radius: 12px;
}

.search-overlay__results::-webkit-scrollbar {
    width: 6px;
}

.search-overlay__results::-webkit-scrollbar-thumb {
    background-color: rgba(148, 163, 184, 0.6);
    border-radius: 999px;
}

.search-overlay__fade {
    pointer-events: none;
    position: sticky;
    bottom: 0;
    height: 32px;
    margin-top: -28px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92) 45%, rgba(255,255,255,1) 100%);
}

.search-overlay__fade span {
    font-size: 14px;
    letter-spacing: 0.35em;
    color: #cbd5f5;
    margin-bottom: 2px;
}

.search-overlay__message,
.search-overlay__empty {
    padding: 24px;
    text-align: center;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    background: #f9fafb;
}

.search-overlay__message--error {
    color: #dc2626;
    background: #fef2f2;
}

.search-overlay__message--muted {
    color: #6b7280;
    background: #f9fafb;
}

.search-overlay__empty {
    background: #f1f5f9;
}
/* BRUMMSTADT FOOTER STYLES - EXACT COPY FROM LIVE SHOPIFY THEME */

/* Root Variables */
:root {
  --gutter: 30px;
  --gutter-sm: 15px;
  --spacer: 1rem;
  --spacer-sm: 0.5rem;
  --color-background: 249, 250, 251;
  --color-text: 51, 51, 51;
  --color-borders: 229, 231, 235;
  --borders: 1px solid rgb(var(--color-borders));
  --transition: all 0.3s ease;
  --bs-gutter-x: 1.5rem;
}

/* Footer Base */
.footer {
  background-color: #f9fafb;
  color: #333;
  padding: 40px 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer .section {
  padding: 0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--bs-gutter-x) * -0.5);
}

/* Footer Blocks */
.footer .footer__block {
  padding: 0 calc(var(--bs-gutter-x) * 0.5);
  margin-bottom: calc(var(--gutter) / 2);
}

.footer .footer__block:not(:last-of-type) {
  margin-bottom: calc(var(--gutter) / 2);
}

/* Footer Block Widths */
@media screen and (min-width: 768px) {
  .footer .footer__block.footer__block--col-md-1 {
    width: 20%;
  }
  .footer .footer__block.footer__block--col-md-2 {
    width: 40%;
  }
  .footer .footer__block.footer__block--col-md-3 {
    width: 60%;
  }
  .footer .footer__block.footer__block--col-md-4 {
    width: 80%;
  }
  .footer .footer__block.footer__block--col-md-5 {
    width: 100%;
  }
  .footer .footer__block:not(:last-of-type) {
    margin-bottom: var(--gutter);
  }
}

/* Footer Titles */
.footer .footer__block-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.footer .h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

.footer .mb-2 {
  margin-bottom: 0.5rem !important;
}

/* Footer Text */
.footer .text-base {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
}

.footer .rte {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6b7280;
}

.footer .rte p {
  margin-bottom: 0.75rem;
}

.footer .rte p:last-child {
  margin-bottom: 0;
}

/* Footer Links */
.footer .footer__linklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer__linklist li {
  margin-bottom: 0.5rem;
}

.footer .footer__linklist li:last-child {
  margin-bottom: 0;
}

.footer .footer__linklist a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-block;
  transition: color 0.2s ease;
}

.footer .footer__linklist a:hover {
  color: #111827;
  text-decoration: underline;
}

.footer .text-break-all {
  word-break: break-word !important;
}

.footer .mt-3 {
  margin-top: 1rem !important;
}

/* Newsletter Form */
.footer .form--vertical > div {
  margin-bottom: 0.75rem;
}

.footer .input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  background-color: #fff;
  transition: border-color 0.15s ease;
}

.footer .input:focus {
  outline: none;
  border-color: #755AFF;
  box-shadow: 0 0 0 3px rgba(117, 90, 255, 0.1);
}

.footer .input--sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.footer .input--full {
  width: 100%;
}

/* Checkbox */
.footer .checkbox-container {
  margin: 1rem 0;
}

.footer .checkbox {
  display: flex;
  align-items: center;
}

.footer .checkbox input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  cursor: pointer;
}

.footer .checkbox label {
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
}

.footer .text-sm {
  font-size: 0.875rem;
}

/* Button */
.footer .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  text-transform: none;
  letter-spacing: normal;
}

.footer .btn--primary {
  background-color: #111827;
  color: #fff;
}

.footer .btn--primary:hover {
  background-color: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.footer .btn--full {
  width: 100%;
}

.footer .btn__text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer .material-icons-outlined {
  font-family: 'Material Icons Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* Bottom Footer */
.bottom-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
}

.grid-spacer {
  gap: 1rem;
}

.align-center {
  align-items: center;
}

.bottom-footer-grid {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.bottom-footer .grid__item {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

.medium-up--one-half {
  flex: 0 0 50%;
}

.small--order-1 {
  order: 1;
}

.small--order-2 {
  order: 2;
}

.medium-up--text-right {
  text-align: right !important;
}

.footer .footer-text {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

/* Trustpilot Styles */
.brummstadt_custom_trustpilot_footer_link_2023 {
  text-decoration: none;
  color: inherit;
  display: block;
}

.brummstadt_custom_trustpilot_footer_link_2023:hover,
.brummstadt_custom_trustpilot_footer_link_2023:focus {
  text-decoration: none;
  color: inherit;
}

.brummstadt_custom_trustpilot_footer_widget_2023 {
  margin-bottom: 10px;
}

.brummstadt_custom_trustpilot_footer_logo_stars_2023 {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
}

.brummstadt_custom_trustpilot_footer_logo_container_2023 {
  margin-right: 10px;
}

.brummstadt_custom_trustpilot_footer_logo_2023 {
  height: 26px;
  width: auto;
  display: block;
}

.brummstadt_custom_trustpilot_footer_stars_2023 {
  display: flex;
  flex-direction: row;
}

.brummstadt_custom_trustpilot_footer_star_2023 {
  display: inline-block;
}

.brummstadt_custom_trustpilot_footer_text_2023 {
  font-size: 0.75rem;
  font-weight: normal;
  white-space: normal;
  display: block;
  color: #6b7280;
}

/* DESKTOP FIRST - ENSURE SIDE BY SIDE ON DESKTOP */
@media screen and (min-width: 768px) {
  .bottom-footer-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .bottom-footer .grid__item:first-child {
    text-align: left !important;
  }
  
  .bottom-footer .grid__item:last-child {
    text-align: right !important;
  }
}

/* Mobile Responsive */
@media screen and (max-width: 767.98px) {
  .footer .footer__block {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .footer .footer__block + .footer__block {
    padding-top: calc(var(--gutter) - var(--gutter-sm));
  }
  
  .footer .footer__block + .footer__block::before {
    content: "";
    border-top: 1px solid #e5e7eb;
    position: relative;
    display: block;
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-bottom: var(--gutter);
  }
  
  .footer .bottom-footer-grid {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .footer .grid__item {
    width: 100%;
    flex: 0 0 100%;
  }
  
  .footer .trustpilot-section {
    margin-bottom: 20px;
  }
  
  .footer .small--text-left {
    text-align: left !important;
  }
}

/* Desktop Alignment */
@media screen and (min-width: 768px) {
  .medium-up--text-left {
    text-align: left !important;
  }
  
  .medium-up--text-right {
    text-align: right !important;
  }
  
  .bottom-footer .grid__item {
    display: inline-block;
    vertical-align: middle;
  }
  
  .bottom-footer .trustpilot-section {
    text-align: left !important;
  }
  
  .bottom-footer .grid__item:last-child {
    text-align: right !important;
  }
  
  .bottom-footer-grid {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
}

/* Color Scheme Classes */
.color-background-1 {
  background-color: #f9fafb;
}

.color-bg {
  background-color: #f9fafb;
}

.color-text {
  color: #333;
}

/* Shopify Section */
.shopify-section {
  position: relative;
}

.shopify-section-group-footer-group {
  margin-top: auto;
}/* FAQ Accordion Section - EXACT Style from Product Page Component */
.product-faq-section,
.contact-faq-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 40px;
    margin-bottom: 60px;
}

.product-faq-section .faq-header,
.contact-faq-section .faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.product-faq-section .faq-header h2,
.contact-faq-section .faq-header h2,
.contact-faq-section .faq-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.product-faq-section .faq-header p,
.contact-faq-section .faq-header p {
    font-size: 16px;
    color: #6b7280;
}

.product-faq-section .faq-container,
.contact-faq-section .faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-faq-section .faq-column,
.contact-faq-section .faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-faq-section .faq-item,
.contact-faq-section .faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-faq-section .faq-item:hover,
.contact-faq-section .faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #755AFF;
}

.product-faq-section .faq-question,
.contact-faq-section .faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: inherit;
}

.product-faq-section .faq-question:hover,
.contact-faq-section .faq-question:hover {
    background: #f8f9fa;
}

.product-faq-section .faq-item.active .faq-question,
.contact-faq-section .faq-item.active .faq-question {
    background: #f8f9fa;
    color: #755AFF;
}

.product-faq-section .faq-icon,
.contact-faq-section .faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: #6b7280;
}

.product-faq-section .faq-item.active .faq-icon,
.contact-faq-section .faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #755AFF;
}

.product-faq-section .faq-answer,
.contact-faq-section .faq-answer {
    display: none;
    opacity: 0;
    padding: 0 20px;
    transition: opacity 0.3s ease, padding 0.3s ease;
}

.product-faq-section .faq-item.active .faq-answer,
.contact-faq-section .faq-item.active .faq-answer {
    display: block;
    opacity: 1;
    padding: 0 20px 20px;
}

.product-faq-section .faq-answer p,
.contact-faq-section .faq-answer p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 15px;
    padding-top: 12px;
    margin: 0;
}

@media (max-width: 768px) {
    .product-faq-section,
    .contact-faq-section {
        padding: 40px 0;
    }

    .product-faq-section .faq-header,
    .contact-faq-section .faq-header {
        margin-bottom: 32px;
        padding: 0 20px;
    }

    .product-faq-section .faq-header h2,
    .contact-faq-section .faq-header h2,
    .contact-faq-section .faq-header h3 {
        font-size: 26px;
    }

    .product-faq-section .faq-header p,
    .contact-faq-section .faq-header p {
        font-size: 14px;
    }

    .product-faq-section .faq-container,
    .contact-faq-section .faq-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 16px;
    }

    .product-faq-section .faq-column,
    .contact-faq-section .faq-column {
        width: 100%;
        gap: 12px;
    }

    .product-faq-section .faq-item,
    .contact-faq-section .faq-item {
        margin-bottom: 12px;
    }

    .product-faq-section .faq-question,
    .contact-faq-section .faq-question {
        padding: 16px;
        font-size: 15px;
    }

    .product-faq-section .faq-answer,
    .contact-faq-section .faq-answer {
        font-size: 14px;
    }

    .product-faq-section .faq-answer p,
    .contact-faq-section .faq-answer p {
        padding-top: 10px;
    }
}/* Contact Page Styles - Inspired by Shopify Live Theme */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #755AFF 0%, #6346e6 100%);
    padding: 5rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.08);
    transform: skewX(-20deg);
    animation: subtle-shift 20s ease-in-out infinite;
}

@keyframes subtle-shift {
    0%, 100% { transform: skewX(-20deg) translateX(0); }
    50% { transform: skewX(-20deg) translateX(50px); }
}

.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0.6;
}

.orb-1 {
    width: 140px;
    height: 140px;
    top: 10%;
    left: 10%;
    animation: float-1 25s ease-in-out infinite;
}

.orb-2 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    right: 15%;
    animation: float-2 20s ease-in-out infinite;
}

.orb-3 {
    width: 70px;
    height: 70px;
    top: 50%;
    right: 30%;
    animation: float-3 22s ease-in-out infinite;
}

.orb-4 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 20%;
    animation: float-4 30s ease-in-out infinite;
}

.orb-5 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 10%;
    animation: float-5 35s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -20px) rotate(180deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -10px) rotate(90deg); }
    75% { transform: translate(-10px, 20px) rotate(270deg); }
}

@keyframes float-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.2); }
}

@keyframes float-5 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(-30px, 20px) scale(0.9); opacity: 0.8; }
    50% { transform: translate(20px, -30px) scale(1.1); opacity: 0.5; }
    75% { transform: translate(-20px, -20px) scale(1); opacity: 0.7; }
}

.contact-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-hero p {
    color: white;
    font-size: 1.25rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Form Wrapper */
.contact-form-wrapper {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.contact-form-wrapper h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.optional-tag {
    font-weight: 400;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
    font-family: inherit;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    outline: none;
    border-color: #755AFF;
    box-shadow: 0 0 0 3px rgba(117, 90, 255, 0.1);
}

.contact-input.border-red-500,
.contact-select.border-red-500,
.contact-textarea.border-red-500 {
    border-color: #ef4444;
}

.contact-textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

/* Order Number Field */
.order-number-field {
    position: relative;
}

.order-prefix {
    position: absolute;
    left: 1px;
    top: 1px;
    bottom: 1px;
    background: #f3f4f6;
    border-right: 1px solid #e5e7eb;
    border-radius: 7px 0 0 7px;
    padding: 0 14px;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    z-index: 1;
}

.order-input-with-prefix {
    padding-left: 68px !important;
}

/* File Upload */
.file-upload-button {
    background: white;
    border: 1.5px solid #755AFF;
    color: #755AFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.file-upload-button:hover:not(:disabled) {
    background: #755AFF;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(117,90,255,0.2);
}

.file-upload-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.file-upload-button .material-icons {
    font-size: 18px;
}

.file-upload-help {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #6b7280;
}

.uploaded-files {
    margin-top: 1rem;
}

.uploaded-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 0.625rem;
    transition: all 0.2s;
}

.uploaded-file:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.uploaded-file__info {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
    min-width: 0;
}

.uploaded-file__name {
    font-size: 0.875rem;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uploaded-file__size {
    font-size: 0.75rem;
    color: #999;
    white-space: nowrap;
}

.uploaded-file__remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1.5rem;
    line-height: 1;
    transition: color 0.2s;
    flex-shrink: 0;
}

.uploaded-file__remove:hover {
    color: #ef4444;
}

/* Submit Button */
.contact-submit {
    background: linear-gradient(135deg, #755AFF 0%, #6346e6 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(117, 90, 255, 0.3);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-submit .material-icons {
    font-size: 20px;
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Contact Method Cards */
.contact-method {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 1.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #755AFF;
}

.contact-method__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #755AFF 0%, #6346e6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
}

.contact-method__icon .material-icons {
    color: white;
    font-size: 24px;
}

.contact-method__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-method__text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.125rem;
    font-size: 0.9375rem;
}

.contact-method__link {
    color: #755AFF;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.2s ease;
    font-size: 1rem;
}

.contact-method__link:hover {
    gap: 0.625rem;
}

.contact-method__link .material-icons {
    font-size: 18px;
}

/* Support Status Widget */
.support-status-compact {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.support-status-compact:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-compact-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.support-compact-header h3 {
    margin: 0;
    font-size: 1.125rem;
    color: #111827;
    font-weight: 600;
}

.support-compact-header .material-icons {
    font-size: 24px;
    color: #ef4444;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
    100% { transform: scale(1); }
}

.support-live-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    background: linear-gradient(135deg, #ffffff 0%, #fdfeff 100%);
    border-radius: 12px;
    border: 1px solid rgba(117, 90, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 1rem;
}

.status-dot-compact {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.status-dot-compact.online {
    background: #04b88f;
    animation: pulse-online 2s infinite;
}

.status-dot-compact.offline {
    background: #888;
}

@keyframes pulse-online {
    0% { box-shadow: 0 0 0 0 rgba(4, 184, 143, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(4, 184, 143, 0); }
    100% { box-shadow: 0 0 0 0 rgba(4, 184, 143, 0); }
}

.status-text-compact {
    font-weight: 600;
    color: #212529;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.support-hours-info {
    padding: 1rem 1.125rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.95) 100%);
    border-radius: 12px;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #444;
    text-align: center;
    border: 1px solid rgba(117, 90, 255, 0.08);
    margin-bottom: 1rem;
}

.support-hours-info strong {
    color: #212529;
}

/* Holiday Information */
.support-holidays {
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 1rem;
}

.holidays-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.holidays-list {
    font-size: 0.75rem;
    color: #78350f;
    line-height: 1.5;
}

.holiday-item {
    margin: 0.25rem 0;
    margin-left: 1.375rem;
}

.holiday-date {
    font-weight: 600;
    color: #92400e;
    margin-right: 0.25rem;
}

/* Trust Section */
.trust-section {
    margin-top: 4rem;
}

.trust-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.trust-section > div > p {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

.trust-badge {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #755AFF;
}

.trust-badge__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #755AFF 0%, #6346e6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.trust-badge__icon .material-icons {
    color: white;
    font-size: 28px;
}

.trust-badge__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.trust-badge__text {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* FAQ Section styles moved to /css/faq-accordion.css for reusability */

/* Alerts */
.alert-success,
.alert-error {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success .material-icons,
.alert-error .material-icons {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Error Messages */
.text-red-500 {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .orb {
        opacity: 0.3;
    }

    .orb-1 { width: 80px; height: 80px; }
    .orb-2 { width: 60px; height: 60px; }
    .orb-3 { width: 40px; height: 40px; }
    .orb-4 { width: 30px; height: 30px; }
    .orb-5 { width: 50px; height: 50px; }

    .contact-method {
        padding: 1.25rem;
    }

    .trust-badge {
        padding: 1.5rem 1rem;
    }
}

/* Product Options - Info Toggle and Collapsible Descriptions */
.radio-option-label,
.checkbox-option-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.info-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
    margin-left: 0.4rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    opacity: 0.6;
}

.info-toggle:hover {
    opacity: 1;
    transform: scale(1.1);
}

.info-toggle.active {
    opacity: 1;
    transform: rotate(180deg);
}

.info-toggle.active svg {
    color: white;
}

.info-toggle svg {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.info-toggle:hover svg {
    color: #3b82f6;
}

.info-toggle.active svg {
    color: #3b82f6;
}

/* Info toggle button - modern style */
.info-toggle {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1;
    font-family: system-ui, -apple-system, sans-serif;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.info-toggle:hover {
    color: #3b82f6;
    opacity: 1;
}

.info-toggle.active {
    color: #3b82f6;
    opacity: 1;
}

/* Hide ALL descriptions by default */
.option-description,
.radio-option-sublabel,
.checkbox-option-description {
    display: none !important;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem;
    background: #fafbfc;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.5;
    animation: slideDown 0.2s ease;
    width: calc(100% - 1.5rem);
    clear: both;
}

.option-description.show,
.radio-option-sublabel.show,
.checkbox-option-description.show {
    display: block !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjust option content spacing when description is hidden */
.radio-option-content,
.checkbox-option-content {
    flex: 1;
}

/* Remove special RAM/Storage styles - use same as all options */

/* Popular choice badge - subtle style */
.radio-option[onclick*="4-64gb"] .radio-option-label::after {
    content: "Most Popular";
    font-size: 0.625rem;
    color: #059669;
    font-weight: 500;
    margin-left: 0.5rem;
    padding: 3px 8px;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    border-radius: 12px;
    vertical-align: middle;
}

/* New badge for 8GB/256GB */
.radio-option[onclick*="8-256gb"] .radio-option-label::after {
    content: "New 2025";
    font-size: 0.625rem;
    color: #7c3aed;
    font-weight: 500;
    margin-left: 0.5rem;
    padding: 3px 8px;
    background: #f3e8ff;
    border: 1px solid #e9d5ff;
    border-radius: 12px;
    vertical-align: middle;
}

/* Required badge style */
.required-badge {
    display: inline-block;
    background: #f0f7ff;
    color: #3b82f6;
    font-size: 0.625rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    margin-left: 0.5rem;
    vertical-align: middle;
    border: 1px solid #dbeafe;
}
html.search-overlay-open,
html.search-overlay-open body,
body.search-overlay-open {
    overflow: hidden;
    overscroll-behavior: contain;
}


.search-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(248, 250, 255, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
    backdrop-filter: blur(18px) saturate(140%);
}

.search-overlay--active::before {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay__panel {
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .search-overlay {
        padding: 32px 0 0;
    }

    .search-overlay__panel {
        width: 100%;
        border-radius: 18px;
        padding: 0;
    }

    .search-overlay__panel-input {
        padding: 16px 20px 14px;
    }

    .search-overlay__results-heading {
        padding: 12px 20px;
    }

    .search-overlay__results-list {
        margin: 12px 0;
    }
}
