/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
	text-wrap: none !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 1px 0;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* Dropdown menu black theme */
.navbar .dropdown-menu {
    background: #000 !important;
    border: 1px solid #333 !important;
}

.navbar .dropdown-menu .dropdown-item {
    color: #fff !important;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: #e60012 !important; /* red hover */
    color: #fff !important;
}

/*** Header ***/
.carousel-caption{display:none !important;}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    
    
    
}

.page-header-about {
    padding-top: 200px;
	background:url(../img/header-bg.png);
}

.page-header-contact {
    padding-top: 200px;
	background:url(../img/header-bg.png);
}

.page-header-product {
    padding-top: 200px;
	background:url(../img/header-bg.png);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background-image: url(../img/footer-bg.png);
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}

/**************************************
             DROPDOWN MENU
**************************************/

/* FIX: Prevent dropdown from pushing navbar down */
.navbar .dropdown-menu {
    position: absolute !important;
    background: #000 !important;
    border: 1px solid #222 !important;
    margin-top: 0 !important;
    top: 100% !important;
    left: 0;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease-in-out;
    z-index: 9999;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

/* DROPDOWN ITEMS */
.navbar .dropdown-item {
    color: #ffffff !important;
    padding: 10px 18px;
}

.navbar .dropdown-item:hover {
    background: #e60012 !important;
    color: #fff !important;
}

/**************************************
             MOBILE STYLES
**************************************/
@media (max-width: 991px) {

    /* Mobile Navbar Background */
    .navbar {
        background: #000 !important;
        position: relative;
    }

    .navbar .nav-link {
        padding: 12px 0;
        margin-right: 0;
    }
	
    /* Fix dropdown for mobile */
    .navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        border: none !important;
        background: #000 !important;
    }
}

/* =======================
    DROPDOWN (DESKTOP)
   ======================= */
@media (min-width: 992px) {

    /* Prevent navbar from pushing down */
    .navbar .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0;
        background: #000 !important;
        border: 1px solid #222 !important;
        margin-top: 0 !important;
        display: block !important;

        transform: translateY(10px);
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
        z-index: 2000;
    }

    /* SHOW DROPDOWN on hover */
    .navbar .nav-item:hover > .dropdown-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Bootstrap adds .show → Make sure visible */
    .navbar .dropdown-menu.show {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* DROPDOWN ITEMS */
.navbar .dropdown-item {
    color: #fff !important;
}
.navbar .dropdown-item:hover {
    background: #e60012 !important;
    color: #fff !important;
}

/* =======================
    MOBILE NAV
   ======================= */
/* ——————— FIX NAVBAR DROPDOWN PUSH ISSUE ——————— */
@media (min-width: 992px) {

    /* Keep dropdown floating */
    .navbar .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0;
        margin: 0;
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.25s ease;
        z-index: 9999 !important;
    }

    /* Hover show */
    .navbar .nav-item:hover > .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    /* Bootstrap click show (THIS WAS MISSING/INCOMPLETE) */
    .navbar .dropdown-menu.show {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        margin: 0 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}
/* ===========================================
   PERFECT NAVBAR DROPDOWN FIX (DESKTOP ONLY)
   =========================================== */
@media (min-width: 992px) {

    .navbar .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0;
        margin-top: 0;
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.25s ease;
        z-index: 2000;
        background: #000 !important;
        border: 1px solid #222 !important;
    }

    /* Show on hover */
    .navbar .nav-item:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Show when Bootstrap JS toggles it */
    .navbar .dropdown-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}

/* ===========================================
   MOBILE — ALLOW NORMAL COLLAPSE BEHAVIOR
   =========================================== */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #000 !important;
        border: none !important;
    }
}

/* ===========================================
   PERFECT NAVBAR DROPDOWN FIX (DESKTOP ONLY)
   =========================================== */
@media (min-width: 992px) {

    .navbar .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0;
        margin-top: 0;
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.25s ease;
        z-index: 2000;
        background: #000 !important;
        border: 1px solid #222 !important;
    }

    /* Show on hover */
    .navbar .nav-item:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Show when Bootstrap JS toggles it */
    .navbar .dropdown-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}

/* ===========================================
   MOBILE — ALLOW NORMAL COLLAPSE BEHAVIOR
   =========================================== */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #000 !important;
        border: none !important;
    }
}

/* Center slider button at bottom */
.carousel-caption{display:none !important;}

.carousel-caption .btn {
    margin-top: 20px;
}
/* HERO SLIDER BUTTON */
.hero-btn {
    background: #e60012 !important;   /* solid red */
    color: #fff !important;           /* white text */
    border: none !important;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 35px;
    transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

/* Hover zoom-in */
.hero-btn:hover {
    transform: scale(1.08);
    background: #cc000f !important;   /* darker red on hover */
    color: #fff !important;
}

/* PRODUCT BANNER LAYOUT */
.product-banner-wrapper {
    position: relative;
    width: 100%;
    margin: 10px 0;
}

.product-image-container {
    width: 100%;
}

.product-banner-img {
    width: 100%;
    display: block;
    border-radius: 1px;
}

/* OVERLAPPING INFO BOX */
.product-info-box {
    position: absolute;
    bottom: 20px;
    left: 50%;                         /* REQUIRED for proper centering */
    transform: translateX(-50%);       /* Center horizontally */
    background: rgba(0, 0, 0, 0.45);
    padding: 20px 15px;
    border-radius: 12px;
    width: 100%;                        /* Better desktop width */
    text-align: center;
}

/* HEADING & TEXT */
.product-info-box h3,
.product-info-box p {
    margin: 5px 0;
    color: #fff !important;
}

/* BUTTON */
.product-info-box a {
    margin-top: 10px;
}

/* MOBILE & TABLET (info box should NOT overlap) */
@media (max-width: 768px) {
  .product-info-box {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 85%;           /* centered, not full width */
    margin-top: 12px;
    padding: 16px;
    border-radius: 10px;
    background: rgba(0,0,0,0.6);
    text-align: center;
  }
}

.product-banner-wrapper {
    max-width: 100%;
    overflow: hidden;
}
.product-banner-wrapper {
    overflow: hidden;
}

/* FIX HERO SLIDER IMAGE FOR MOBILE */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Optional: make slider height responsive */
@media (max-width: 768px) {
    .carousel-item {
        height: auto !important;
    }

    .carousel-item img {
        width: 100%;
        height: auto !important;
        object-fit: cover;
    }

    /* Center text for mobile */
    .carousel-caption{display:none !important;}

    /* Resize "Explore More" button for mobile */
    .carousel-caption .btn {
        font-size: 14px !important;
        padding: 10px 24px !important;
    }
}

/* ===========================================
   HERO SLIDER — FIX MOBILE ALIGNMENT
   =========================================== */

/* Fix caption positioning on mobile */
@media (max-width: 768px) {
    

    /* Resize caption text for mobile */
    

    /* Make image auto height */
    

    /* CENTER ARROWS ON MOBILE */
    .carousel-control-prev,
    .carousel-control-next {
        top: 40% !important; 
        transform: translateY(-50%) !important;
        height: 60px !important; /* clickable area */
    }

    /* Prevent bottom black area */
    

    /* Fix Explore More button spacing */
    
}

/* HERO SLIDER FIX: remove reserved height caused by empty caption */


/* Make slide auto-adjust its height */


/* Make image control height (no black space) */


/* Center arrows properly */
.carousel-control-prev,
.carousel-control-next {
    top: 40% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
}

/* FORCE CAROUSEL CAPTION TO OVERLAY IMAGE — remove reserved height */


/* ensure the image sizes responsively */


/* overlay caption — placed on top of image */


/* small-screen adjustments */
@media (max-width: 768px) {
  

  /* keep arrows vertically centered on image */
  .carousel-control-prev,
  .carousel-control-next {
    top: 45% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: 48px;
    height: 48px;
  }

  /* reduce caption text so button doesn't overflow */
  
   /* hide long copy on very small screens */
  
}

/* ensure caption will never push content below */



/* ---- APPENDED ISOLATED STYLES (MULTI-SLIDE) ---- */

/* ===== ISOLATED HERO SLIDER (Multiple slides, Explore button centered bottom) ===== */

.hero-slider-section { position: relative; width: 100%; overflow: hidden; }
.hero-slider .carousel-inner { position: relative; }
.hero-slide-img { width:100%; height:auto; display:block; object-fit: cover; }

/* Caption container sits centered horizontally, pinned near bottom */
.hero-caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  width: 100%;
  padding: 0 12px;
}

/* Button styles — isolated */
.hero-explore-btn {
  pointer-events: auto;
  background: #e60012;
  color: #fff;
  border-radius: 999px;
  padding: 10px 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Small-screen tweaks */
@media (max-width: 768px) {
  .hero-caption { bottom: 18px; padding: 0 10px; }
  .hero-explore-btn { padding: 8px 20px; font-size: 14px; }
  .hero-slide-img { height: auto !important; }
  .hero-slider .carousel-item { height: auto !important; }
  .hero-control-prev, .hero-control-next { top: 45%; width: 44px; height: 44px; }
}

/* Make hero arrows isolated and centered */
.hero-control-prev, .hero-control-next {
  top: 45%;
  bottom: auto;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: .95;
}

/* prevent global carousel-caption rules from interfering */
.hero-slider .carousel-caption { display: none !important; }

/* ===== ISOLATED PRODUCT BANNER ===== */

.product-banner-wrapper { position: relative; width: 100%; margin: 16px 0; overflow: hidden; }
.product-image-container { width: 100%; }
.product-banner-img { width: 100%; display: block; border-radius: 4px; }

.product-info-box {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.45);
  padding: 20px 18px;
  border-radius: 12px;
  width: 70%;
  max-width: 720px;
  color: #fff;
  text-align: center;
  z-index: 20;
}

/* Mobile: non-overlapping (Option A) */
@media (max-width: 768px) {
  .product-info-box {
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    border-radius: 10px;
    background: rgba(0,0,0,0.6);
  }
}

/* Utility to avoid interference */
.hero-slider-section img, .product-banner-wrapper img { max-width:100%; height:auto; display:block; }

/* FORCE CONTACT FORM INPUT COLORS */
.form-control,
.form-floating > .form-control {
    background-color: #000 !important;   /* Black box */
    color: #fff !important;               /* White typed text */
    border: 1px solid #444 !important;
}

/* Placeholder text */
.form-control::placeholder {
    color: #aaa !important;
}

/* On focus (no color change) */
.form-control:focus {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #e60012 !important; /* SOGO red */
    box-shadow: none !important;
}

/* Floating label text */
.form-floating > label {
    color: #aaa !important;
}

/* When input has value or focused */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #fff !important;
}

/* Autofill fix (Chrome) */
input:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #000 inset !important;
    -webkit-text-fill-color: #fff !important;
}
/* ===== FORCE BLACK INPUT EVEN DURING AUTOFILL SELECTION ===== */

/* Normal state */
.form-control {
    background-color: #000 !important;
    color: #fff !important;
}

/* Chrome autofill (all states) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px #000 inset !important;
    box-shadow: 0 0 0 1000px #000 inset !important;
    caret-color: #fff !important;
    transition: background-color 9999s ease-in-out 0s;
}

/* Remove Chrome blue glow */
input:-webkit-autofill::first-line {
    color: #fff !important;
}

/* Focus state */
.form-control:focus {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #e60012 !important;
    box-shadow: none !important;
}
/* ---------- GALLERY ---------- */
.gallery-wrapper{
    position:relative;
    max-width:500px;
    margin:auto;
}

.gallery-main img{
    width:100%;
    border-radius:10px;
}

.gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:30px;
    color:#fff;
    background:rgba(0,0,0,.5);
    padding:8px 14px;
    cursor:pointer;
    border-radius:50%;
}

.arrow-left{left:10px;}
.arrow-right{right:10px;}

.thumbnail-row{
    display:flex;
    gap:10px;
    margin-top:15px;
    justify-content:center;
}

.thumbnail-row img{
    width:70px;
    height:70px;
    object-fit:cover;
    cursor:pointer;
    border:2px solid transparent;
    border-radius:6px;
}

.thumbnail-row img.active{
    border-color:var(--primary);
}

/* ---------- COLOR BUTTONS ---------- */
.color-btn{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:12px 24px;
    font-weight:600;
    cursor:pointer;
}

/* ---------- SECTIONS ---------- */
.section-padding{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

/* ================= PRODUCT GALLERY LAYOUT ================= */

.product-gallery-wrapper {
    width: 100%;
    text-align: center;
}

/* MAIN IMAGE FULL WIDTH */
.gallery-main {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    display: block;
    margin: auto;
}

/* ARROWS */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 28px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    user-select: none;
}

.arrow-left { left: 15px; }
.arrow-right { right: 15px; }

/* THUMBNAILS */
.thumbnail-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.thumbnail-row img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    background: #000;
}

.thumbnail-row img.active {
    border-color: #e60012;
}

/* COLOR OPTIONS */
.color-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

/* COLOR BUTTONS */
.color-btn {
    padding: 10px 26px;
    border: 2px solid #e60012;
    background: transparent;
    color: #e60012;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.color-btn:hover {
    background: #e60012;
    color: #fff;
}

.rotate-360 {
    cursor: grab;
}

.rotate-360:active {
    cursor: grabbing;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .gallery-main img {
        max-height: 360px;
    }

    .thumbnail-row img {
        width: 60px;
        height: 60px;
    }
}

.product-specs {
    margin-top: 10px;
    color: #fff;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.spec-card img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.spec-card h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-card p {
    margin: 4px 0 0;
    font-size: 15px;
    font-weight: 300;
    opacity: 0.9;
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.wow {
    visibility: hidden;
}

.wow.fadeInUp {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.zoomable {
    cursor: zoom-in;
}

.gallery-main::after {
    content: "Click to Zoom";
    position: absolute;
    bottom: 12px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    pointer-events: none;
}
.zoom-container {
    position: relative;
}

.zoom-img {
    width: 100%;
    display: block;
}

.zoom-arrow {
    position: absolute;
    top: 50%;
    font-size: 50px;
    cursor: pointer;
    color: #000;
    user-select: none;
}

.zoom-arrow.left { left: 30px; }
.zoom-arrow.right { right: 30px; }

.zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
}

.zoom-arrow {
    position: absolute;
    top: 50%;
    font-size: 50px;
    cursor: pointer;
}

.zoom-arrow.left { left: 30px; }
.zoom-arrow.right { right: 30px; }

/* ================= CLEAN ZOOM RESET ================= */

/* Disable old hover zoom systems */
.zoom-lens,
.zoom-result,
.zoom-container {
    display: none !important;
}

/* Hover cursor = magnifier */
.gallery-img.zoomable {
    cursor: zoom-in;
}

/* Optional hint badge */
.gallery-main::after {
    content: "Click to Zoom";
    position: absolute;
    bottom: 14px;
    right: 18px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    pointer-events: none;
}

/* ================= FULLSCREEN ZOOM ================= */

#zoomOverlay {
    position: fixed;
    inset: 0;
    background: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
}

#zoomOverlay.active {
    display: flex;
}

#zoomOverlay img {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
}

#zoomOverlay img:active {
    cursor: grabbing;
}

.zoom-close {
    position: absolute;
    top: 22px;
    right: 32px;
    font-size: 40px;
    cursor: pointer;
    color: #000;
}

.zoom-arrow {
    position: absolute;
    top: 50%;
    font-size: 52px;
    cursor: pointer;
    color: #000;
    user-select: none;
}

.zoom-arrow.left { left: 30px; }
.zoom-arrow.right { right: 30px; }
/* FORCE magnifier cursor on product image */
.gallery-main img,
.gallery-img,
.gallery-img.zoomable {
    cursor: zoom-in !important;
}
.gallery-main img {
    cursor: url("img/icons/magnifier.cur"), zoom-in;
}
/* ===============================
   PRODUCT IMAGE CLICK ZOOM ONLY
   (ISOLATED – SAFE FOR SPECS)
================================ */

/* Cursor on main product image */
.product-gallery-wrapper .gallery-main img {
    cursor: zoom-in;
}

/* FULLSCREEN OVERLAY */
#productZoomOverlay {
    position: fixed;
    inset: 0;
    background: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
}

#productZoomOverlay.active {
    display: flex;
}

/* ZOOMED IMAGE */
#productZoomOverlay img {
    max-width: 90%;
    max-height: 90%;
    cursor: grab;
    user-select: none;
}

#productZoomOverlay img:active {
    cursor: grabbing;
}

/* CLOSE BUTTON */
.product-zoom-close {
    position: absolute;
    top: 22px;
    right: 32px;
    font-size: 38px;
    cursor: pointer;
    color: #000;
}

/* LEFT / RIGHT ARROWS */
.product-zoom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 52px;
    cursor: pointer;
    color: #000;
    user-select: none;
}

.product-zoom-arrow.left { left: 30px; }
.product-zoom-arrow.right { right: 30px; }

/* ================================
   PRODUCT IMAGE ZOOM (ISOLATED)
================================ */

/* Main product image cursor */
.product-gallery-wrapper .gallery-main img {
    cursor: zoom-in;
}

/* FULLSCREEN ZOOM OVERLAY */
#productZoomOverlay {
    position: fixed;
    inset: 0;
    background: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
}

#productZoomOverlay.active {
    display: flex;
}

/* Zoomed Image */
#productZoomOverlay img {
    max-width: 90%;
    max-height: 90%;
    cursor: grab;
    user-select: none;
}

#productZoomOverlay img:active {
    cursor: grabbing;
}

/* Close Button */
.product-zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #000;
    cursor: pointer;
    z-index: 10;
}

/* Left / Right Arrows */
.product-zoom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 52px;
    color: #000;
    cursor: pointer;
    user-select: none;
    z-index: 10;
}

.product-zoom-arrow.left {
    left: 30px;
}

.product-zoom-arrow.right {
    right: 30px;
}
.section-padding{padding:60px 0}

.product-gallery-wrapper{
    width:100%;
    text-align:center;
}

/* MAIN IMAGE */
.gallery-main{
    position:relative;
    width:100%;
}
.gallery-main img{
    width:100%;
    max-height:520px;
    object-fit:contain;
    cursor:zoom-in;
}

/* ARROWS */
.gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    background:rgba(0,0,0,.6);
    color:#fff;
    padding:10px 14px;
    border-radius:50%;
    cursor:pointer;
}
.arrow-left{left:20px}
.arrow-right{right:20px}

/* THUMBNAILS */
.thumbnail-row{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:20px;
}
.thumbnail-row img{
    width:70px;
    height:70px;
    object-fit:contain;
    border:2px solid transparent;
    cursor:pointer;
}
.thumbnail-row img.active{
    border-color:#e60012;
}

/* COLORS */
.color-options{
    display:flex;
    justify-content:center;
    gap:16px;
    margin:25px 0;
}
.color-btn{
    padding:10px 26px;
    border:2px solid #e60012;
    background:transparent;
    color:#e60012;
    font-weight:600;
    cursor:pointer;
}
.color-btn.active,
.color-btn:hover{
    background:#e60012;
    color:#fff;
}

/* ZOOM OVERLAY */
#productZoomOverlay{
    position:fixed;
    inset:0;
    background:#fff;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}
#productZoomOverlay.active{display:flex}
#productZoomOverlay img{
    max-width:90%;
    max-height:90%;
    cursor:grab;
}
.product-zoom-close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    cursor:pointer;
}
.product-zoom-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:52px;
    cursor:pointer;
}
.product-zoom-arrow.left{left:30px}
.product-zoom-arrow.right{right:30px}

/* ===============================
   COLOR IMAGE CARD SELECTOR
================================ */

.color-card-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0 10px;
}

.color-card {
    width: 140px;
    background: #0b0b0b;
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.color-card img {
    width: 100%;
    border-radius: 10px;
}

.color-card span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.color-card.active {
    border-color: #e60012;
    box-shadow: 0 0 20px rgba(230, 0, 18, 0.6);
}

.color-card:hover {
    transform: translateY(-4px);
}
/* ===============================
   ZOOM OVERLAY
================================ */
#productZoomOverlay {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#productZoomOverlay.active {
    display: flex;
}

#productZoomOverlay img {
    max-width: 90%;
    max-height: 90%;
}

.product-zoom-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    cursor: pointer;
    color: #000;
}

.product-zoom-arrow {
    position: absolute;
    font-size: 50px;
    cursor: pointer;
    color: #000;
    user-select: none;
}

.product-zoom-arrow.left { left: 40px; }
.product-zoom-arrow.right { right: 40px; }
