/* ============================================================
   MODERN OVERRIDE STYLESHEET
   Maximum Visual Upgrade — Layout Safe
   This file loads LAST and overrides only cosmetic rules.
   ============================================================ */


/* ============================================================
   1. GLOBAL MODERNIZATION
   ============================================================ */

html, body {
    -webkit-font-smoothing: antialiased;
    background: #fafafa;
}

a {
    transition: color .22s ease, opacity .22s ease;
}

img {
    border-radius: 6px;
    transition: transform .25s ease;
}

img:hover {
    transform: scale(1.01);
}


/* ============================================================
   2. HEADER + NAVIGATION
   ============================================================ */

#top {
    background: #f0f4f8 !important;
    border-bottom: 1px solid #e1e7ee !important;
}

#top-links a:hover {
    color: #0a6fdc !important;
}

.header-logo img {
    transition: transform .25s ease;
}

.header-logo img:hover {
    transform: scale(1.04);
}

#menu {
    background: #0a6fdc !important;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

#menu .nav > li > a {
    transition: background .22s ease, opacity .22s ease;
}

#menu .nav > li > a:hover {
    background: rgba(255,255,255,.12);
    opacity: .95;
}


/* ============================================================
   3. SEARCH BAR
   ============================================================ */

#search input {
    border-radius: 24px !important;
    transition: border-color .22s ease, box-shadow .22s ease;
}

#search input:focus {
    border-color: #0a6fdc !important;
    box-shadow: 0 0 0 3px rgba(10,111,220,.15) !important;
}

#search button {
    border-radius: 24px !important;
    transition: background .22s ease;
}

#search button:hover {
    background: #084fa3 !important;
}


/* ============================================================
   4. PRODUCT CARDS — MODERN
   ============================================================ */

.product-thumb {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.06) !important;
    transition: transform .22s ease, box-shadow .22s ease !important;
}

.product-thumb:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.12) !important;
}

.product-thumb .caption a:hover {
    color: #0a6fdc !important;
}

.product-thumb .button-group button {
    border-radius: 8px !important;
    background-color: #0a6fdc !important;
    transition: background .22s ease, transform .22s ease !important;
}

.product-thumb .button-group button:hover {
    background-color: #084fa3 !important;
    transform: translateY(-2px) !important;
}


/* ============================================================
   5. PRODUCT PAGE — MODERN
   ============================================================ */
   /* ---------------------------------------------------------
   PREMIUM MAIN IMAGE BOX
--------------------------------------------------------- */
.product-main-image {
    transition: opacity .25s ease;
    display: block;
    object-fit: contain;
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
    border-radius: 6px;
    background: #fff;
}

/* ---------------------------------------------------------
   PREMIUM THUMBNAILS
--------------------------------------------------------- */
.image-additional a {
    display: inline-block;
    transition: transform .15s ease, box-shadow .15s ease;
}

.image-additional a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.thumb-active {
    border: 2px solid #0a6fdc !important;
    border-radius: 6px;
    box-shadow: 0 0 0 3px rgba(10,111,220,.25) !important;
    transform: translateY(-2px) scale(1.03);
}

/* ---------------------------------------------------------
   PRELOAD SPINNER
--------------------------------------------------------- */
.main-image-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.main-image-spinner::after {
    content: "";
    width: 32px;
    height: 32px;
    border: 4px solid #ddd;
    border-top-color: #0a6fdc;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------------------------------------------------------
   FLOATING ZOOM WINDOW (C1)
--------------------------------------------------------- */
.zoom-window {
    position: fixed;
    width: 300px;
    height: 300px;
    border: 2px solid #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    border-radius: 6px;
    background-repeat: no-repeat;
    background-size: 200%;
    pointer-events: none;
    z-index: 99999;
    display: none;
}

/* ---------------------------------------------------------
   PREMIUM MODAL
--------------------------------------------------------- */
.zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    animation: modalIn .25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(.95); }
    to { opacity: 1; transform: scale(1); }
}

.zoom-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0,0,0,.5);
}

/* ---------------------------------------------------------
   MOBILE SWIPE THUMBNAILS
--------------------------------------------------------- */
@media (max-width: 768px) {
    .image-additional {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .image-additional a {
        scroll-snap-align: center;
    }
}

/* Fade transition for main image */
.product-main-image {
    transition: opacity .25s ease;
}

/* Active thumbnail highlight */
.thumb-active {
    border: 2px solid #0a6fdc !important;
    box-shadow: 0 0 0 3px rgba(10,111,220,.25) !important;
    border-radius: 6px;
}
.main-image-container {
    position: relative;
}

.arrow {
    position: absolute;
    top: 50%;
    /*transform: translateY(-50%);*/
    transform: translateY(-225%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.31);
    color: #fff;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    z-index: 50;
    transition: background 0.2s ease;
}

.arrow:hover {
    background: rgba(0,0,0,0.65);
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* Optional: hide arrows on small screens */
@media (max-width: 900px) {
    .arrow {
        display: none;
    }
}

/* Zoom lens */
.zoom-lens {
    position: absolute;
    border: 2px solid rgba(255,255,255,.9);
    width: 120px;
    height: 120px;
    pointer-events: none;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0,0,0,.25);
    display: none;
}

/* Zoom modal */
.zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    cursor: zoom-out;
}

.zoom-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0,0,0,.5);
}

.image-additional a {
    border-radius: 8px !important;
    transition: border-color .22s ease, box-shadow .22s ease !important;
}

.image-additional a:hover {
    border-color: #0a6fdc !important;
    box-shadow: 0 0 0 3px rgba(10,111,220,.15) !important;
}

.product-product .product-thumb .button-group button {
    background-color: #ff5a5a !important;
    border-radius: 8px !important;
    transition: background .22s ease, transform .22s ease !important;
}

.product-product .product-thumb .button-group button:hover {
    background-color: #b71f1f !important;
    transform: translateY(-2px) !important;
}


/* ============================================================
   6. MINICART — MODERN DRAWER
   ============================================================ */

#mini-cart.minicart-drawer {
    border-radius: 0 0 0 12px !important;
    box-shadow: -8px 0 28px rgba(0,0,0,.18) !important;
}

.minicart-item img {
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.08) !important;
}

.minicart-checkoutbtn,
.minicart-cartbtn {
    border-radius: 30px !important;
    transition: background .22s ease, transform .22s ease !important;
}

.minicart-checkoutbtn:hover,
.minicart-cartbtn:hover {
    transform: translateY(-2px) !important;
}


/* ============================================================
   7. MOBILE MENU — MODERN SLIDE PANEL
   ============================================================ */

#mobile-menu {
    border-radius: 0 12px 12px 0 !important;
    box-shadow: 6px 0 28px rgba(0,0,0,.18) !important;
}

.mobile-cat-row {
    animation: fadeSlideIn .35s ease both !important;
}

.submenu-list li a {
    transition: background .15s ease, padding-left .15s ease !important;
}

.submenu-list li a:hover {
    background: #f0f6ff !important;
    padding-left: 26px !important;
}

.submenu-back {
    transition: color .22s ease, transform .22s ease !important;
}

.submenu-back:hover {
    color: #084fa3 !important;
    transform: translateX(-2px) !important;
}


/* ============================================================
   8. FOOTER — MODERN UPDATE
   ============================================================ 
/* =========================
   TRUST BAR — BASE STYLE
   ========================= */
/* TRUST BAR BASE */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 20px;
    background: #f5f7fa;
    border-top: 1px solid #d9e1e8;
    border-bottom: 1px solid #d9e1e8;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

/* TRUST ITEM */
.trust-item {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    gap: 10px;
    font-size: 15px;
    color: #2a2f36;
    font-weight: 500;
    opacity:0;
    white-space: nowrap;
    animation: fadeInUp .6s ease forwards;
}
.trust-item:nth-child(2) { animation-delay: .15s; } 
.trust-item:nth-child(3) { animation-delay: .3s; } 
.trust-item:nth-child(4) { animation-delay: .45s; }
/* SVG ICONS */
.trust-icon {
    width: 35px;
    height: 35px;
    fill: #1a73e8; /* industrial blue */
    flex-shrink: 0;
}
.trust-item span { font-size: 1.6rem; font-weight: 600; color: #111827; }
/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .trust-bar {
        gap: 18px;
        padding: 12px 14px;
    }
    .trust-item {
        font-size: 14px;
    }
    .trust-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .trust-bar {
        flex-direction: column;
        gap: 12px;
        padding: 14px 12px;
    }
    .trust-item {
        width: 100%;
        justify-content: center;
        font-size: 13px;
    }
    .trust-icon {
        width: 18px;
        height: 18px;
    }
}

/* FADE-IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(6px);
    animation: trustFade 0.6s ease-out forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.05s; }
.fade-in:nth-child(3) { animation-delay: 0.10s; }
.fade-in:nth-child(4) { animation-delay: 0.15s; }

@keyframes trustFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NEWSLETTER */
.newsletter-block {
    background: #f7f7f7;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 2px solid #ff5a5a;
}

.newsletter-block h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-block p {
    color: #555;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    width: 280px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.newsletter-form button {
    background: #ff5a5a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #ff3a3a;
}


/* ACCORDIONS */
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-icon {
    font-size: 20px;
    transition: transform .2s ease;
    height:16px;
    width:16px;
}

.accordion-content {
    display: block;
}

@media (max-width: 768px) {
    .accordion-content {
        display: none;
    }

    .accordion.open .accordion-content {
        display: block;
        padding-bottom: 15px;
    }

    .accordion.open .accordion-icon {
        transform: rotate(180deg);
    }
}


/* ICONS IN LINKS */
.footer-col ul li i {
    margin-right: 8px;
    color: #ff5a5a;
}

/* ================================
   SERVICES ROW
   ================================ */
.services-footer {
    background: #f7f7f7;
    padding: 40px 0;
}

.services-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0 auto;
    max-width: 1400px;
}

.services-li {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 25px;
    width: 320px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.services-li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.services-span {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

.services-fa {
    font-size: 60px;
    color: #ff5a5a;
}


/* ================================
   FOOTER BASE
   ================================ */
.site-footer {
    background: #2b2b2b;
    color: #e8e8e8;
    padding-top: 40px;
    font-size: 15px;
}


/* ================================
   FOOTER LINK COLUMNS
   ================================ */
.footer-links {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 25px 40px;
    border-bottom: 2px solid #ff5a5a;
}

.footer-col {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
    margin-top: 0;
    padding-bottom: 6px;
}
.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
    border-bottom: none !important;
    margin-top: 0;
    padding-bottom: 6px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-col ul li {
    margin: 8px 0;
}
.footer-icon { width: 25px; height: 25px; fill: #1a73e8; flex-shrink: 0; transition: fill .2s ease, transform .2s ease; }
.footer-col ul li:hover .footer-icon { fill: #155bb5; transform: translateX(3px); }
.footer-col ul li a {
    color: #e8e8e8;
    text-decoration: none;
    transition: color .2s ease;
    display: inline-flex; 
    align-items: 
    center; 
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #ff5a5a;
}

.footer-desc {
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-btn {
    display: inline-block;
    background: #ff5a5a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background .2s ease;
}

.footer-btn:hover {
    background: #ff3a3a;
}
.h4links {border-bottom: 2px solid #ff5a5a!important;}
.footer-col h4,
.accordion-header {
    border-bottom: 2px solid #ff5a5a;
    padding-bottom: 6px;
    margin-bottom: 14px;
}
.footer-col ul li i {
    margin-right: 8px;
    color: #ff5a5a;
    width: 18px;
    text-align: center;
}

/* ================================
   LEGAL LINKS
   ================================ */
.footer-legal {
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    background: #262626;
}

.footer-legal a {
    color: #e8e8e8;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #ff5a5a;
}

.footer-legal .sep {
    margin: 0 8px;
    color: #888;
}


/* ================================
   TRUST BADGES
   ================================ */
.footer-trust {
    text-align: center;
    padding: 20px 0;
}

.trust-badge {
    max-height: 60px;
    margin-left: 15px;
}


/* ================================
   COPYRIGHT + PAYMENTS
   ================================ */
.footer-bottom {
    text-align: center;
    padding: 25px 10px 40px;
    line-height: 1.6;
    background: #262626;
}

.footer-bottom .trademark,
.footer-bottom .copyright {
    color: #cfcfcf;
}

.payments img {
    max-height: 40px;
    margin: 0 8px;
}

.pay-icon {
    max-width: 50px;
}


/* ================================
   MOBILE
   ================================ */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 35px;
    }

    .services-li {
        width: 100%;
        max-width: 350px;
    }
}


/* ============================================================
   9. ANIMATIONS
   ============================================================ */

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ================================
   ACCORDION — DESKTOP ALWAYS OPEN
   ================================ */

/* DESKTOP — headers visible, content always open, no toggle */
@media (min-width: 992px) {

    /* Show headers */
    .accordion-header {
        display: flex !important;
        cursor: default; /* no pointer cursor */
        padding: 0;
        margin-bottom: 14px;
        border-bottom: 2px solid #ff5a5a;
        flex-direction: row;
        justify-content: space-evenly;
    }

    /* Hide the + icon on desktop */
    .accordion-header .accordion-icon {
        display: none;
    }

    /* Always show content */
    .accordion-content {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        transform: none !important;
        overflow: visible !important;
    }
}


/* ================================
   ACCORDION — MOBILE/TABLET ONLY
   ================================ */

@media (max-width: 991px) {

    .accordion-header {
        width: 100%;
        background: none;
        border: none;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        padding: 12px 0;
        text-align: left;
        display: flex;
        justify-content: space-between;
        cursor: pointer;
        border-bottom: 2px solid #ff5a5a; /* red line like original */
    }

    .accordion-header i {
        margin-right: 8px;
        color: #ff5a5a;
    }

    .accordion-icon {
        font-size: 20px;
        transition: transform .25s ease;
    }

    /* Closed state */
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-4px);
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    /* Open state */
    .accordion.open .accordion-content {
        max-height: 800px;
        opacity: 1;
        transform: translateY(0);
    }

    .accordion.open .accordion-icon {
        transform: rotate(180deg);
    }
}
/* ============================================================
   SHOPIFY‑GRADE DARK FOOTER — #2B2B2B
   ============================================================ */

.footer-dark {
  background: #2b2b2b;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 40px;
  font-family: inherit;
  position: relative; 
  margin-top: 0;
}

.footer-container {
    max-width: 1280px; 
  /*max-width: 1440px;*/
  margin: 0 auto;
  padding: 0 32px;
}

/* ------------------------------
   TOP: BRAND + NEWSLETTER
   ------------------------------ */

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  padding-bottom: 2.5rem; 
  border-bottom: 1px solid #1f2937;
}
.footer-brand { max-width: 360px; }
.footer-logo {
  width: 180px;
  margin-bottom: 16px;
  display: block; margin-bottom: 1rem;
}

.footer-tagline {
  color: #fff;
  max-width: 320px;
  line-height: 1.5;
  font-size: 15px;
}

/* Newsletter */
.footer-newsletter {
  max-width: 420px;
  width: 100%;
}

.footer-heading {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  height: 48px;
  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 0 16px;
  color: #fff;
  font-size: 15px;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.45);
}

.newsletter-btn {
  height: 48px;
  padding: 0 24px;
  background: #004b9b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.newsletter-btn:hover {
  background: #005cc0;
}

/* ------------------------------
   GRID: 4 COLUMNS
   ------------------------------ */

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col ul li a { color: #d1d5db; text-decoration: none; font-size: 1.6rem; transition: color .2s ease; }
.footer-col ul li a:hover { color: #ffffff; }

/* ------------------------------
   TRUST BAR
   ------------------------------ */

.footer-trust {
  text-align: center;
  margin-bottom: 40px;
}

.trust-icons img {
  height: 28px;
  margin: 0 12px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.trust-text {
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* ------------------------------
   LEGAL BAR
   ------------------------------ */

.footer-legal { text-align: center; padding-top: 1.5rem; border-top: 1px solid #1f2937; font-size: 1.6rem; color: #9ca3af; }

/* ------------------------------
   RESPONSIVE
   ------------------------------ */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }
}
/* Fade-in animation */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.footer-dark .footer-col,
.footer-dark .footer-top,
.footer-dark .footer-trust,
.footer-dark .footer-legal {
  opacity: 0;
  animation: fadeInUp .6s ease forwards;
}

.footer-dark .footer-top { animation-delay: .1s; }
.footer-dark .footer-grid .footer-col:nth-child(1) { animation-delay: .15s; }
.footer-dark .footer-grid .footer-col:nth-child(2) { animation-delay: .25s; }
.footer-dark .footer-grid .footer-col:nth-child(3) { animation-delay: .35s; }
.footer-dark .footer-grid .footer-col:nth-child(4) { animation-delay: .45s; }
.footer-dark .footer-trust { animation-delay: .55s; }
.footer-dark .footer-legal { animation-delay: .65s; }
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #004b9b;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  z-index: 9999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #005cc0;
}
/* Wide Trust Bar */
.trust-wide-bar {
  background: #1f1f1f;
  padding: 18px 0;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  letter-spacing: .3px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Standardized trust icon sizing */
.trust-icon-svg {
  width: 28px;
  height: 28px;
  display: inline-block;
  color: #ffffff;
  opacity: 0.85;
  flex-shrink: 0;
}

.trust-icon-svg:hover {
  opacity: 1;
}

/* Wrapper */
.qty-custom-select {
    position: relative;
    width: 220px;
}

/* Selected button */
.qty-selected {
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px 14px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Arrow */
.qty-arrow {
    font-size: 12px;
    opacity: 0.7;
    transition: transform .2s ease;
}

.qty-custom-select.open .qty-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu */
.qty-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    padding: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .25s ease, opacity .2s ease;
    z-index: 50;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.qty-custom-select.open .qty-options {
    max-height: 411px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

/* Option */
.qty-option {
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-option:hover {
    background-color: #edf8ff;
    box-shadow: inset 3px 0 0 0 #2162a1;
}

/* Checkmark */
.qty-option-check {
    opacity: 0;
    color: #2162a1;
    font-size: 14px;
}

.qty-option.selected .qty-option-check {
    opacity: 1;
}

/* ================================
   MINICART QTY CONTROL (Shopify style)
   ================================ */

.mini-qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    padding: 4px 6px;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    width: fit-content;
}

/* Buttons */
.mini-qty-control .btn-qty-minus,
.mini-qty-control .btn-qty-plus {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    background: #fafafa;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

/* Hover */
.mini-qty-control .btn-qty-minus:hover,
.mini-qty-control .btn-qty-plus:hover {
    background: #f0f7ff;
    border-color: #007acc;
    color: #007acc;
}

/* Active press */
.mini-qty-control .btn-qty-minus:active,
.mini-qty-control .btn-qty-plus:active {
    background: #e2efff;
    transform: scale(0.92);
}

/* Input */
.mini-qty-control .cart-qty-input {
    width: 32px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 0;
}

/* Remove input outline */
.mini-qty-control .cart-qty-input:focus {
    outline: none;
}

/* Disabled minus button when qty = 1 */
.mini-qty-control .btn-qty-minus[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Optional: subtle shadow for premium feel */
.mini-qty-control {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
/* Hide trash by default */
.mini-qty-control .btn-qty-trash {
    display: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    background: #fafafa!important;
    font-size: 14px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    float: none;
    top: 0;
}
.mini-qty-control.show-trash .btn-qty-minus {
    display: none;
}

.mini-qty-control.show-trash .btn-qty-trash {
    display: inline-flex;
}

/* Hover */
.mini-qty-control .btn-qty-trash:hover {
    background: #ffecec;
    border-color: #cc0000;
    color: #cc0000;
}

/* Active */
.mini-qty-control .btn-qty-trash:active {
    transform: scale(0.92);
}

/* Hide minus when disabled */
.mini-qty-control .btn-qty-minus[disabled] {
    display: none;
}

/* When minus is hidden, show trash */
.mini-qty-control.show-trash .btn-qty-trash {
    display: flex;
}




/* ------------------------------------------
   MINI QTY CONTROL — MINUS/TRASH TOGGLE
   Works for BOTH minicart + checkout cart
------------------------------------------- */

/* Base layout */
.mini-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

/* Hide trash by default */
.mini-qty-control .btn-qty-trash {
    display: none;
}

/* When qty = 1 → show trash, hide minus */
.mini-qty-control.show-trash .btn-qty-minus {
    display: none;
}

.mini-qty-control.show-trash .btn-qty-trash {
    display: inline-flex;
}

/* Button styling (minus, plus, trash) */
.btn-qty-minus,
.btn-qty-plus,
.btn-qty-trash {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s ease;
}

/* Hover effect */
.btn-qty-minus:hover,
.btn-qty-plus:hover,
.btn-qty-trash:hover {
    background: #f2f2f2;
}

/* Disabled minus button */
.btn-qty-minus[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Quantity input */
.cart-qty-input {
    width: 42px;
    height: 28px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.cart-checkout-main {
    display: flex;
    justify-content: flex-end;
}




/* FLOATING TOTAL SUMMARY — TOP RIGHT */
.cart-summary-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 320px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    z-index: 9999;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

/* Hide on mobile */
@media (max-width: 991px) {
    .cart-summary-floating {
        position: static;
        width: 100%;
        right: auto;
        top: auto;
        box-shadow: none;
        border-radius: 0;
        border: none;
        padding: 0;
        margin-top: 20px;
    }
}


.summary-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}


/* -----------------------------------
----------------------- RESPONSIVE BEHAVIOR ------------
---------------------------------------------- */ 
@media (max-width: 1024px) { 
    .footer-grid { 
        grid-template-columns: repeat(2, 1fr); }
    } 
@media (max-width: 640px) { 
    .trust-bar { flex-direction: column; gap: 1.5rem; padding: 1.5rem 0; } 
    .footer-top { flex-direction: column; } 
    .footer-grid { 
        grid-template-columns: 1fr;
        } 
    .newsletter-form { flex-direction: column; } 
    .newsletter-btn { width: 100%; }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    }