.bg-main{
	background: #f6a800;
}
.bg-main:hover{
	background: #cc8b00;
}
.product-fit img {
    height: 250px !important;
}

/* Toast Container */
.custom-toast-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
}

/* Toast */
.custom-toast {
    min-width: 250px !important;
    margin-top: 10px !important;
    padding: 12px 16px !important;
    border-radius: 6px !important;
    color: #fff !important;
    font-size: 14px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: all 0.3s ease !important;
}

/* Show animation */
.custom-toast.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Types */
.custom-toast.success { background-color: #198754 !important; } /* Green */
.custom-toast.error   { background-color: #dc3545 !important; } /* Red */
.custom-toast.info    { background-color: #0dcaf0 !important; color: #000 !important; } /* Blue */

/* Close button */
.custom-toast .close-btn {
    float: right !important;
    cursor: pointer !important;
    font-weight: bold !important;
    margin-left: 10px !important;
}



/* =======================
   SPACING UTILITIES
======================= */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }

.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

/* =======================
   DISPLAY UTILITIES
======================= */
.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-grid { display: grid !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

/* =======================
   TEXT UTILITIES
======================= */
.text-start { text-align: left !important; }
.text-center { text-align: center !important; }
.text-end { text-align: right !important; }

.text-lowercase { text-transform: lowercase !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-capitalize { text-transform: capitalize !important; }

.text-primary { color: #0d6efd !important; }
.text-secondary { color: #6c757d !important; }
.text-success { color: #198754 !important; }
.text-danger { color: #dc3545 !important; }
.text-warning { color: #ffc107 !important; }
.text-info { color: #0dcaf0 !important; }
.text-light { color: #f8f9fa !important; }
.text-dark { color: #212529 !important; }
.text-body { color: #212529 !important; }
.text-muted { color: #6c757d !important; }
.text-white { color: #fff !important; }

/* =======================
   BACKGROUND UTILITIES
======================= */
.bg-primary { background-color: #0d6efd !important; }
.bg-secondary { background-color: #6c757d !important; }
.bg-success { background-color: #198754 !important; }
.bg-danger { background-color: #dc3545 !important; }
.bg-warning { background-color: #ffc107 !important; }
.bg-info { background-color: #0dcaf0 !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-dark { background-color: #212529 !important; }
.bg-white { background-color: #fff !important; }
.bg-transparent { background-color: transparent !important; }

/* =======================
   BUTTONS
======================= */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.375rem;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  text-decoration: none;
}


/* =========================
   BUTTON HOVER EFFECTS
========================= */
.btn {
  transition: all 0.3s ease-in-out; /* smooth hover animation */
  border: 1px solid transparent;
  cursor: pointer;
}

/* General hover for all buttons */
.btn:hover {
  border: none !important;       /* remove border on hover */
  transform: scale(1.05);        /* slight zoom for uniqueness */
  font-weight: 600 !important;   /* slightly bolder on hover */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* subtle shadow */
}

/* Specific button color hover effects */
.btn-primary:hover {
  background-color: #0b5ed7 !important; /* darker blue */
  color: #fff !important;
}
.btn-secondary:hover {
  background-color: #5c636a !important; /* darker grey */
  color: #fff !important;
}
.btn-success:hover {
  background-color: #157347 !important; /* darker green */
  color: #fff !important;
}
.btn-danger:hover {
  background-color: #b02a37 !important; /* darker red */
  color: #fff !important;
}
.btn-warning:hover {
  background-color: #ffca2c !important; /* golden yellow */
  color: #212529 !important;
}
.btn-info:hover {
  background-color: #31d2f2 !important; /* darker cyan */
  color: #fff !important;
}
.btn-light:hover {
  background-color: #e2e6ea !important; /* light grey */
  color: #212529 !important;
}
.btn-dark:hover {
  background-color: #1b1e21 !important; /* almost black */
  color: #fff !important;
}

/* =========================
   BADGE HOVER EFFECTS
========================= */
.badge {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* General hover for all badges */
.badge:hover {
  transform: scale(1.1);                /* slightly bigger */
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  font-weight: 600 !important;
  border: none !important;
}

/* Specific badge color hover effects */
.badge-primary:hover { background-color: #0b5ed7 !important; }
.badge-secondary:hover { background-color: #5c636a !important; }
.badge-success:hover { background-color: #157347 !important; }
.badge-danger:hover { background-color: #b02a37 !important; }
.badge-warning:hover { background-color: #ffca2c !important; color: #212529 !important; }
.badge-info:hover { background-color: #31d2f2 !important; }
.badge-light:hover { background-color: #e2e6ea !important; color: #212529 !important; }
.badge-dark:hover { background-color: #1b1e21 !important; }
.btn-primary { color: #fff; background-color: #0d6efd; border-color: #0d6efd; }
.btn-secondary { color: #fff; background-color: #6c757d; border-color: #6c757d; }
.btn-success { color: #fff; background-color: #198754; border-color: #198754; }
.btn-danger { color: #fff; background-color: #dc3545; border-color: #dc3545; }
.btn-warning { color: #212529; background-color: #ffc107; border-color: #ffc107; }
.btn-info { color: #fff; background-color: #0dcaf0; border-color: #0dcaf0; }
.btn-light { color: #212529; background-color: #f8f9fa; border-color: #f8f9fa; }
.btn-dark { color: #fff; background-color: #212529; border-color: #212529; }

.btn-outline-primary { color: #0d6efd; background-color: transparent; border-color: #0d6efd; }
.btn-outline-secondary { color: #6c757d; background-color: transparent; border-color: #6c757d; }
.btn-outline-success { color: #198754; background-color: transparent; border-color: #198754; }
.btn-outline-danger { color: #dc3545; background-color: transparent; border-color: #dc3545; }

/* Button sizes */
.btn-lg { padding: 0.5rem 1rem; font-size: 1.25rem; line-height: 1.5; border-radius: 0.3rem; }
.btn-sm { padding: 0.25rem 0.5rem; font-size: 0.875rem; line-height: 1.5; border-radius: 0.2rem; }

/* =======================
   BADGES
======================= */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
}

.badge-primary { color: #fff; background-color: #0d6efd; }
.badge-secondary { color: #fff; background-color: #6c757d; }
.badge-success { color: #fff; background-color: #198754; }
.badge-danger { color: #fff; background-color: #dc3545; }
.badge-warning { color: #212529; background-color: #ffc107; }
.badge-info { color: #fff; background-color: #0dcaf0; }
.badge-light { color: #212529; background-color: #f8f9fa; }
.badge-dark { color: #fff; background-color: #212529; }

/* =======================
   FLEX UTILITIES
======================= */
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-end { justify-content: flex-end !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }

/* =======================
   BORDER UTILITIES
======================= */
.border { border: 1px solid #dee2e6 !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid #dee2e6 !important; }
.border-bottom { border-bottom: 1px solid #dee2e6 !important; }
.border-start { border-left: 1px solid #dee2e6 !important; }
.border-end { border-right: 1px solid #dee2e6 !important; }
.rounded { border-radius: 0.375rem !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-0 { border-radius: 0 !important; }



.color-swatch {
    display: inline-block !important;
    width: 25px !important;
    height: 25px !important;
    border: 1px solid #ccc !important;
    border-radius: 3px !important;
	margin-left: 5px;
    margin-right: 5px !important;
    vertical-align: middle !important;
}

.size-badge {
    display: inline-block !important;
    background-color: #f1f1f1 !important;
    color: #333 !important;
    font-size: 11px !important;
    padding: 2px 5px !important;
    border-radius: 3px !important;
    margin-left: 4px !important;
    text-transform: uppercase!important;
    vertical-align: middle !important;
}

.cart-item-img img {
    height: 100px !important;
	border-radius: 5px !important;
    object-fit: cover !important;
    width: 100px !important;
}
.sidecart-item-img{
	margin-right: 10px !important;
}
.sidecart-item-img img {
    height: 70px !important;
	border-radius: 5px !important;
    object-fit: cover !important;
    width: 70px !important;
}
.breadcrumb li:not(:last-child):after {
    content: "/" !important;
    margin: 0 0.6em !important;
    opacity: 0.5 !important;
    color: #999 !important;
}

.custom-checkbox:checked+label:before {
    content: "✓" !important;
    background: #222 !important;
    color: #fff !important;
    font-weight: bold !important;
    text-align: center !important;
    line-height: 18px !important;
}

.logo-footer img {
    filter: brightness(0) invert(1)!important;
}




/* ================= ACCORDION BASE ================= */
.accordion {
    overflow: hidden !important;
}

.accordion .collapsed,
.accordion .expanding {
    display: none !important;
}

/* ================= CARD ================= */
.card {
    background-color: transparent !important;
}

/* ================= HEADER ================= */
.card-header {
    text-transform: capitalize !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    color: #222 !important;
}

.card-header a {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    padding: 1.8rem 0.5rem !important;
    color: inherit !important;
    text-decoration: none !important;
}

/* hover */
.card-header a:hover {
    color: #26c !important;
}

/* ================= PREMIUM ARROW (RIGHT → DOWN) ================= */
.card-header a:after {
    content: "›" !important;

    position: absolute !important;
    top: 50% !important;
    right: 0.5rem !important;

    font-size: 2rem !important;
    font-weight: 600 !important;
    color: #222 !important;

    transform: translateY(-50%) rotate(0deg) !important;

    transition: transform 0.25s ease, color 0.25s ease !important;
}

/* ================= CLOSED STATE (RIGHT ARROW) ================= */
.expand:after {
    content: "›" !important;
    transform: translateY(-50%) rotate(0deg) !important;
    color: #222 !important;
}

/* ================= OPEN STATE (DOWN ARROW) ================= */
.collapse:after {
    content: "›" !important;
    transform: translateY(-50%) rotate(90deg) !important;
    color: #26c !important;
}


/* ================= VARIANTS ================= */
.accordion-simple .card {
    border-top: 1px solid #e1e1e1 !important;
}

.accordion-gutter-md .card:not(:last-child) {
    margin-bottom: 10px !important;
}

.accordion-gutter-sm .card:not(:last-child) {
    margin-bottom: 2px !important;
}

.accordion-boxed .card-body,
.accordion-boxed .card-header a {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.accordion-boxed .card-header a:after {
    right: 2.3rem !important;
}

/* ================= BORDER STYLE ================= */
.accordion-border .card {
    border-width: 1px 1px 0 !important;
    border-style: solid !important;
    border-color: #e1e1e1 !important;
}

.accordion-border .card:last-child {
    border-bottom: 1px solid #e1e1e1 !important;
}

/* ================= BACKGROUND STYLE ================= */
.accordion-background .card {
    background-color: #fff !important;
    border-color: #fff !important;
}

/* ================= DROPSHADOW ================= */
.accordion-dropshadow {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.12) !important;
}

.accordion-dropshadow .card {
    background-color: #fff !important;
    border-color: #fff !important;
}

/* ================= ICON SUPPORT ================= */
.accordion-icon .card-header i {
    margin-right: 1.5rem !important;
    font-size: 1.8rem !important;
    line-height: 0 !important;
}

/* ================= SOFT BACKGROUND ================= */
.accordion-card-bg .card {
    border: 1px solid #f2f3f5 !important;
}

.accordion-card-bg .card-header a {
    padding-top: 1.7rem !important;
    padding-bottom: 1.7rem !important;
    background-color: #f2f3f5 !important;
}

/* ================= PRIMARY STYLE ================= */
.accordion-card-bg.accordion-primary .card {
    border: 0 !important;
    background-color: #f2f3f5 !important;
}

.accordion-card-bg.accordion-primary .card-header a {
    background-color: #37c !important;
    color: #fff !important;
}

.accordion-card-bg.accordion-primary .card-header a:after {
    color: #fff !important;
}

.pay-btn{
    padding:10px 15px;
    border:1px solid #ccc;
    background:#fff;
    cursor:pointer;
    margin-right:10px;
    border-radius:6px;
}

.pay-btn.active{
    background:#000;
    color:#fff;
    border-color:#000;
}
.cart-added-alert{
    display: none !important;
}

.password-wrapper {
    position: relative;
}

.password-input {
    padding-right: 45px !important;
    height: 45px; /* ensures perfect alignment */
}

.toggle-eye {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
    font-size: 16px;
    user-select: none;
}

/* =========================
   ALERT BASE STYLE
========================= */
.alert {
    position: relative !important;
    padding: 14px 45px 14px 15px !important;
    margin-bottom: 1rem !important;
    border: 1px solid transparent !important;
    border-radius: 8px !important;

    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;

    opacity: 0 !important;
    transform: translateY(-8px) !important;

    transition: 
        opacity 0.3s ease-in-out,
        transform 0.3s ease-in-out !important;
}

/* =========================
   SHOW STATE (ANIMATION IN)
========================= */
.alert.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* =========================
   DANGER ALERT
========================= */
.alert-danger {
    color: #842029 !important;
    background-color: #f8d7da !important;
    border-color: #f5c2c7 !important;
}

/* =========================
   SUCCESS ALERT
========================= */
.alert-success {
    color: #0f5132 !important;
    background-color: #d1e7dd !important;
    border-color: #badbcc !important;
}

/* =========================
   DISMISSIBLE BUTTON
========================= */
.alert-dismissible {
    padding-right: 50px !important;
}

.alert-dismissible .btn-close {
    position: absolute !important;
    top: 50% !important;
    right: 12px !important;
    transform: translateY(-50%) !important;

    background: transparent !important;
    border: none !important;

    font-size: 20px !important;
    font-weight: bold !important;
    line-height: 1 !important;

    cursor: pointer !important;
    opacity: 0.6 !important;

    transition: opacity 0.2s ease-in-out !important;
}

.alert-dismissible .btn-close:hover {
    opacity: 1 !important;
}

/* =========================
   FADE CLASS (BOOTSTRAP COMPATIBLE)
========================= */
.fade {
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out !important;
}

.fade.show {
    opacity: 1 !important;
}

/* =========================
   OPTIONAL: SHADOW (MODERN LOOK)
========================= */
.alert {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.minipopup-area{
    display: none !important;
}

/* HERO SLIDER HEIGHT */
.intro-slider .banner {
    height: 320px !important;
    overflow: hidden !important;
    position: relative !important;
}

/* IMAGE COVER */
.intro-slider .banner figure,
.intro-slider .banner img {
    width: 100% !important;
    height: 100% !important;
}

.intro-slider .banner img {
    object-fit: cover !important;
    display: block !important;
}

/* GRADIENT OVERLAY */
.intro-slider .banner::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 35%,
        rgba(0,0,0,0.10) 70%,
        rgba(0,0,0,0.00) 100%
    ) !important;

    z-index: 1 !important;
}

/* CONTENT MUST BE ABOVE EVERYTHING */
.intro-slider .banner-content {
    position: absolute !important;
    top: 50% !important;
    left: 40px !important;
    transform: translateY(-50%) !important;

    z-index: 5 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* SLIDE ANIMATION FIX */
.intro-slider .slide-animate {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* TEXT FORCE WHITE */
.intro-slider .banner-title,
.intro-slider .banner-subtitle,
.intro-slider .banner-price-info,
.intro-slider p {
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* BUTTON FIX */
.intro-slider .btn-white {
    background: #fff !important;
    color: #000 !important;
    border: none !important;
}

.intro-slider .btn-white:hover {
    background: #f2f2f2 !important;
}

.mobile-user-bar {
    padding: 10px 12px;
    background: linear-gradient(135deg, #f6a800, #28475C);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* CARD */
.mobile-user-bar .user-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    padding: 12px;
    border-radius: 14px;
}

/* TOP USER */
.user-left {
    display: flex;
    align-items: center;
}

/* AVATAR */
.avatar {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #333;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* TEXT */
.user-info .welcome {
    font-size: 11px;
    color: #f1f1f1;
}

.user-info .username {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

/* ACTIONS ROW */
.user-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

/* BUTTON STYLE (ICON + TEXT) */
.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    font-size: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

/* ICON */
.action-btn i {
    font-size: 14px;
}

/* HOVER */
.action-btn:hover {
    background: #fff;
    color: #333;
}

/* ADMIN SPECIAL */
.action-btn.admin {
    background: rgba(0,0,0,0.2);
}

/* LOGOUT SPECIAL */
.action-btn.logout {
    background: rgba(255,0,0,0.2);
}

.action-btn.logout:hover {
    background: red;
    color: #fff;
}

/* HIDE ON DESKTOP */
@media (min-width: 992px) {
    .mobile-user-bar {
        display: none !important;
    }
}

.share-panel {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    border: 1px solid #eee;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* HEADER */
.share-head h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.share-head p {
    margin: 4px 0 12px;
    font-size: 13px;
    color: #777;
}

/* GRID LAYOUT (PREMIUM LOOK) */
.share-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

/* SHARE ITEM */
.share-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 12px 6px;
    border-radius: 14px;

    text-decoration: none;
    background: #f8f9fb;
    border: 1px solid #f0f0f0;

    transition: all 0.25s ease;
}

.share-item i {
    font-size: 18px;
}

.share-item span {
    font-size: 11px;
    color: #444;
}

/* HOVER PREMIUM EFFECT */
.share-item:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* BRAND COLORS (SUBTLE) */
.share-item.wa i { color: #25D366; }
.share-item.fb i { color: #1877F2; }
.share-item.x i { color: #111; }
.share-item.tg i { color: #0088cc; }
.share-item.copy i { color: #666; cursor: pointer; }

/* MOBILE (IMPORTANT) */
@media (max-width: 600px) {
    .share-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

/* IN STOCK */
.product-stock.in-stock {
    background: #e9f9ee;
    color: #1a7f37;
    border: 1px solid #b7e4c7;
}

/* OUT OF STOCK */
.product-stock.out-stock {
    background: #fff1f1;
    color: #c62828;
    border: 1px solid #f5c2c2;
}

.premium-nav-pagination{
    padding: 20px 10px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

/* BUTTON BASE */
.nav-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
    border:1px solid transparent;
    font-size:14px;
}

/* NAVY BUTTON STYLE */
.prev-btn,
.next-btn{
    background:#28475C;
    color:#fff;
}

/* GOLD HOVER */
.prev-btn:hover,
.next-btn:hover{
    background:#f6a800;
    color:#000;
    transform: translateY(-2px);
}

/* DISABLED STATE */
.nav-btn.disabled{
    background:#f5f5f5;
    color:#aaa;
    cursor:not-allowed;
    border:1px solid #eee;
}

/* PAGE INFO */
.page-info{
    font-size:14px;
    font-weight:600;
    color:#28475C;
    background:#f6a80020;
    padding:6px 12px;
    border-radius:10px;
}
.mobile-header-search {
    padding: 10px 15px;
    background: #fff;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    background: #f5f6f8;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
}

.mobile-search-input::placeholder {
    color: #888;
}

.mobile-search-btn {
    background: #111;
    border: none;
    color: #fff;
    width: 48px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.mobile-search-btn:hover {
    background: #333;
}