/* =========================================================
   F&H PRODUCTS WEBSITE — CLEANED MASTER STYLESHEET
   Replace the full contents of css/style.css with this file.
========================================================= */

/* =========================
   ROOT / RESET
========================= */

:root {
    --bg: #0b0b0b;
    --bg-soft: #111;
    --card: #1b1b1b;
    --card-alt: #1f2226;
    --gold: #d4af37;
    --gold-light: #f0c64d;
    --text: #ffffff;
    --text-soft: #cccccc;
    --text-muted: #aaaaaa;
    --success: #48c774;
    --danger: #dc3545;
    --border-gold: rgba(212, 175, 55, .22);
    --shadow-gold: rgba(212, 175, 55, .22);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

section {
    position: relative;
    padding: 80px 0;
}

/*
section:not(.hero)::before {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 0 auto 40px;
    background: linear-gradient(90deg, var(--gold), #f5d76e, var(--gold));
    border-radius: 50px;
    opacity: .8;
}
*/

h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 55px;
    color: var(--gold);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #f5d76e, var(--gold));
    border-radius: 50px;
}


/* =========================
   ANNOUNCEMENT BAR
========================= */

.announcement-bar{
    background:#d4af37;
    color:#111;
    font-weight:600;
    font-size:13px;
    text-align:center;
    padding:8px 15px;
}

.announcement-bar a,
.announcement-bar span{
    color:#111 !important;
}

/* =========================
   NAVIGATION
========================= */

.navbar {
    position: fixed !important;
    top: 36px !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050 !important;
    background: rgba(5, 5, 5, .98) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(212, 175, 55, .18);
    box-shadow: none;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #fff !important;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: .3s ease;
}

.navbar-brand:hover {
    color: var(--gold) !important;
    transform: scale(1.03);
}

.navbar-brand img,
.logo {
    width: auto;
    height: 80px;
    object-fit: contain;
}

.nav-link {
    color: #fff !important;
    margin-left: 20px;
    font-weight: 500;
    transition: color .3s ease, transform .3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
    transform: translateY(-1px);
}


/* =========================
   BUTTONS
========================= */

.btn {
    transition: all .3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-warning,
.btn-outline-warning {
    width: auto;
    height: auto;
    min-height: 44px;
    padding: 11px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-warning {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #000;
    box-shadow: 0 8px 20px rgba(212, 175, 55, .28);
}

.btn-warning:hover,
.btn-warning:focus {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, .36);
}

.btn-outline-warning {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 210px 20px 80px;
    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .65)),
        url("../images/hero/hero-bg.png") center center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, .20) 0%,
        rgba(0, 0, 0, .45) 55%,
        rgba(0, 0, 0, .75) 100%
    );
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
}

.hero-tagline {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(52px, 7vw, 78px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 8px 25px rgba(0,0,0,.6);
}
.hero p,
.hero-text {
    max-width: 650px;
    margin: 0 auto 32px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .82);
}

.hero .btn {
    padding: 16px 42px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg,#d4af37,#f5d76e);
    border: none;
    color:#111;
    box-shadow: 0 12px 35px rgba(212,175,55,.45);
    transition:.35s;
}

.hero .btn:hover{
    transform:translateY(-4px) scale(1.04);
    box-shadow:0 18px 45px rgba(212,175,55,.65);
}

.hero-features {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.hero-features span {
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(212, 175, 55, .35);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.hero-features span:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-2px);
}

.hero-stats {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stats strong {
    color: var(--gold);
    font-size: 28px;
    font-weight: 800;
}

.hero-stats span {
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    margin-top: 4px;
}


/* =========================
   PRODUCT CARDS
========================= */

.featured-products,
.best-sellers,
.shop-products,
.testimonials,
.product-information {
    background: var(--bg-soft);
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    animation: fadeUp .5s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(212, 175, 55, .25);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    transition: transform .35s ease;
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-card h3,
.product-card h5 {
    color: #fff;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 22px;
}

.product-card p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card h4 {
    color: var(--gold);
    margin-top: auto;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-card del {
    color: #cfcfcf !important;
    opacity: 1 !important;
    font-size: 14px;
}

.product-card .btn {
    width: 100%;
    min-height: 44px;
    margin-top: 10px;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: var(--danger);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.wishlist-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: red;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    transition: .2s ease;
}

.wishlist-heart:hover {
    transform: scale(1.1);
}


/* =========================
   SHOP BY CATEGORY
========================= */

.shop-categories{
    background:#0b0b0b;
    padding:90px 0;
}

.shop-categories h2,
.best-sellers h2,
.why-us h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    margin-bottom: 50px;
}

.shop-categories h2::after,
.best-sellers h2::after,
.why-us h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #f5d76e, var(--gold));
    border-radius: 50px;
}

.category-link {
    display: block;
    height: 100%;
}

.category-card {
    height: 100%;
    overflow: hidden;
    text-align: center;
    background: var(--card);
    border: 1px solid rgba(212, 175, 55, .15);
    border-radius: 16px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(212, 175, 55, .18);
}

.category-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #fff;
    transition: transform .45s ease;
}

.category-card:hover img {
    transform: scale(1.07);
}

.category-content {
    padding: 25px 18px 30px;
}

.category-content h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    min-height: 52px;
}

.category-content p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    min-height: 68px;
    margin: 12px 0 20px;
}

.category-content .btn {
    width: 170px;
}


/* =========================
   BEST SELLERS
========================= */

.best-sellers{
    background:#111;
    padding:70px 0 40px;
}


.best-sellers h4 {
    color: var(--gold);
    font-size: 25px;
    font-weight: 700;
    margin: 15px 0;
}


/* =========================
   WHY CHOOSE US
========================= */

.why-us{
    background:#0b0b0b;
    padding:100px 0 80px;
    scroll-margin-top:120px;
}

.why-us .feature-box {
    height: 100%;
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    transition: .35s ease;
}

.why-us .feature-box:hover {
    transform: translateY(-7px);
    border-color: var(--gold);
    box-shadow: 0 16px 35px rgba(212, 175, 55, .18);
}

.why-us .feature-box i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 14px;
}


/* =========================
   TRUST BAR
========================= */

.trust-bar {
    background: #121212;
    border-top: 1px solid rgba(212, 175, 55, .12);
    border-bottom: 1px solid rgba(212, 175, 55, .12);
}

.trust-icon {
    font-size: 34px;
   color: #d4af37 !important;
    margin-bottom: 12px;
}

.trust-bar h6 {
    color: #dddddd !important;
    font-weight: 700;
    margin-bottom: 6px;
}

.trust-bar small {
    color: #dddddd !important;
}


/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    background:#111;
    padding:90px 0;
}
.testimonials h2 {
    text-align: center;
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-card {
    height: 100%;
    background: var(--card);
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: var(--radius);
    padding: 30px;
    transition: .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, .15);
}

.testimonial-card p {
    color: #ccc;
    line-height: 1.9;
    margin: 18px 0;
}

.testimonial-card h5 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 1.15rem;
    font-weight: 700;
}

.testimonial-card small {
    color: #999;
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
}

.customer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 15px auto;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, .25);
}


/* =========================
   SHOP PAGE
========================= */

.shop-banner {
    background: var(--bg-soft);
    padding: 160px 0 60px;
    text-align: center;
}

.shop-banner h1 {
    color: var(--gold);
    font-size: 52px;
    font-weight: 700;
}

.shop-banner p {
    color: #bbb;
    font-size: 18px;
}

.shop-filter {
    background: var(--bg);
    padding: 30px 0;
}

.shop-filter .form-control,
.shop-filter .form-select {
    background: var(--card);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, .25);
    height: 55px;
}

.shop-filter .form-control::placeholder {
    color: #777;
}

.shop-filter .form-control:focus,
.shop-filter .form-select:focus {
    border-color: var(--gold);
    box-shadow: none;
}

.shop-products {
    padding: 60px 0 90px;
}


/* =========================
   PRODUCT DETAILS PAGE
========================= */

.product-details {
    background: var(--bg);
    padding: 160px 0 90px;
}

.product-category {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.product-details h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-rating span {
    color: var(--gold);
    letter-spacing: 3px;
}

.product-rating small {
    color: #bbb;
}

.product-price {
    text-align: left;
    color: var(--gold);
    font-size: 36px;
    margin: 0 0 25px;
}

.product-description {
    color: #ccc;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.product-benefits li {
    color: #ddd;
    margin-bottom: 12px;
}

.product-benefits i {
    color: var(--gold);
    margin-right: 10px;
}

.quantity-area {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.quantity-area label {
    color: #fff;
    font-weight: 600;
}

.quantity-area input {
    width: 85px;
    height: 48px;
    background: var(--card);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, .35);
    border-radius: 10px;
    text-align: center;
}

.product-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.product-trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.product-trust div {
    color: #bbb;
}

.product-trust i {
    color: var(--gold);
    margin-right: 8px;
}

.information-card {
    height: 100%;
    background: var(--card);
    border-radius: var(--radius);
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, .15);
}

.information-card h2 {
    text-align: left;
    font-size: 28px;
    margin-bottom: 25px;
}

.information-card p {
    color: #bbb;
    line-height: 1.8;
}

.specification-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #bbb;
}

.specification-row strong {
    color: #fff;
    text-align: right;
}

.in-stock,
.specification-row .in-stock {
    color: var(--success);
}


/* =========================
   PRODUCT GALLERY / ZOOM
========================= */

.product-gallery {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.product-main-image {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: zoom-in;
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, .25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    transition: box-shadow .25s ease;
}

.product-main-image:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}

.product-main-image{
    overflow:hidden;
    border-radius:18px;
}

.product-main-image img,
.product-zoom-image{
    width:100%;
    max-height:500px;
    object-fit:contain;
    cursor:zoom-in;
    transition:transform .4s ease;
}

.product-main-image:hover img{
    transform:scale(1.15);
}

.product-thumbnails {
    order: -1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-thumbnail {
    width: 85px;
    height: 85px;
    object-fit: cover;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
    transition: .2s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: #d9af2b;
    box-shadow: 0 0 12px rgba(217, 175, 43, .45);
    transform: scale(1.08);
}

.product-zoom-container,
#zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 12px;
}

#zoom-lens {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    pointer-events: none;
    display: none;
    z-index: 1000;
}


/* =========================
   LIGHTBOX
========================= */

.image-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .9);
    z-index: 99999;
}

.image-lightbox.show {
    display: flex;
}

.image-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}


/* =========================
   PRODUCT INFORMATION EXTRAS
========================= */

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 4px 0 16px;
    padding: 7px 12px;
    border-radius: 20px;
    background: rgba(40, 167, 69, .12);
    color: #7ed957;
    font-weight: 700;
    font-size: 14px;
}

.delivery-info {
    margin: 12px 0 18px;
    padding: 12px 15px;
    background: #161616;
    border: 1px solid #2b2b2b;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.delivery-info i,
.trust-badges i {
    color: #d9af2b;
}

.trust-badges {
    margin-top: 20px;
}

.trust-badges div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #f5f5f5;
    font-size: 15px;
}

.trust-badges i {
    width: 20px;
}


/* =========================
   FREQUENTLY BOUGHT TOGETHER
========================= */

.frequently-bought-box {
    background: var(--card);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px;
}

.fbt-products {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fbt-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 260px;
    background: #222;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
}

.fbt-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
}

.fbt-item h4 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.fbt-item strong,
.fbt-plus,
.fbt-summary strong {
    color: #d9af2b;
}

.fbt-plus {
    font-size: 40px;
    font-weight: 700;
}

.fbt-summary {
    text-align: center;
    margin-top: 30px;
}

.fbt-summary strong {
    font-size: 26px;
}

.fbt-summary .btn {
    margin-top: 15px;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
}


/* =========================
   CUSTOMERS ALSO BOUGHT
========================= */

.customers-also-bought {
    padding: 70px 0;
}

.customers-also-bought .product-card {
    padding: 16px;
}

.customers-also-bought .product-card img {
    height: 220px;
}


/* =========================
   SLIDERS
========================= */

.customers-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.customers-slider > div {
    min-width: 320px;
    scroll-snap-align: start;
}

.customers-slider::-webkit-scrollbar {
    height: 8px;
}

.customers-slider::-webkit-scrollbar-thumb {
    background: #d9af2b;
    border-radius: 10px;
}

.related-products-slider .carousel-control-prev,
.related-products-slider .carousel-control-next {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.recently-viewed .product-card {
    min-width: 230px;
}


/* =========================
   REVIEWS
========================= */

#reviews-list {
    margin-bottom: 40px;
}

#average-stars {
    font-size: 32px;
    color: var(--gold);
}

#average-rating {
    color: #fff;
    font-weight: 700;
}

#review-count {
    color: #bfbfbf;
}


/* =========================
   TOAST
========================= */

#toast {
    animation: fadeIn .3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================
   CHECKOUT PAGE
========================= */

.checkout-page {
    background: var(--bg-soft);
    padding: 110px 0 80px;
    min-height: 100vh;
}

.checkout-title {
    color: var(--gold);
    margin-bottom: 40px;
    text-align: center;
}

.checkout-card {
    background: var(--card-alt);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.checkout-card h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
}

.checkout-card label {
    color: #ddd;
    margin-bottom: 8px;
    display: block;
}

.checkout-card .form-control,
.checkout-card .form-select {
    background: #111;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, .25);
}

.checkout-card .form-control:focus,
.checkout-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: none;
}

.shipping-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 10px;
    margin-bottom: 15px;
    color: #fff;
}

.shipping-option small {
    display: block;
    color: #aaa;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 18px 0;
    color: #fff;
}

.total-row {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    font-size: 22px;
    font-weight: 700;
}

.secure-message {
    text-align: center;
    color: #aaa;
    margin-top: 20px;
}

.secure-message i {
    color: var(--gold);
}


/* =========================
   CART PAGE
========================= */

.cart-page {
    min-height: 100vh;
    background: var(--bg-soft);
    padding-top: 140px;
}

.cart-summary {
    width: min(420px, 100%);
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 25px;
}

.cart-summary .btn {
    width: 100%;
}


/* =========================
   ORDER SUCCESS
========================= */

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
}

.success-box {
    width: min(650px, calc(100% - 30px));
    margin: auto;
    background: var(--card-alt);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, .2);
    text-align: center;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.success-box h1 {
    color: var(--gold);
    margin-bottom: 20px;
}

.success-box p {
    color: #ccc;
}

.success-box h2 {
    color: #fff;
}


/* =========================
   QUICK VIEW
========================= */

#quick-image {
    transition: transform .3s ease;
}

#quick-image:hover {
    transform: scale(1.08);
}


/* =========================
   STICKY CART BAR
========================= */

.sticky-cart-bar {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(900px, calc(100% - 30px));
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #111;
    border: 1px solid #d9af2b;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.sticky-cart-bar.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cart-bar img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

.sticky-info,
.sticky-cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.sticky-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.sticky-info strong,
.sticky-cart-product h4 {
    color: #fff;
    margin: 0;
}

.sticky-info span,
.sticky-cart-product strong {
    color: #d9af2b;
    font-weight: 700;
}


/* =========================
   MINI CART DRAWER
========================= */

.mini-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

.mini-cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mini-cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, .2);
    transition: .35s;
    z-index: 9999;
}

.mini-cart-drawer.show {
    right: 0;
}

.mini-cart-header,
.mini-cart-footer {
    padding: 20px;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.mini-cart-header button {
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.mini-cart-item img {
    width: 75px !important;
    height: 75px !important;
    max-width: 75px !important;
    object-fit: contain;
    flex-shrink: 0;
}

.mini-cart-item > div {
    flex: 1;
    min-width: 0;
}

.mini-cart-item h5 {
    color: #000;
    font-size: 15px;
    margin: 0 0 5px;
}

.mini-cart-item p {
    color: #555;
    margin: 0;
}

.mini-cart-item strong {
    color: #c99700;
}

.mini-cart-item .btn {
    width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    border-radius: 50%;
}

.mini-cart-remove {
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
    transition: .2s ease;
}

.mini-cart-remove:hover {
    transform: scale(1.1);
}

.mini-cart-progress {
    padding: 15px 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    color: #111;
}

.mini-cart-progress p {
    margin-bottom: 10px;
    font-size: 14px;
}

.mini-cart-progress .progress {
    height: 8px;
    border-radius: 20px;
    overflow: hidden;
}

.mini-cart-footer {
    color: #111;
}

.mini-cart-footer .btn {
    width: 100%;
    border-radius: 30px;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: linear-gradient(180deg, #111, #080808);
    color: #bbb;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, .18);
    text-align: left;
}

.footer h5,
.footer h6 {
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer p {
    line-height: 1.8;
    font-size: 16px;
}

.footer a {
    color: #d8d8d8;
    font-size: 16px;
    transition: .3s ease;
}

.footer a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer li {
    margin-bottom: 10px;
}

.footer hr {
    border-color: rgba(212, 175, 55, .18);
    margin: 35px 0 20px;
}

.footer img {
    margin-bottom: 15px;
    max-width: 130px;
    height: auto;
}


/* =========================
   BACK TO TOP / REVEAL
========================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: #111;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s ease;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(212, 175, 55, .3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: #f0cf63;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .navbar-brand img,
    .logo {
        height: 65px;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar-collapse {
        background: #111;
        border-radius: 12px;
        margin-top: 12px;
        padding: 15px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-text,
.hero p {
    font-size: 18px;
    color: rgba(255,255,255,.82);
    max-width: 760px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

    .category-card img {
        height: 240px;
    }

    .product-gallery {
        flex-direction: column;
    }

    .product-thumbnails {
        order: 2;
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 85vh;
        padding: 150px 20px 70px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-features span {
        font-size: 13px;
        padding: 8px 14px;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stats strong {
        font-size: 22px;
    }

    h2,
    .shop-categories h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .product-card img,
    .category-card img {
        height: 240px;
    }

    .product-details {
        padding: 130px 0 60px;
    }

    .product-details h1 {
        font-size: 36px;
    }

    .product-main-image img {
        max-height: 340px;
    }

    .product-buttons .btn {
        width: 100%;
    }

    .product-trust {
        flex-direction: column;
        gap: 14px;
    }

    .checkout-page {
        padding-top: 130px;
    }

    .footer {
        text-align: center;
    }

    .footer .col-md-4 {
        margin-bottom: 30px;
    }

    .sticky-cart-bar {
        width: calc(100% - 20px);
        bottom: 10px;
        padding: 10px;
    }

    .sticky-cart-bar .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .customers-slider > div {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        font-size: 11px;
        padding: 9px 8px;
    }

    .navbar-brand img,
    .logo {
        height: 58px;
    }

    .hero {
        padding-top: 145px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .category-card img,
    .product-card img {
        height: 220px;
    }

    .category-content .btn {
        width: 150px;
    }

    .shop-banner h1 {
        font-size: 38px;
    }

    .mini-cart-drawer {
        width: 100%;
    }

    .success-box {
        padding: 35px 20px;
    }
}
/* ===== FINAL HOMEPAGE COLOUR AND NAVBAR FIX ===== */

.announcement-bar {
    position: relative !important;
    top: auto !important;
}

.navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
}

/* Homepage backgrounds */
.shop-categories,
.why-us {
    background: #0b0b0b !important;
}

.best-sellers,
.testimonials {
    background: #111 !important;
}

/* Section headings */
.shop-categories h2,
.best-sellers h2,
.testimonials h2,
.why-us h2 {
    color: #d4af37 !important;
}

/* Category cards */
.shop-categories .category-card {
    background: #1b1b1b !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
}

.shop-categories .category-card h3 {
    color: #ffffff !important;
}

.shop-categories .category-card p {
    color: #cccccc !important;
}

.category-icon {
    background: linear-gradient(135deg, #d4af37, #f5d76e) !important;
}

.category-icon i {
    color: #111111 !important;
}

/* Best sellers */
.best-sellers .product-card {
    background: #1b1b1b !important;
}

.best-sellers .product-card h3 {
    color: #ffffff !important;
}

.best-sellers .product-card p {
    color: #cccccc !important;
}

.best-sellers .product-card h4 {
    color: #d4af37 !important;
}

/* Testimonials */
.testimonial-card {
    background: #1b1b1b !important;
}

.testimonial-card p {
    color: #cccccc !important;
}

.testimonial-card h5 {
    color: #ffffff !important;
}

.testimonial-card small {
    color: #aaaaaa !important;
}

.testimonial-card .stars {
    color: #d4af37 !important;
}

/* Why choose us */
.why-us .product-card {
    background: #1b1b1b !important;
}

.why-us .product-card h3 {
    color: #ffffff !important;
}

.why-us .product-card p {
    color: #cccccc !important;
}

/* Buttons */
.shop-categories .btn-warning,
.best-sellers .btn-warning {
    background: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #111111 !important;
}
/* ===== FINAL TOP BAR FIX ===== */

.announcement-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1060 !important;
    min-height: 36px;
}

.navbar {
    position: fixed !important;
    top: 36px !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050 !important;
}

.hero {
    padding-top: 210px !important;
}
/* Hero button fix */
.hero .btn-warning,
.hero .btn{
    background:#d4af37 !important;
    color:#111 !important;
    border:0 !important;
    padding:14px 38px;
    border-radius:40px;
    position:relative;
    z-index:5;
    box-shadow:0 10px 25px rgba(212,175,55,.35);
}

.hero .btn:hover{
    background:#f5d76e !important;
    color:#111 !important;
}
.hero-stats strong {
    color: #d4af37 !important;
    opacity: 1 !important;
}

.hero-stats span {
    color: #ffffff !important;
    opacity: 1 !important;
}
/* Feature bar text fix */
.feature-box h4,
.feature-box h5,
.feature-box strong {
    color: #ffffff !important;
}

.feature-box p,
.feature-box small,
.feature-box span {
    color: #d0d0d0 !important;
}

.feature-box i,
.feature-box svg {
    color: #d4af37 !important;
}
/* =========================================================
   PREMIUM ANIMATIONS
========================================================= */

/* Smooth page movement */
html {
    scroll-behavior: smooth;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Category cards */
.category-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #d4af37 !important;
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.22);
}

/* Product cards */
.product-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37 !important;
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
}

.product-card img {
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.06);
}

/* Testimonial cards */
.testimonial-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.18);
}

/* Buttons */
.btn-warning {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.38);
}

/* Button shine */
.btn-warning::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.45),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-warning:hover::after {
    left: 140%;
}

/* Navigation underline */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Logo hover */
.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Hero entrance */
.hero-tagline {
    animation: heroFadeDown 0.8s ease both;
}

.hero h1 {
    animation: heroFadeUp 0.9s ease 0.15s both;
}

.hero-text {
    animation: heroFadeUp 0.9s ease 0.3s both;
}

.hero .btn-warning {
    animation: heroFadeUp 0.9s ease 0.45s both;
}

.hero-stats {
    animation: heroFadeUp 0.9s ease 0.6s both;
}

@keyframes heroFadeDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back-to-top pulse */
.back-to-top.show {
    animation: softPulse 2s infinite;
}

@keyframes softPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.35);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* NAVIGATION CLICK / ACTIVE FIX */

.nav-link,
.nav-link:visited,
.nav-link:focus,
.nav-link:active {
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
}

.nav-link:hover,
.nav-link.active {
    background: transparent !important;
    color: #d4af37 !important;
}

.navbar .nav-item,
.navbar .nav-item:focus,
.navbar .nav-item:active {
    background: transparent !important;
}
@keyframes heroFade{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-content{
    animation:heroFade 1s ease;
}
/* =========================================================
   PREMIUM PRODUCT CARD UPGRADE
========================================================= */

.best-sellers .product-card {
    position: relative;
    overflow: hidden;
    padding: 18px;
    background: linear-gradient(180deg, #1d1d1d, #171717) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Gold glow at top */
.best-sellers .product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        #f5d76e,
        #d4af37,
        transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Card hover */
.best-sellers .product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.65) !important;
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.45),
        0 0 28px rgba(212, 175, 55, 0.16);
}

.best-sellers .product-card:hover::before {
    opacity: 1;
}

/* Product image area */
.best-sellers .product-card img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 18px;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.best-sellers .product-card:hover img {
    transform: scale(1.07);
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}

/* Product title */
.best-sellers .product-card h3 {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
}

/* Reviews */
.best-sellers .product-card p {
    color: #bdbdbd !important;
    font-size: 12px;
    margin-bottom: 12px;
}

/* Price */
.best-sellers .product-card h4 {
    color: #d4af37 !important;
    font-size: 22px;
    font-weight: 800;
    margin: 8px 0 14px;
}

/* Buy button */
.best-sellers .product-card .btn-warning {
    width: 100%;
    min-height: 44px;
    background: linear-gradient(135deg, #d4af37, #f5d76e) !important;
    border: none !important;
    color: #111111 !important;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.22);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.best-sellers .product-card .btn-warning:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.42);
}

/* Subtle shine across card */
.best-sellers .product-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -60%;
    width: 45%;
    height: 300%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.06),
        transparent
    );
    transform: rotate(18deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.best-sellers .product-card:hover::after {
    left: 125%;
}

/* Mobile */
@media (max-width: 767.98px) {
    .best-sellers .product-card img {
        height: 210px;
    }

    .best-sellers .product-card:hover {
        transform: translateY(-5px);
    }
}
.product-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );
    transform:skewX(-25deg);
    transition:.8s;
    opacity:0;
    pointer-events:none;
}

.product-card:hover::before{
    left:150%;
    opacity:1;
}
/* =========================================================
   PREMIUM CATEGORY CARD UPGRADE
========================================================= */

.shop-categories .category-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 30px 24px;
    background: linear-gradient(180deg, #1d1d1d, #171717) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 18px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.shop-categories .category-card:hover {
    transform: translateY(-9px) scale(1.01);
    border-color: #d4af37 !important;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(212, 175, 55, 0.18);
}

/* Gold top bar */
.shop-categories .category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(
        90deg,
        #b98b16,
        #f5d76e,
        #d4af37
    );
    transition: height 0.3s ease;
}

.shop-categories .category-card:hover::before {
    height: 10px;
}

/* Category icon */
.shop-categories .category-icon {
    width: 72px;
    height: 72px;
    margin: 6px auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f5d76e) !important;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.25);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.shop-categories .category-card:hover .category-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.38);
}

.shop-categories .category-icon i {
    color: #111 !important;
    font-size: 28px;
}

/* Text */
.shop-categories .category-card h3 {
    color: #fff !important;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}

.shop-categories .category-card p {
    color: #c8c8c8 !important;
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Explore button */
.shop-categories .category-card .btn-warning {
    min-width: 130px;
    background: linear-gradient(135deg, #d4af37, #f5d76e) !important;
    color: #111 !important;
    font-weight: 700;
    border: none !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.22);
}

.shop-categories .category-card .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(212, 175, 55, 0.4);
}
/* =========================================================
   AMAZON-STYLE NAVBAR SEARCH
========================================================= */

.navbar .container {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.navbar-search {
    flex: 1;
    max-width: 720px;
    margin-left: 20px;
}

.navbar-search form {
    display: flex;
    width: 100%;
    height: 46px;
    overflow: hidden;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar-search form:focus-within {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.navbar-search select {
    width: 115px;
    padding: 0 12px;
    border: 0;
    border-right: 1px solid #ddd;
    background: #f3f3f3;
    color: #333;
    font-size: 13px;
    cursor: pointer;
}

.navbar-search input {
    flex: 1;
    min-width: 0;
    padding: 0 16px;
    border: 0;
    color: #111;
    font-size: 15px;
    outline: none;
}

.navbar-search input::placeholder {
    color: #777;
}

.navbar-search button {
    width: 54px;
    border: 0;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #111;
    font-size: 18px;
    cursor: pointer;
    transition: filter 0.25s ease;
}

.navbar-search button:hover {
    filter: brightness(1.08);
}

@media (max-width: 991.98px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar-search {
        order: 3;
        width: 100%;
        max-width: none;
        margin: 10px 0 0;
    }

    .navbar-search form {
        height: 44px;
    }
}

@media (max-width: 575.98px) {
    .navbar-search select {
        width: 82px;
        padding: 0 7px;
        font-size: 11px;
    }

    .navbar-search input {
        padding: 0 10px;
        font-size: 13px;
    }

    .navbar-search button {
        width: 48px;
    }
}
/* ===== Navbar Search ===== */

.navbar-search{
    display:flex;
    align-items:center;
    background:#1d1d1d;
    border:1px solid rgba(212,175,55,.35);
    border-radius:50px;
    overflow:hidden;
    margin:0 25px;
    max-width:520px;
    width:100%;
}

.navbar-search select{
    border:none;
    background:#262626;
    color:#fff;
    padding:12px;
    outline:none;
}

.navbar-search input{
    flex:1;
    border:none;
    background:transparent;
    color:#fff;
    padding:12px 16px;
    outline:none;
}

.navbar-search input::placeholder{
    color:#aaa;
}

.navbar-search button{
    border:none;
    background:var(--gold);
    color:#111;
    padding:12px 18px;
    cursor:pointer;
}

.navbar-search button:hover{
    background:#f5d76e;
}

@media(max-width:992px){
    .navbar-search{
        display:none;
    }
}
/* ===== SHOP CATEGORY DROPDOWN FIX ===== */

#category-filter {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

#category-filter option {
    background: #ffffff;
    color: #111111;
}

#category-filter:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.shop-filter .row {
    align-items: center;
}

#product-count {
    margin: 0;
    color: #d4af37;
    font-weight: 700;
}
/* ===== SHOP PAGE SPACING FIX ===== */

.shop-products {
    padding-top: 35px !important;
    padding-bottom: 45px !important;
    min-height: auto !important;
}

#shop-products {
    min-height: auto !important;
    align-items: flex-start;
}

#shop-products > div {
    margin-bottom: 25px;
}

.customers-also-bought {
    padding-top: 55px !important;
    padding-bottom: 70px !important;
    margin-top: 0 !important;
}
/* ===== CUSTOMERS ALSO BOUGHT HEADING ===== */

.customers-also-bought .section-title {
    display: block !important;
    text-align: center !important;
    color: #d4af37 !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    margin: 0 0 45px !important;
    position: relative;
}

.customers-also-bought .section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #d4af37, #f5d76e, #d4af37);
    border-radius: 50px;
}
.shop-products .row {
    min-height: auto !important;
    height: auto !important;
    display: flex;
    align-items: flex-start;
}

#shop-products {
    min-height: auto !important;
    height: auto !important;
}

#shop-products .col-lg-4 {
    margin-bottom: 0 !important;
}
/* ===== COMPACT SHOP LAYOUT ===== */

.shop-filter {
    padding-top: 45px !important;
    padding-bottom: 20px !important;
}

.shop-products {
    padding-top: 15px !important;
    padding-bottom: 35px !important;
}

#shop-products {
    margin-top: 0 !important;
}

.shop-products .product-card {
    margin-top: 0 !important;
}
/* =========================================
   PREMIUM PRODUCT PURCHASE AREA
========================================= */

.premium-purchase-box {
    margin-top: 25px;
    padding: 24px;
    background: linear-gradient(
        145deg,
        #171717,
        #0d0d0d
    );
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.premium-purchase-box .quantity-area {
    margin-bottom: 20px;
}

.premium-purchase-box .quantity-area label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 10px;
    background: #090909;
}

.quantity-selector button {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #d4af37;
    transition: 0.25s ease;
}

.quantity-selector button:hover {
    background: #d4af37;
    color: #000000;
}

.quantity-selector input {
    width: 58px;
    height: 44px;
    border: none;
    border-right: 1px solid rgba(212, 175, 55, 0.25);
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    outline: none;
    background: #111111;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.premium-add-cart,
.premium-buy-now {
    min-height: 54px;
    padding: 13px 18px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s ease;
}

.premium-add-cart {
    border: 1px solid #d4af37;
    background: linear-gradient(
        135deg,
        #d4af37,
        #f3d56c
    );
    color: #080808;
}

.premium-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.25);
}

.premium-buy-now {
    border: 1px solid #d4af37;
    background: transparent;
    color: #d4af37;
}

.premium-buy-now:hover {
    background: #d4af37;
    color: #000000;
    transform: translateY(-2px);
}

.premium-add-cart i,
.premium-buy-now i {
    margin-right: 8px;
}

.secondary-product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.premium-secondary-btn {
    min-height: 46px;
    border: 1px solid #333333;
    border-radius: 10px;
    background: #151515;
    color: #eeeeee;
    transition: 0.25s ease;
}

.premium-secondary-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

.premium-secondary-btn i {
    margin-right: 7px;
}

.premium-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

.premium-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 14px;
    border: 1px solid #292929;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
}

.premium-trust-item > i {
    width: 36px;
    color: #d4af37;
    font-size: 22px;
    text-align: center;
}

.premium-trust-item span {
    display: flex;
    flex-direction: column;
    color: #9d9d9d;
    font-size: 12px;
    line-height: 1.4;
}

.premium-trust-item strong {
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 13px;
}

@media (max-width: 576px) {
    .premium-purchase-box {
        padding: 18px;
    }

    .product-buttons,
    .secondary-product-buttons,
    .premium-trust-grid {
        grid-template-columns: 1fr;
    }
}
/* Product page heading and spacing fix */

.product-details{
    padding-top:150px !important;
    padding-bottom:40px !important;
}

.product-details h1 {
    color: #111111 !important;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin: 10px 0 14px;
}

.product-category {
    display: inline-block;
    color: #8b6d13;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-rating span {
    color: #d4af37;
}

.product-rating strong {
    color: #222222;
    font-size: 13px;
}

.product-price {
    color: #111111 !important;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}
/* Premium product price */

.premium-price-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 14px;
}

.current-price {
    color: #111;
    font-size: 30px;
    font-weight: 800;
}

.old-price {
    color: #999;
    font-size: 17px;
    text-decoration: line-through;
}

.saving-badge {
    padding: 5px 10px;
    border-radius: 50px;
    background: #111;
    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
/* Fix sticky Add to Cart button */

.sticky-cart-bar .btn,
.sticky-cart-bar button {
    background: #d4af37 !important;
    color: #000000 !important;
    border: 1px solid #d4af37 !important;
    font-weight: 700;
    opacity: 1 !important;
    visibility: visible !important;
}

.sticky-cart-bar .btn:hover,
.sticky-cart-bar button:hover {
    background: #f0cf5a !important;
    color: #000000 !important;
}

.sticky-cart-bar {
    z-index: 9999 !important;
}
/* =========================================
   PREMIUM PRODUCT TABS
========================================= */

.premium-product-tabs {
    margin-top: 70px;
    margin-bottom: 80px;
}

.product-tab-buttons {
    display: flex;
    gap: 8px;
    padding: 8px;
    overflow-x: auto;
    border: 1px solid #e7e7e7;
    border-radius: 16px 16px 0 0;
    background: #f8f8f8;
}

.product-tab-btn {
    min-width: 150px;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #555555;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.25s ease;
}

.product-tab-btn:hover {
    color: #111111;
    background: #eeeeee;
}

.product-tab-btn.active {
    background: #111111;
    color: #d4af37;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-tab-content {
    display: none;
    min-height: 290px;
    padding: 36px;
    border: 1px solid #e7e7e7;
    border-top: none;
    border-radius: 0 0 16px 16px;
    background: #ffffff;
    animation: productTabFade 0.35s ease;
}

.product-tab-content.active {
    display: block;
}

.product-tab-content h2 {
    margin-bottom: 18px;
    color: #111111;
    font-size: 26px;
    font-weight: 800;
}

.product-tab-content p {
    max-width: 900px;
    color: #666666;
    font-size: 14px;
    line-height: 1.9;
}

.premium-tab-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 30px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

.premium-tab-list li {
    position: relative;
    padding-left: 26px;
    color: #444444;
}

.premium-tab-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 900;
}

.premium-specification-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.premium-specification-grid > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    background: #fafafa;
}

.premium-specification-grid span {
    color: #777777;
}

.premium-specification-grid strong {
    color: #111111;
    text-align: right;
}

.premium-specification-grid .spec-stock {
    color: #2f9e44;
}

.shipping-information-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.shipping-information-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    background: #fafafa;
}

.shipping-information-card > i {
    color: #d4af37;
    font-size: 25px;
}

.shipping-information-card h3 {
    margin-bottom: 8px;
    color: #111111;
    font-size: 17px;
    font-weight: 800;
}

.shipping-information-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.tab-review-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    background: #fafafa;
}

.tab-review-score strong {
    display: block;
    color: #111111;
    font-size: 42px;
    line-height: 1;
}

.tab-review-score span {
    display: block;
    margin: 8px 0;
    color: #d4af37;
    letter-spacing: 3px;
}

.tab-review-score p {
    margin: 0;
}

.tab-review-link {
    padding: 13px 22px;
    border: 1px solid #d4af37;
    border-radius: 50px;
    color: #111111;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.tab-review-link:hover {
    background: #d4af37;
    color: #111111;
}

@keyframes productTabFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .premium-product-tabs {
        margin-top: 45px;
        margin-bottom: 55px;
    }

    .product-tab-content {
        min-height: auto;
        padding: 24px 18px;
    }

    .premium-tab-list,
    .premium-specification-grid,
    .shipping-information-grid {
        grid-template-columns: 1fr;
    }

    .tab-review-summary {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* =========================================
   ACCEPTED PAYMENT METHODS
========================================= */

.accepted-payments {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    background: #ffffff;
}

.accepted-payments-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #222222;
    font-size: 13px;
    font-weight: 700;
}

.accepted-payments-heading i {
    color: #d4af37;
}

.payment-methods {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 70px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #dddddd;
    border-radius: 7px;
    background: #fafafa;
    color: #111111;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.payment-method.visa {
    color: #1a1f71;
    font-size: 16px;
    font-style: italic;
}

.payment-method.paypal {
    color: #003087;
    font-size: 14px;
}

.payment-method.apple-pay {
    font-size: 15px;
}

.payment-method.apple-pay i {
    font-size: 18px;
}

.payment-method.google-pay > span:first-child {
    font-size: 18px;
    font-weight: 900;
}

.mastercard {
    min-width: 105px;
}

.mastercard-circles {
    display: flex;
    margin-right: 2px;
}

.mastercard-circles i {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.mastercard-circles i:first-child {
    background: #eb001b;
}

.mastercard-circles i:last-child {
    margin-left: -5px;
    background: rgba(247, 158, 27, 0.9);
}

.accepted-payments p {
    margin: 12px 0 0;
    color: #888888;
    font-size: 11px;
}

@media (max-width: 576px) {
    .payment-methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-method {
        width: 100%;
    }
}
.live-viewing{
    margin-top:15px;
    padding:12px 16px;
    border-radius:10px;
    background:#fff7e6;
    border:1px solid #f3d27a;
    color:#222;
    font-size:14px;
}

.live-dot{
    display:inline-block;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#28c840;
    margin-right:8px;
    animation:pulse 1.4s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);opacity:1;}
    50%{transform:scale(1.5);opacity:.4;}
    100%{transform:scale(1);opacity:1;}
}
/* Prevent fixed navbar covering page sections */

#customer-reviews,
.premium-product-tabs,
.related-products,
.customers-also-bought {
    scroll-margin-top: 110px;
}

#customer-reviews {
    padding-top: 30px;
}
/* Premium Cart Summary */

.cart-summary {
    width: 100%;
    max-width: 420px;
    background: #111;
    color: #fff;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    position: sticky;
    top: 120px;
}

.cart-summary h3 {
    color: #fff;
    font-weight: 700;
}

.cart-summary hr {
    border-color: rgba(255, 255, 255, 0.18);
    opacity: 1;
}

.cart-summary .text-warning {
    color: #d4af37 !important;
}

.cart-summary .small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.cart-summary .small p {
    margin: 0;
    padding: 12px;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 13px;
}

.cart-summary .btn-warning {
    width: 100%;
    padding: 14px 20px;
    background: #d4af37;
    border-color: #d4af37;
    color: #111;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.cart-summary .btn-warning:hover {
    background: #f0cf57;
    border-color: #f0cf57;
}

@media (max-width: 768px) {
    .cart-summary {
        max-width: 100%;
        position: static;
        padding: 22px;
    }

    .cart-summary .small {
        grid-template-columns: 1fr;
    }
}
/* Cart page spacing below navbar */
.cart-page {
    padding-top: 140px !important;
    padding-bottom: 80px;
}

.cart-page .row {
    align-items: flex-start;
}

.cart-summary {
    margin-top: 0 !important;
}
/* Cart Item */
.cart-item{
    display:flex;
    align-items:center;
    gap:25px;
    background:#1b1b1b;
    color:#fff;
    border-radius:16px;
    padding:25px;
    margin-bottom:25px;
}

.cart-item img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:12px;
    background:#fff;
}

.cart-item-details{
    flex:1;
}

.cart-item h4{
    font-size:28px;
    margin-bottom:8px;
}

.cart-item-price{
    font-size:22px;
    font-weight:700;
    color:#d4af37;
}
/* Premium Cart Layout */

.cart-item{
    display:grid;
    grid-template-columns:140px 1fr 140px 120px 120px;
    align-items:center;
    gap:25px;
}

.cart-item-details{
    min-width:0;
}

.cart-item h4{
    font-size:30px;
    line-height:1.2;
    margin-bottom:10px;
}

.cart-item-quantity{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.cart-item-price{
    text-align:center;
}

.cart-item-remove{
    text-align:right;
}
/* Continue Shopping button fix */
.navbar .btn-warning,
.navbar a.btn-warning {
    background: #d4af37 !important;
    border: 1px solid #d4af37 !important;
    color: #111 !important;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    opacity: 1 !important;
}

.navbar .btn-warning:hover,
.navbar a.btn-warning:hover {
    background: #f0cf57 !important;
    border-color: #f0cf57 !important;
    color: #111 !important;
    transform: translateY(-1px);
}
/* Premium Quantity Controls */

.cart-item-quantity{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.cart-item-quantity button{
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    font-size:22px;
    font-weight:700;
    cursor:pointer;
    transition:.25s ease;
    box-shadow:0 4px 12px rgba(212,175,55,.25);
}

.cart-item-quantity button:hover{
    transform:scale(1.08);
    background:#f0cf57;
}

.cart-item-quantity span{
    min-width:28px;
    text-align:center;
    font-size:20px;
    font-weight:700;
    color:#fff;
}
/* Cart quantity controls */

.cart-item-quantity{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.cart-item-quantity .btn{
    width:38px;
    height:38px;
    border-radius:10px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
}

.cart-item-quantity span{
    min-width:28px;
    text-align:center;
    font-size:18px;
    color:#fff;
}
/* Premium Remove Button */

.cart-item .btn-danger {
    background: transparent;
    border: 1px solid #dc3545;
    color: #ff5a66;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 10px;
    transition: 0.25s ease;
}

.cart-item .btn-danger:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.25);
}
/* Free-delivery progress bar */

.shipping-progress {
    padding: 15px;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 13px;
}

.shipping-progress p {
    color: #fff;
}

.shipping-progress strong {
    color: #d4af37;
}

.shipping-progress-track {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 50px;
    overflow: hidden;
}

.shipping-progress-fill {
    width: 40%;
    height: 100%;
    background: #d4af37;
    border-radius: 50px;
}
.shop-filter {
    padding-top: 130px;
    padding-bottom: 30px;
}

.shop-filter .container {
    position: relative;
    z-index: 1;
}

.shop-filter input,
.shop-filter select {
    display: block;
    width: 100%;
}
/* =========================================
   FINAL SHOP FILTER DESIGN
========================================= */

.shop-filter {
    background: #0d0d0d !important;
    padding: 45px 0 30px !important;
}

.shop-filter .container {
    position: relative;
    z-index: 2;
}

.shop-filter .row {
    display: grid !important;
    grid-template-columns: minmax(260px, 1fr) 240px auto;
    gap: 18px;
    align-items: center;
}

.shop-filter .col-lg-5,
.shop-filter .col-lg-3,
.shop-filter .col-lg-4 {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#product-search,
#category-filter {
    width: 100% !important;
    height: 50px !important;
    padding: 0 16px !important;
    background: #181818 !important;
    color: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.45) !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    box-shadow: none !important;
}

#product-search::placeholder {
    color: #888 !important;
}

#category-filter option {
    background: #181818 !important;
    color: #ffffff !important;
}

#product-search:focus,
#category-filter:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12) !important;
    outline: none !important;
}

#product-count {
    margin: 0 !important;
    color: #d4af37 !important;
    font-weight: 700 !important;
    text-align: right !important;
    white-space: nowrap;
}

.shop-products {
    padding-top: 35px !important;
}

/* Tablet and mobile */
@media (max-width: 991px) {
    .shop-filter .row {
        grid-template-columns: 1fr 1fr !important;
    }

    #product-count {
        grid-column: 1 / -1;
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .shop-filter {
        padding: 30px 0 22px !important;
    }

    .shop-filter .row {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    #product-count {
        grid-column: auto;
        text-align: center !important;
    }
}
.shop-filter .col-lg-4 {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

#product-count {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
}
/* =========================================
   PREMIUM SHOP PRODUCT CARD EFFECTS
========================================= */

.shop-products .product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.shop-products .product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.65);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.shop-products .product-card-image {
    overflow: hidden;
    border-radius: 12px;
}

.shop-products .product-card-image img {
    width: 100%;
    transition: transform 0.4s ease;
}

.shop-products .product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.shop-products .product-card h5 {
    transition: color 0.3s ease;
}

.shop-products .product-card:hover h5 {
    color: #d4af37;
}

.shop-products .product-card .btn {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.shop-products .product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.22);
}
/* Product Badge */
.shop-products .product-card{
    position: relative;
}

.product-badge{
    position:absolute;
    top:15px;
    left:15px;
    z-index:5;
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    color:#111;
    padding:6px 12px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    box-shadow:0 6px 15px rgba(0,0,0,.25);
}
/* Product rating */
.product-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 6px 0 4px;
    font-size: 13px;
}

.product-rating .stars {
    color: #d4af37;
    letter-spacing: 1px;
}

.product-rating .rating-text {
    color: #aaa;
    font-size: 12px;
}
.product-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:linear-gradient(135deg,#ffcc33,#d4af37);
    color:#111;
    font-size:11px;
    font-weight:700;
    padding:5px 12px;
    border-radius:30px;
    letter-spacing:.5px;
    text-transform:uppercase;
    box-shadow:0 6px 18px rgba(212,175,55,.35);
    z-index:5;
}
/* =========================================
   PREMIUM QUICK VIEW MODAL
========================================= */

#quickViewModal .modal-dialog {
    max-width: 1400px !important;
    width: 95vw;
}
#quickViewModal .modal-content {
    background: linear-gradient(180deg, #191919, #101010);
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65);
}

#quickViewModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 22px;
}

#quickViewModal .modal-title {
    color: #d4af37;
    font-size: 22px;
    font-weight: 700;
}

#quickViewModal .btn-close {
    filter: invert(1);
    opacity: 0.85;
}

#quickViewModal .modal-body {
    padding: 28px;
}

#quickViewModal #quick-image {
width: 100%;
max-height: 520px;
min-height: 420px;
object-fit: contain;
background: #ffffff;
border-radius: 16px;
padding: 10px;
transition: transform .4s ease;
}
#quickViewModal #quick-image:hover {
    transform: scale(1.02);
}
#quickViewModal #quick-name {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: .5px;
}
#quickViewModal #quick-price {
    color: #d4af37;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 16px;
}

#quickViewModal .quick-rating {
    color: #d4af37;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

#quickViewModal #quick-qty {
    width: 75px;
    height: 46px;
    background: #111;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 10px;
    text-align: center;
}

#quickViewModal #quick-cart-btn,
#quickViewModal #quick-buy-btn {
    min-height: 48px;
    border-radius: 50px;
    font-weight: 700;
}

#quickViewModal #quick-cart-btn {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #111;
    border: none;
}

#quickViewModal #quick-buy-btn {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

#quickViewModal #quick-cart-btn:hover,
#quickViewModal #quick-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(212, 175, 55, 0.22);
}

#quickViewModal #quick-thumbnails img {
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 3px;
    background: #fff;
}

#quickViewModal #quick-thumbnails img:hover {
    border-color: #d4af37;
}

@media (max-width: 767px) {
    #quickViewModal .modal-body {
        padding: 18px;
    }

    #quickViewModal #quick-name {
        font-size: 22px;
        margin-top: 18px;
    }
}
/* Final Quick View title fix */
#quickViewModal #quick-name {
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
/* Final Quick View information box fix */
#quickViewModal .quick-info,
#quickViewModal .delivery-info,
#quickViewModal .product-benefits,
#quickViewModal .quick-features {
    color: #dddddd !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
}

#quickViewModal .quick-info *,
#quickViewModal .delivery-info *,
#quickViewModal .product-benefits *,
#quickViewModal .quick-features * {
    color: #dddddd !important;
    opacity: 1 !important;
}
/* Quick View delivery information */
#quickViewModal .quick-delivery-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

#quickViewModal .quick-delivery-box p {
    color: #dddddd !important;
    opacity: 1 !important;
    margin-bottom: 8px;
}

#quickViewModal .quick-delivery-box p:last-child {
    margin-bottom: 0;
}
/* Quick View thumbnails */
#quickViewModal #quick-thumbnails {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

#quickViewModal .quick-thumbnail-btn {
    width: 90px;
    height: 90px;
    padding: 6px;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
}

#quickViewModal .quick-thumbnail-btn img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
}

#quickViewModal .quick-thumbnail-btn.active {
    border-color: #d4af37;
    transform: scale(1.08);
}
#quickViewModal .gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.75);
    color:#fff;
    cursor:pointer;
    z-index:20;
}

#quickViewModal .gallery-prev{
    left:15px;
}

#quickViewModal .gallery-next{
    right:15px;
}

#quickViewModal .col-lg-7{
    position:relative;
}
/* =========================================
   CUSTOMER REVIEWS
========================================= */

#customer-reviews {
    padding-top: 40px;
    padding-bottom: 40px;
}

#customer-reviews h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 35px !important;
}

.review-card {
    background: linear-gradient(145deg, #1b1b1b, #111111);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.review-card strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.review-card .text-warning {
    color: #d4af37 !important;
    letter-spacing: 2px;
}

.review-card p {
    margin-top: 15px;
    color: #d6d6d6 !important;
    line-height: 1.7;
}
/* =========================================
   PRODUCT DETAILS PAGE
========================================= */

.product-details-section{
    padding:80px 0;
}

.product-main-image{
    background:#181818;
    border:1px solid rgba(212,175,55,.35);
    border-radius:20px;
    padding:30px;
    margin-bottom:20px;
    text-align:center;
}

.product-main-image img{
    width:100%;
    max-width:450px;
    object-fit:contain;
}

.product-thumbnails{
    display:flex;
    gap:15px;
}

.product-thumbnail{
    width:90px;
    height:90px;
    border:2px solid #333;
    border-radius:14px;
    background:#1b1b1b;
    cursor:pointer;
    overflow:hidden;
}

.product-thumbnail img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-thumbnail.active{
    border-color:#d4af37;
}
/* =========================================
   PRODUCT DETAILS INFORMATION
========================================= */

.product-details-content {
    padding: 10px 0;
}

.product-details-category {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-details-content h1 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.product-details-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.product-details-rating .stars {
    color: #d4af37;
    letter-spacing: 2px;
}

.product-details-rating a {
    color: #bdbdbd;
    text-decoration: none;
}

.product-details-rating a:hover {
    color: #d4af37;
}

.product-details-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.current-price {
    color: #d4af37;
    font-size: 2rem;
    font-weight: 800;
}

.old-price {
    color: #888888;
    text-decoration: line-through;
}

.saving-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-details-description {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.product-stock-status {
    color: #72d990;
    font-weight: 600;
    margin-bottom: 25px;
}

.product-stock-status i {
    margin-right: 7px;
}

.product-option-group {
    margin-bottom: 25px;
}

.product-option-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-option-group .form-select {
    background-color: #181818;
    color: #ffffff;
    border: 1px solid #444444;
    border-radius: 12px;
    padding: 13px 15px;
}

.product-option-group .form-select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
/* Prevent fixed header from covering product content */
.product-details-page {
    padding-top: 110px;
}

.product-details-section {
    padding-top: 50px;
    padding-bottom: 80px;
}

.product-details-content {
    position: relative;
    z-index: 1;
}

/* =========================================
   PRODUCT PURCHASE BUTTONS
========================================= */

.product-purchase-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.quantity-selector {
    display: flex;
    height: 52px;
    border: 1px solid rgba(212, 175, 55, 0.65);
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.quantity-selector button {
    width: 44px;
    border: none;
    background: #151515;
    color: #d4af37;
    font-size: 1.2rem;
    cursor: pointer;
}

.quantity-selector button:hover {
    background: #252525;
}

.quantity-selector input {
    width: 52px;
    border: none;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    background: #111111;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    outline: none;
}

.product-add-cart-btn {
    flex: 1;
    min-height: 52px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4af37, #f0d56c);
    color: #111111;
    font-weight: 800;
    padding: 12px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-add-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.product-buy-now-btn,
.product-wishlist-btn {
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    cursor: pointer;
}

.product-buy-now-btn {
    background: #ffffff;
    color: #111111;
    border: 1px solid #ffffff;
}

.product-buy-now-btn:hover {
    background: #e8e8e8;
}

.product-wishlist-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #555555;
}

.product-wishlist-btn:hover {
    color: #d4af37;
    border-color: #d4af37;
}

.product-wishlist-btn i,
.product-add-cart-btn i {
    margin-right: 8px;
}
/* =========================================
   PRODUCT IMAGE LIGHTBOX
========================================= */

.product-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.92);
}

.product-image-lightbox.active {
    display: flex;
}

.product-image-lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.product-lightbox-close {
    position: fixed;
    top: 22px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.85);
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.product-lightbox-close:hover {
    color: #d4af37;
    border-color: #d4af37;
}
/* AMAZON STYLE IMAGE ZOOM */

#product-main-image-wrapper {
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 16px;
}

#product-main-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-out;
    transform-origin: center center;
    will-change: transform;
    cursor: zoom-in;
}
#product-main-image-wrapper:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}
/* Amazon Style Zoom Panel */
.product-gallery{
    position: relative;
}

.product-zoom-panel{
    position: absolute;
    left: calc(100% + 260px);
    top: 0;
    width: 320px;
    height: 320px;
    border: 2px solid #d4af37;
    border-radius: 14px;
    background: #111;
    background-repeat: no-repeat;
    background-size: 250%;
    display: none !important;
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
/* Smooth product image switching */
#product-main-image {
    opacity: 1;
    transition:
        opacity 0.18s ease,
        transform 0.3s ease-out;
}

#product-main-image.image-changing {
    opacity: 0;
}
/* Admin page spacing fix */
.admin-dashboard {
    padding-top: 30px;
    padding-bottom: 40px;
}

.admin-stats {
    margin-bottom: 30px;
}

.add-product-section {
    margin-top: 25px;
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.add-product-section textarea {
    min-height: 90px;
}

.admin-products-section {
    margin-top: 25px;
}

#admin-products {
    margin-top: 25px;
}
/* FORCE ADMIN PRODUCTS TO SHOW */
.admin-products-section,
#admin-products {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    margin-top: 20px !important;
    padding-top: 0 !important;
}

#admin-products .card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.navbar-nav {
    display: flex !important;
    align-items: center;
    gap: 18px;
}

.navbar-nav .nav-item {
    display: block !important;
}

.navbar-nav .nav-link {
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap;
}
body {
    min-height: 100vh;
}

body > main.container {
    padding-top: 90px !important;
}
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.admin-main {
    width: calc(100% - 240px);
    margin-left: 240px;
    padding-left: 30px;
    padding-right: 30px;
    min-height: 100vh;
    box-sizing: border-box;
}
#admin-products {
    width: 100%;
}

#admin-products .card {
    margin-left: 0;
    width: 100%;
}

@media (max-width: 991px) {
    .admin-sidebar {
        position: relative;
        width: 100%;
        height: auto;
    }

    .admin-main {
        width: 100%;
        margin-left: 0;
        padding: 20px !important;
    }
}
/* Admin product search row */
#products + .row {
    width: calc(100% - 170px);
    margin-left: 170px;
    margin-right: 0;
    padding-right: 20px;
}

/* Keep product cards tidy */
#admin-products .card {
    overflow: hidden;
}
.admin-product-row {
    display: grid;
    grid-template-columns: 170px minmax(220px, 2fr) 1fr 1fr auto;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.admin-product-image {
    width: 170px;
    height: 180px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.admin-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.admin-product-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-product-name small {
    color: #cccccc;
}

.admin-product-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .admin-product-row {
        grid-template-columns: 120px 1fr;
    }

    .admin-product-image {
        width: 120px;
        height: 140px;
        grid-row: span 4;
    }

    .admin-product-actions {
        justify-content: flex-start;
    }
}
/* FINAL ADMIN PRODUCT LAYOUT FIX */

#admin-products {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

#admin-products .card {
    width: 100% !important;
    margin: 0 0 16px 0 !important;
    padding: 18px !important;
    overflow: visible !important;
}

#admin-products .admin-product-row {
    display: grid !important;
    grid-template-columns: 170px minmax(220px, 2fr) 1fr 1fr auto !important;
    align-items: center !important;
    gap: 25px !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    transform: none !important;
    position: relative !important;
}

#admin-products .admin-product-image {
    display: block !important;
    width: 170px !important;
    height: 180px !important;
    min-width: 170px !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    position: relative !important;
}

#admin-products .admin-product-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#admin-products .admin-product-name {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
}

#admin-products .admin-product-actions {
    display: flex !important;
    gap: 10px !important;
    justify-content: flex-end !important;
}
/* Move product rows out from behind sidebar */
#admin-products .admin-product-row {
    margin-left: 220px !important;
    width: calc(100% - 220px) !important;
}
/* Make admin product search text visible */
#productSearch {
    background-color: #ffffff !important;
    color: #111111 !important;
    font-size: 16px !important;
    font-weight: 500;
}

#productSearch::placeholder {
    color: #666666 !important;
    opacity: 1 !important;
}
/* Align Products heading, search bar and cards */
#products {
    margin-left: 220px !important;
    width: calc(100% - 220px) !important;
}

#products + .row {
    width: calc(100% - 220px) !important;
    margin-left: 220px !important;
    margin-right: 0 !important;
    padding-right: 20px;
}
/* =========================
   PREMIUM ABOUT PAGE
========================= */

.about-premium {
    padding-top: 120px !important;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 35%),
        #0b0b0b;
    color: #ffffff;
    min-height: 75vh;
}

.about-premium h1,
.about-premium h2,
.about-premium h5 {
    color: #ffffff;
}

.about-premium p,
.about-premium small {
    color: #c9c9c9;
    line-height: 1.8;
}

.about-premium .text-warning {
    color: #d4af37 !important;
}

.about-premium .btn-warning {
    background: #d4af37;
    border-color: #d4af37;
    color: #111111;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.25s ease;
}

.about-premium .btn-warning:hover {
    transform: translateY(-2px);
    background: #e5c34a;
    border-color: #e5c34a;
}

.about-feature {
    height: 100%;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.055),
        rgba(255,255,255,0.015)
    );
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    transition: 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.about-feature i {
    color: #d4af37;
}

@media (max-width: 767px) {
    .about-premium {
        text-align: center;
    }

    .about-feature {
        padding: 20px 12px !important;
    }

    .about-feature h5 {
        font-size: 15px;
    }

    .about-feature small {
        font-size: 12px;
    }
}
/* =========================
   WHY CHOOSE US
========================= */

.why-choose-us {
    background: #0b0b0b;
    padding-top: 80px !important;
    padding-bottom: 90px !important;
}

.why-choose-us h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
}

.why-choose-us .text-secondary {
    color: #b8b8b8 !important;
}

.why-card {
    background: linear-gradient(145deg, #151515, #0d0d0d);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
}

.why-card h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.why-card p {
    color: #b8b8b8;
    margin-bottom: 0;
    line-height: 1.7;
}

/* =========================
   PREMIUM FOOTER
========================= */

.fh-footer {
    background: #080808;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    padding: 60px 0 25px;
    color: #b8b8b8;
}

.fh-footer h5 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 18px;
}

.fh-footer p {
    color: #b8b8b8;
    line-height: 1.7;
}

.fh-footer a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.fh-footer a:hover {
    color: #d4af37;
    padding-left: 4px;
}

.fh-footer hr {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 35px 0 20px;
}

.footer-bottom {
    color: #777777;
    font-size: 14px;
}

/* =========================================
   FREQUENTLY BOUGHT TOGETHER
========================================= */

.frequently-bought {
    padding: 60px 0;
}

.frequently-bought h2 {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 30px;
}

.frequently-bought-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background: linear-gradient(145deg, #151922, #10131a);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.frequently-bought-box img {
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.frequently-bought-box h5 {
    color: #ffffff;
    font-weight: 600;
}

.frequently-bought-box strong {
    color: #d4af37;
}

.frequently-bought-box .btn-warning {
    background: #d4af37;
    border: none;
    color: #111111;
    font-weight: 700;
    border-radius: 30px;
    padding: 12px 35px;
    transition: 0.3s ease;
}

.frequently-bought-box .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.30);
}

@media (max-width: 768px) {
    .frequently-bought-box {
        padding: 25px 15px;
    }

    .frequently-bought-box img {
        width: 120px !important;
        height: 120px !important;
    }
}

/* Best Value Bundle Badge */
.bundle-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================
   TOAST MESSAGE
========================= */

.fh-toast {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99999;

    background: #111;
    color: #fff;

    border: 1px solid #d4af37;
    border-radius: 10px;

    padding: 14px 20px;

    font-size: 15px;
    font-weight: 600;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d4af37;
    color: #111;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    z-index: 5;
}

.product-card {
    position: relative;
}