:root {
    --gold: #b8860b;
    --dark: #111111;
    --light: #ffffff;
    --soft: #f7f3ea;
    --border: #e8e2d4;
}

body {
    margin: 0;
    background: #fff;
    color: #111;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
}

.top-offer-bar {
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

.site-logo {
    min-width: 210px;
    color: var(--dark);
    font-weight: 900;
    line-height: 1;
}

.site-logo img {
    max-width: 180px;
    max-height: 65px;
}

.site-logo span {
    display: block;
    font-size: 24px;
    color: var(--gold);
}

.site-logo small {
    display: block;
    color: #000;
    letter-spacing: 2px;
}

.header-search {
    flex: 1;
    display: flex;
    position: relative;
}

.header-search input {
    width: 100%;
    border: 2px solid var(--gold);
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
    outline: none;
}

.header-search button {
    background: var(--gold);
    border: 2px solid var(--gold);
    color: #fff;
    padding: 0 25px;
    border-radius: 0 8px 8px 0;
    font-weight: bold;
}

.search-suggestions {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 90px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-radius: 8px;
    z-index: 1000;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.header-actions a {
    color: #111;
    font-weight: 600;
}

.header-actions span {
    background: var(--gold);
    color: #fff;
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 12px;
}

.main-nav {
    background: var(--gold);
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    color: #fff;
    padding: 14px 18px;
    font-weight: 700;
}

.main-nav a:hover {
    background: #000;
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: 0;
    padding: 13px;
    font-weight: bold;
}

.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 850px;
    background: #fff;
    color: #111;
    padding: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    border-radius: 0 0 12px 12px;
    z-index: 999;
}

.mega-parent:hover .mega-menu {
    display: block;
}

.mega-menu h6 a {
    color: var(--gold);
    padding: 0;
}

.mega-menu a {
    color: #222;
    padding: 5px 0;
    font-weight: 500;
}

.hero-slider img {
    height: 520px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.45);
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
}

.carousel-caption h1 {
    color: #fff;
    font-weight: 900;
    font-size: 48px;
}

.hero-btn {
    background: var(--gold);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
}

.hero-fallback {
    background: linear-gradient(135deg, #111, #2b2100);
    color: #fff;
    text-align: center;
    padding: 120px 0;
}

.hero-fallback h1 {
    font-size: 52px;
    color: var(--gold);
    font-weight: 900;
}

.section-block {
    padding: 55px 0;
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 25px;
}

.section-title span {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.section-title h2 {
    margin: 0;
    font-weight: 900;
}

.section-title a {
    color: var(--gold);
    font-weight: 700;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 40px 0 0;
}

.home-banner {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    display: block;
    min-height: 180px;
    background: #eee;
}

.home-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .4s;
}

.home-banner:hover img {
    transform: scale(1.05);
}

.home-banner span {
    position: absolute;
    left: 22px;
    bottom: 20px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: bold;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
}

.category-card {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    color: #111;
    transition: .3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.category-card img {
    width: 100%;
    height: 90px;
    object-fit: contain;
}

.category-placeholder {
    font-size: 46px;
}

.category-card h6 {
    margin-top: 10px;
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.product-image {
    display: block;
    background: #f7f7f7;
}

.product-image img,
.product-img-placeholder {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.product-info {
    padding: 16px;
}

.product-info h6 {
    min-height: 45px;
    margin-bottom: 8px;
}

.product-info h6 a {
    color: #111;
    font-weight: 800;
}

.product-meta {
    color: #777;
    font-size: 13px;
    min-height: 22px;
}

.price {
    margin: 10px 0;
}

.sale-price {
    color: var(--gold);
    font-weight: 900;
    font-size: 18px;
}

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

.product-buttons {
    display: flex;
    gap: 10px;
}

.btn-view,
.btn-cart {
    flex: 1;
    text-align: center;
    border-radius: 8px;
    padding: 9px 10px;
    border: none;
    font-weight: bold;
}

.btn-view {
    background: #111;
    color: #fff;
}

.btn-cart {
    background: var(--gold);
    color: #fff;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.offer-card {
    background: var(--soft);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.offer-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.offer-card div {
    padding: 18px;
}

.offer-card strong {
    color: var(--gold);
}

.why-choose {
    background: #111;
    color: #fff;
    border-radius: 24px;
    padding: 45px;
    margin: 50px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-grid div {
    background: rgba(255,255,255,0.08);
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.why-grid strong {
    color: var(--gold);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    background: #fff;
}

.stars {
    color: var(--gold);
    font-size: 20px;
}

.review-card small {
    display: block;
    color: #777;
}

.newsletter-box {
    background: linear-gradient(135deg, #111, #2b2100);
    color: #fff;
    padding: 45px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 55px 0;
}

.newsletter-box h2 {
    color: var(--gold);
    font-weight: 900;
}

.newsletter-box form {
    display: flex;
    gap: 0;
    min-width: 420px;
}

.newsletter-box input {
    flex: 1;
    padding: 13px;
    border: none;
    border-radius: 8px 0 0 8px;
}

.newsletter-box button {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 0 8px 8px 0;
    font-weight: bold;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.instagram-grid img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
}

.site-footer {
    background: #111;
    color: #ddd;
    padding: 55px 0 20px;
    margin-top: 50px;
}

.site-footer h5,
.site-footer h6 {
    color: var(--gold);
    font-weight: 800;
}

.site-footer a {
    display: block;
    color: #ddd;
    margin-bottom: 8px;
}

.whatsapp-btn {
    display: inline-block !important;
    background: #25D366;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
}

.footer-social a {
    display: inline-block;
    margin-right: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 25px;
    padding-top: 18px;
    text-align: center;
}

@media(max-width: 991px) {
    .header-row {
        flex-wrap: wrap;
    }

    .site-logo {
        min-width: auto;
    }

    .header-search {
        order: 3;
        width: 100%;
        flex: unset;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
    }

    .main-nav ul.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    .mega-parent:hover .mega-menu {
        display: none;
    }

    .mega-parent.open .mega-menu {
        display: block;
    }

    .hero-slider img {
        height: 360px;
    }

    .carousel-caption h1 {
        font-size: 30px;
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-grid,
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-box {
        display: block;
    }

    .newsletter-box form {
        min-width: auto;
        margin-top: 20px;
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width: 575px) {
    .top-offer-bar {
        text-align: center;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .hero-slider img {
        height: 300px;
    }

    .carousel-caption {
        padding: 18px;
    }

    .carousel-caption h1 {
        font-size: 24px;
    }

    .banner-grid,
    .product-grid,
    .offer-grid,
    .review-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-box form {
        display: block;
    }

    .newsletter-box input,
    .newsletter-box button {
        width: 100%;
        border-radius: 8px;
    }

    .newsletter-box button {
        padding: 12px;
        margin-top: 10px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.cart-page {
    padding-top: 45px;
    padding-bottom: 45px;
}

.cart-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.cart-heading span {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.cart-heading h1 {
    font-weight: 900;
    margin: 0;
}

.continue-btn {
    background: #111;
    color: #fff;
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: bold;
}

.continue-btn:hover {
    color: #fff;
    background: var(--gold);
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 145px 130px;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.cart-img img,
.cart-no-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #f7f7f7;
}

.cart-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.cart-info h5 {
    margin: 0 0 8px;
    font-weight: 900;
}

.cart-info h5 a {
    color: #111;
}

.cart-variant {
    margin: 0 0 4px;
    color: #777;
    font-size: 13px;
}

.cart-price {
    color: var(--gold);
    font-weight: 900;
    font-size: 18px;
    margin-top: 8px;
}

.cart-qty {
    display: flex;
    align-items: center;
}

.cart-qty button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    background: #111;
    color: #fff;
    font-weight: bold;
}

.cart-qty input {
    width: 60px;
    height: 38px;
    border: 1px solid var(--border);
    text-align: center;
    outline: none;
}

.cart-total {
    text-align: right;
}

.cart-total strong {
    display: block;
    font-size: 18px;
    color: #111;
    margin-bottom: 12px;
}

.remove-btn {
    background: #dc3545;
    border: none;
    color: #fff;
    padding: 7px 12px;
    border-radius: 7px;
    font-weight: bold;
}

.clear-cart-btn {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
}

.cart-summary {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    background: var(--soft);
    position: sticky;
    top: 130px;
}

.cart-summary h4 {
    font-weight: 900;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 16px;
}

.summary-row.grand {
    font-size: 21px;
    color: var(--gold);
    font-weight: 900;
}

.free-shipping-note {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

.free-shipping-note.success {
    background: #d1e7dd;
    color: #0f5132;
}

.checkout-btn,
.shopping-btn {
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 13px;
    font-weight: bold;
    margin-top: 12px;
}

.checkout-btn {
    background: var(--gold);
    color: #fff;
}

.checkout-btn:hover {
    color: #fff;
    background: #111;
}

.shopping-btn {
    background: #111;
    color: #fff;
}

.shopping-btn:hover {
    color: #fff;
    background: var(--gold);
}

.secure-note {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin-top: 15px;
}

.empty-cart {
    text-align: center;
    padding: 90px 20px;
    background: var(--soft);
    border-radius: 24px;
    border: 1px solid var(--border);
}

.empty-icon {
    font-size: 70px;
    margin-bottom: 15px;
}

.empty-cart h2 {
    font-weight: 900;
}

.empty-cart p {
    color: #777;
    margin-bottom: 25px;
}

@media(max-width: 991px) {
    .cart-item {
        grid-template-columns: 100px 1fr;
    }

    .cart-img img,
    .cart-no-img {
        width: 100px;
        height: 100px;
    }

    .cart-qty,
    .cart-total {
        grid-column: span 2;
    }

    .cart-total {
        text-align: left;
    }

    .cart-summary {
        position: static;
    }
}

@media(max-width: 575px) {
    .cart-heading {
        display: block;
    }

    .continue-btn {
        display: inline-block;
        margin-top: 15px;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart-img img,
    .cart-no-img {
        width: 100%;
        height: 220px;
    }

    .cart-qty,
    .cart-total {
        grid-column: auto;
        justify-content: center;
        text-align: center;
    }
}



.checkout-page {
    padding-top: 45px;
    padding-bottom: 45px;
}

.checkout-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.checkout-heading span {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.checkout-heading h1 {
    font-weight: 900;
    margin: 0;
}

.checkout-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.checkout-card .form-control {
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 9px;
}

.payment-option {
    display: flex;
    gap: 12px;
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    background: #fff;
}

.payment-option input {
    margin-top: 5px;
}

.payment-option strong {
    display: block;
}

.payment-option small {
    display: block;
    color: #777;
}

.place-order-btn {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 18px;
}

.place-order-btn:hover {
    background: #111;
}

.checkout-summary {
    border: 1px solid var(--border);
    background: var(--soft);
    border-radius: 20px;
    padding: 24px;
    position: sticky;
    top: 130px;
}

.checkout-summary h4 {
    font-weight: 900;
    margin-bottom: 20px;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    align-items: center;
}

.checkout-item-img img,
.checkout-item-img div {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--border);
    background: #fff;
}

.checkout-item-img div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    color: #777;
}

.checkout-item-info strong {
    display: block;
    font-size: 14px;
}

.checkout-item-info small {
    display: block;
    color: #777;
    font-size: 12px;
}

.checkout-item-total {
    font-weight: 900;
    color: var(--gold);
    font-size: 14px;
}

.coupon-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.coupon-input-row {
    display: flex;
}

.coupon-input-row input {
    border-radius: 8px 0 0 8px;
}

.coupon-input-row button {
    background: #111;
    color: #fff;
    border: none;
    padding: 0 16px;
    border-radius: 0 8px 8px 0;
    font-weight: bold;
}

.applied-coupon {
    color: #0f5132;
    font-size: 14px;
}

.remove-coupon-btn {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 7px 12px;
    border-radius: 7px;
    font-weight: bold;
}

.order-success-page {
    padding: 70px 0;
}

.success-box {
    max-width: 760px;
    margin: auto;
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 45px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #198754;
    color: #fff;
    font-size: 50px;
    line-height: 80px;
    font-weight: 900;
}

.success-box h1 {
    font-weight: 900;
    color: #111;
}

.success-order-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.success-order-card div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
}

.success-order-card span {
    display: block;
    color: #777;
    font-size: 13px;
}

.success-order-card strong {
    display: block;
    color: var(--gold);
    font-size: 18px;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.success-actions a {
    min-width: 180px;
}

@media(max-width: 991px) {
    .checkout-summary {
        position: static;
    }
}

@media(max-width: 575px) {
    .checkout-heading {
        display: block;
    }

    .checkout-heading .continue-btn {
        display: inline-block;
        margin-top: 15px;
    }

    .checkout-item {
        grid-template-columns: 55px 1fr;
    }

    .checkout-item-total {
        grid-column: span 2;
        text-align: right;
    }

    .success-order-card {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-box {
        padding: 28px 18px;
    }
}

.auth-page {
    padding: 70px 0;
}

.auth-box {
    max-width: 520px;
    margin: auto;
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px;
}

.auth-title {
    text-align: center;
    margin-bottom: 25px;
}

.auth-title span,
.account-heading span {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.auth-title h1,
.account-heading h1 {
    font-weight: 900;
    margin: 0;
}

.auth-box .form-control,
.account-card .form-control {
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 9px;
}

.auth-btn {
    width: 100%;
    border: none;
    background: var(--gold);
    color: #fff;
    padding: 13px;
    border-radius: 10px;
    font-weight: 900;
}

.auth-btn:hover {
    background: #111;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
}

.auth-link a {
    color: var(--gold);
    font-weight: 800;
}

.account-page {
    padding: 45px 0;
}

.account-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.account-sidebar {
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    position: sticky;
    top: 130px;
}

.account-sidebar a {
    display: block;
    color: #fff;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 700;
}

.account-sidebar a:hover {
    background: var(--gold);
    color: #fff;
}

.account-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.account-card h4 {
    font-weight: 900;
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.account-stats div {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
}

.account-stats span {
    display: block;
    color: #777;
    font-size: 14px;
}

.account-stats strong {
    display: block;
    color: var(--gold);
    font-size: 28px;
    font-weight: 900;
}

@media(max-width: 991px) {
    .account-sidebar {
        position: static;
    }

    .account-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 575px) {
    .auth-box {
        padding: 25px 18px;
    }

    .account-heading {
        display: block;
    }

    .account-heading .continue-btn {
        display: inline-block;
        margin-top: 15px;
    }

    .account-stats {
        grid-template-columns: 1fr;
    }
}
.product-list-page,
.product-detail-page {
    padding-top: 45px;
    padding-bottom: 45px;
}

.listing-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.listing-heading span,
.category-banner span {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.listing-heading h1,
.category-banner h1 {
    font-weight: 900;
    margin: 0;
}

.listing-count {
    color: #777;
    font-weight: 700;
}

.filter-box {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    position: sticky;
    top: 130px;
}

.filter-box h5 {
    font-weight: 900;
    margin-bottom: 18px;
}

.filter-box .form-control {
    border: 1px solid var(--border);
    padding: 11px;
    border-radius: 9px;
}

.filter-btn {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 9px;
    font-weight: 900;
}

.filter-reset {
    display: block;
    text-align: center;
    background: #111;
    color: #fff;
    padding: 11px;
    border-radius: 9px;
    font-weight: 800;
    margin-top: 10px;
}

.filter-reset:hover,
.filter-btn:hover {
    background: #111;
    color: #fff;
}

.listing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pagination-box {
    display: flex;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination-box a {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.pagination-box a.active,
.pagination-box a:hover {
    background: var(--gold);
    color: #fff;
}

.no-products {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    padding: 70px 20px;
}

.no-products h3 {
    font-weight: 900;
}

.category-banner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #111, #2b2100);
    color: #fff;
    padding: 55px;
    margin-bottom: 35px;
}

.category-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.category-banner div {
    position: relative;
    z-index: 2;
}

.category-banner h1 {
    color: #fff;
}

.subcat-link {
    display: block;
    color: #111;
    background: #fff;
    border: 1px solid var(--border);
    padding: 11px 14px;
    border-radius: 9px;
    margin-bottom: 9px;
    font-weight: 700;
}

.subcat-link.active,
.subcat-link:hover {
    background: var(--gold);
    color: #fff;
}

.breadcrumb-box {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 18px;
    margin-bottom: 28px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-box a {
    color: var(--gold);
    font-weight: 700;
}

.product-gallery {
    position: sticky;
    top: 130px;
}

.main-product-image {
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    background: #f7f7f7;
}

.main-product-image img,
.main-product-image .product-img-placeholder {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.thumb-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumb-gallery button {
    border: 1px solid var(--border);
    background: #fff;
    padding: 4px;
    border-radius: 10px;
    cursor: pointer;
}

.thumb-gallery img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 8px;
}

.product-detail-info {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
}

.product-detail-info h1 {
    font-weight: 900;
    margin-bottom: 12px;
}

.product-review-line {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.detail-price {
    margin: 20px 0;
}

.detail-price .sale-price {
    font-size: 32px;
}

.detail-price .old-price {
    font-size: 18px;
}

.short-desc {
    color: #666;
    line-height: 1.7;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.product-specs div {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
}

.purchase-box {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
}

.purchase-box .form-control {
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 9px;
}

.qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.qty-row label {
    font-weight: 900;
}

.detail-actions {
    display: flex;
    gap: 12px;
}

.detail-actions form {
    flex: 1;
}

.detail-cart-btn,
.detail-wishlist-btn {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 900;
}

.detail-cart-btn {
    background: var(--gold);
    color: #fff;
}

.detail-wishlist-btn {
    background: #111;
    color: #fff;
}

.detail-cart-btn:hover,
.detail-wishlist-btn:hover {
    opacity: 0.9;
}

.product-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 35px;
}

.product-tab-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
}

.product-tab-card h3 {
    font-weight: 900;
    margin-bottom: 18px;
}

.review-list {
    display: grid;
    gap: 15px;
}

.review-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    background: var(--soft);
}

.review-item p {
    margin: 8px 0;
}

.review-item small {
    display: block;
    color: #777;
}

.review-form .form-control {
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 9px;
}

.review-submit-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 900;
}

@media(max-width: 991px) {
    .filter-box,
    .product-gallery {
        position: static;
    }

    .listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-product-image img,
    .main-product-image .product-img-placeholder {
        height: 420px;
    }
}

@media(max-width: 575px) {
    .listing-heading {
        display: block;
    }

    .listing-grid {
        grid-template-columns: 1fr;
    }

    .category-banner {
        padding: 35px 22px;
    }

    .main-product-image img,
    .main-product-image .product-img-placeholder {
        height: 330px;
    }

    .product-specs {
        grid-template-columns: 1fr;
    }

    .detail-actions {
        flex-direction: column;
    }

    .qty-row {
        display: block;
    }

    .qty-row .cart-qty {
        margin-top: 10px;
    }
}
.btn-wishlist {
    width: 46px;
    border: none;
    background: #f3f3f3;
    color: #111;
    border-radius: 8px;
    font-weight: 900;
    font-size: 20px;
}

.btn-wishlist.active,
.btn-wishlist:hover {
    background: #dc3545;
    color: #fff;
}

.wishlist-page {
    padding-top: 45px;
    padding-bottom: 45px;
}

.wishlist-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.wishlist-heading span {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.wishlist-heading h1 {
    font-weight: 900;
    margin: 0;
}

.wishlist-toolbar {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clear-wishlist-btn {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.wishlist-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.wishlist-img img,
.wishlist-no-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #f7f7f7;
}

.wishlist-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.wishlist-info h5 {
    font-weight: 900;
    margin-bottom: 8px;
}

.wishlist-info h5 a {
    color: #111;
}

.wishlist-actions {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.wishlist-view-btn,
.wishlist-cart-btn,
.wishlist-remove-btn {
    border: none;
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
}

.wishlist-view-btn {
    background: #111;
    color: #fff;
}

.wishlist-cart-btn {
    background: var(--gold);
    color: #fff;
}

.wishlist-remove-btn {
    background: #dc3545;
    color: #fff;
}

.wishlist-view-btn:hover,
.wishlist-cart-btn:hover,
.wishlist-remove-btn:hover {
    color: #fff;
    opacity: 0.9;
}

@media(max-width: 991px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 575px) {
    .wishlist-heading {
        display: block;
    }

    .wishlist-heading .continue-btn {
        display: inline-block;
        margin-top: 15px;
    }

    .wishlist-toolbar {
        display: block;
    }

    .clear-wishlist-btn {
        margin-top: 12px;
    }

    .wishlist-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wishlist-img img,
    .wishlist-no-img {
        width: 100%;
        height: 250px;
    }

    .wishlist-actions {
        justify-content: center;
    }
}
.btn-wishlist {
    width: 46px;
    border: none;
    background: #f3f3f3;
    color: #111;
    border-radius: 8px;
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
}

.btn-wishlist.active,
.btn-wishlist:hover {
    background: #dc3545;
    color: #fff;
}

.contact-page {
    padding-top: 45px;
    padding-bottom: 45px;
}

.contact-hero {
    background: linear-gradient(135deg, #111, #2c2200);
    color: #fff;
    border-radius: 24px;
    padding: 55px;
    margin-bottom: 35px;
    text-align: center;
}

.contact-hero span {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.contact-hero h1 {
    font-weight: 900;
    margin-top: 8px;
}

.contact-hero p {
    max-width: 700px;
    margin: 12px auto 0;
    color: #ddd;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.contact-info-card h3,
.contact-form-card h3 {
    font-weight: 900;
    margin-bottom: 22px;
}

.contact-info-item {
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item strong {
    display: block;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-info-item p {
    margin: 0;
}

.contact-form-card .form-control {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
}

.contact-submit-btn {
    border: none;
    background: var(--gold);
    color: #fff;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 900;
}

.contact-submit-btn:hover {
    background: #111;
}

@media(max-width: 575px) {
    .contact-hero {
        padding: 35px 20px;
    }
}
.about-page {
    background: #fff;
}

.about-hero {
    background: linear-gradient(135deg, #111, #2d2300);
    padding: 85px 0;
    color: #fff;
}

.about-hero-inner {
    max-width: 780px;
    text-align: center;
    margin: auto;
}

.about-hero-inner span,
.section-small-title,
.about-contact-card span {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .5px;
}

.about-hero-inner h1 {
    font-size: 46px;
    font-weight: 900;
    margin: 12px 0;
}

.about-hero-inner p {
    color: #ddd;
    font-size: 17px;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.about-primary-btn,
.about-outline-btn,
.about-whatsapp-btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 900;
    text-decoration: none;
}

.about-primary-btn {
    background: var(--gold);
    color: #fff;
}

.about-primary-btn:hover {
    background: #fff;
    color: #111;
}

.about-outline-btn {
    border: 1px solid #fff;
    color: #fff;
}

.about-outline-btn:hover {
    background: #fff;
    color: #111;
}

.about-intro-section {
    padding-top: 65px;
    padding-bottom: 45px;
}

.about-image-card {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 28px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-card img {
    max-width: 80%;
    max-height: 280px;
    object-fit: contain;
}

.about-logo-placeholder {
    text-align: center;
    background: #111;
    color: #fff;
    padding: 55px;
    border-radius: 22px;
}

.about-logo-placeholder strong {
    display: block;
    color: var(--gold);
    font-size: 34px;
    font-weight: 900;
}

.about-logo-placeholder span {
    display: block;
    font-size: 20px;
    letter-spacing: 2px;
}

.about-content-card {
    padding: 20px;
}

.about-content-card h2,
.about-contact-card h2 {
    font-weight: 900;
    margin: 8px 0 18px;
}

.about-content-card p {
    color: #555;
    line-height: 1.8;
}

.about-cert-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.about-cert-box div {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
}

.about-cert-box strong {
    display: block;
    font-weight: 900;
    color: #111;
}

.about-cert-box small {
    color: #777;
}

.about-stats-section {
    background: var(--soft);
    padding: 45px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.about-stat-card strong {
    display: block;
    color: var(--gold);
    font-size: 34px;
    font-weight: 900;
}

.about-stat-card span {
    color: #666;
    font-weight: 700;
}

.about-why-section {
    padding-top: 65px;
    padding-bottom: 45px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    margin: 0 auto 16px;
}

.why-card h4 {
    font-weight: 900;
}

.why-card p {
    color: #666;
    margin: 0;
}

.about-process-section {
    background: #111;
    color: #fff;
    padding: 65px 0;
}

.about-process-section .section-title h2 {
    color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 26px;
}

.process-card span {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 7px 12px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 14px;
}

.process-card h4 {
    font-weight: 900;
}

.process-card p {
    color: #ddd;
    margin: 0;
}

.about-contact-section {
    padding: 65px 0;
}

.about-contact-card {
    background: linear-gradient(135deg, #fff8df, #fff);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
}

.about-contact-card p {
    margin-bottom: 8px;
    color: #555;
}

.about-contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.about-whatsapp-btn:hover {
    background: #111;
    color: #fff;
}

@media(max-width: 991px) {
    .about-hero-inner h1 {
        font-size: 36px;
    }

    .about-stats-grid,
    .why-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-contact-card {
        display: block;
    }

    .about-contact-actions {
        margin-top: 20px;
    }
}

@media(max-width: 575px) {
    .about-hero {
        padding: 55px 0;
    }

    .about-hero-inner h1 {
        font-size: 30px;
    }

    .about-cert-box,
    .about-stats-grid,
    .why-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .about-image-card {
        min-height: 280px;
    }

    .about-logo-placeholder {
        padding: 35px 25px;
    }

    .about-contact-card {
        padding: 24px;
    }
}
/* =========================================================
   FINAL OVERRIDE: Premium Product Card + Product View
========================================================= */

.product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

.listing-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

.product-card {
    position: relative !important;
    background: #fff !important;
    border: 1px solid #eee3c7 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07) !important;
    transition: all .35s ease !important;
}

.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.14) !important;
    border-color: var(--gold) !important;
}

.product-image {
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    background: #faf7ef !important;
    height: 280px !important;
}

.product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform .55s ease !important;
}

.product-card:hover .product-image img {
    transform: scale(1.13) !important;
}

.product-img-placeholder {
    width: 100% !important;
    height: 280px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #faf7ef !important;
    color: #999 !important;
    font-weight: 800 !important;
}

.product-card-badge {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    z-index: 5 !important;
    background: var(--gold) !important;
    color: #fff !important;
    padding: 6px 12px !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.16) !important;
}

.product-card-wish,
.btn-wishlist {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 6 !important;
    width: 42px !important;
    height: 42px !important;
    border: none !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.16) !important;
    transition: all .25s ease !important;
}

.product-card-wish:hover,
.product-card-wish.active,
.btn-wishlist:hover,
.btn-wishlist.active {
    background: #dc3545 !important;
    color: #fff !important;
}

.product-info {
    padding: 18px !important;
    text-align: center !important;
}

.product-info h6 {
    min-height: 44px !important;
    margin-bottom: 8px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}

.product-info h6 a {
    color: #111 !important;
    text-decoration: none !important;
}

.product-info h6 a:hover {
    color: var(--gold) !important;
}

.product-meta {
    min-height: 22px !important;
    font-size: 13px !important;
    color: #777 !important;
    margin-bottom: 8px !important;
}

.price {
    margin: 10px 0 16px !important;
}

.sale-price {
    color: var(--gold) !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

.old-price {
    color: #999 !important;
    font-size: 14px !important;
    text-decoration: line-through !important;
    margin-left: 6px !important;
}

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

.btn-view,
.btn-cart {
    border: none !important;
    padding: 11px 10px !important;
    border-radius: 10px !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all .25s ease !important;
}

.btn-view {
    background: #111 !important;
    color: #fff !important;
}

.btn-cart {
    background: var(--gold) !important;
    color: #fff !important;
}

.btn-view:hover,
.btn-cart:hover {
    background: #000 !important;
    color: #fff !important;
}


/* =========================================================
   FINAL OVERRIDE: Product View Page
========================================================= */

.product-detail-page {
    padding-top: 35px !important;
    padding-bottom: 60px !important;
}

.product-detail-page > .row {
    align-items: flex-start !important;
}

.breadcrumb-box {
    background: #fff8e4 !important;
    border: 1px solid #f0dfb5 !important;
    border-radius: 14px !important;
    padding: 13px 18px !important;
    margin-bottom: 28px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    font-weight: 700 !important;
}

.breadcrumb-box a {
    color: var(--gold) !important;
    text-decoration: none !important;
}

.breadcrumb-box strong {
    color: #111 !important;
}

.product-gallery {
    position: sticky !important;
    top: 125px !important;
    width: 100% !important;
    max-width: 100% !important;
}

.main-product-image {
    width: 100% !important;
    background: #faf7ef !important;
    border: 1px solid #eee3c7 !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 14px 45px rgba(0,0,0,0.08) !important;
}

.main-product-image img {
    width: 100% !important;
    height: 560px !important;
    object-fit: contain !important;
    display: block !important;
    padding: 18px !important;
    transition: transform .55s ease !important;
}

.main-product-image:hover img {
    transform: scale(1.08) !important;
}

.main-product-image .product-img-placeholder {
    height: 560px !important;
    border-radius: 28px !important;
}

.thumb-gallery {
    display: flex !important;
    gap: 12px !important;
    margin-top: 16px !important;
    flex-wrap: wrap !important;
}

.thumb-gallery button {
    border: 2px solid transparent !important;
    background: #fff !important;
    padding: 4px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
    transition: all .25s ease !important;
}

.thumb-gallery button:hover {
    border-color: var(--gold) !important;
}

.thumb-gallery img {
    width: 82px !important;
    height: 82px !important;
    object-fit: cover !important;
    border-radius: 9px !important;
}

.product-detail-info {
    background: #fff !important;
    border: 1px solid #eee3c7 !important;
    border-radius: 28px !important;
    padding: 34px !important;
    box-shadow: 0 14px 45px rgba(0,0,0,0.08) !important;
    width: 100% !important;
}

.product-detail-info h1 {
    font-size: 38px !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
    color: #111 !important;
}

.product-review-line {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
}

.stars {
    color: var(--gold) !important;
    font-size: 20px !important;
    letter-spacing: 2px !important;
}

.product-review-line small {
    color: #555 !important;
    font-weight: 700 !important;
}

.detail-price {
    background: #fff8e4 !important;
    border: 1px solid #f0dfb5 !important;
    border-radius: 16px !important;
    padding: 16px 18px !important;
    margin: 18px 0 !important;
}

.detail-price .sale-price {
    font-size: 30px !important;
    font-weight: 900 !important;
}

.detail-price .old-price {
    font-size: 18px !important;
}

.short-desc {
    color: #666 !important;
    line-height: 1.8 !important;
    margin-bottom: 22px !important;
}

.product-specs {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin: 24px 0 !important;
}

.product-specs div {
    background: #faf7ef !important;
    border: 1px solid #eee3c7 !important;
    border-radius: 14px !important;
    padding: 13px 14px !important;
    color: #555 !important;
}

.product-specs strong {
    color: #111 !important;
}

.purchase-box {
    background: linear-gradient(135deg, #111, #2c2200) !important;
    color: #fff !important;
    border-radius: 22px !important;
    padding: 22px !important;
    margin-top: 22px !important;
    border: none !important;
}

.purchase-box .form-label,
.qty-row label {
    color: #fff !important;
    font-weight: 900 !important;
}

.purchase-box .form-control {
    border: none !important;
    border-radius: 10px !important;
    padding: 12px !important;
}

.qty-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 18px 0 !important;
}

.cart-qty {
    display: flex !important;
    align-items: center !important;
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    width: max-content !important;
}

.cart-qty button {
    width: 42px !important;
    height: 42px !important;
    border: none !important;
    background: var(--gold) !important;
    color: #fff !important;
    font-weight: 900 !important;
    font-size: 20px !important;
}

.cart-qty input {
    width: 60px !important;
    height: 42px !important;
    border: none !important;
    text-align: center !important;
    font-weight: 900 !important;
    outline: none !important;
}

.detail-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}

.detail-actions form {
    margin: 0 !important;
    width: 100% !important;
}

.detail-cart-btn,
.detail-wishlist-btn {
    width: 100% !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    font-weight: 900 !important;
    transition: all .25s ease !important;
}

.detail-cart-btn {
    background: var(--gold) !important;
    color: #fff !important;
}

.detail-wishlist-btn {
    background: #fff !important;
    color: #111 !important;
}

.detail-cart-btn:hover,
.detail-wishlist-btn:hover {
    transform: translateY(-2px) !important;
    opacity: .92 !important;
}

.product-tabs {
    margin-top: 35px !important;
    display: grid !important;
    gap: 24px !important;
}

.product-tab-card {
    background: #fff !important;
    border: 1px solid #eee3c7 !important;
    border-radius: 24px !important;
    padding: 28px !important;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06) !important;
}

.product-tab-card h3 {
    font-weight: 900 !important;
    margin-bottom: 18px !important;
    color: #111 !important;
}

.review-list {
    display: grid !important;
    gap: 14px !important;
}

.review-item {
    background: #faf7ef !important;
    border: 1px solid #eee3c7 !important;
    border-radius: 16px !important;
    padding: 16px !important;
}

.review-form .form-control {
    border: 1px solid #eee3c7 !important;
    border-radius: 10px !important;
    padding: 12px !important;
}

.review-submit-btn {
    border: none !important;
    background: var(--gold) !important;
    color: #fff !important;
    padding: 12px 22px !important;
    border-radius: 10px !important;
    font-weight: 900 !important;
}


/* =========================================================
   Responsive Final Override
========================================================= */

@media(max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media(max-width: 991px) {
    .product-grid,
    .listing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-gallery {
        position: static !important;
    }

    .main-product-image img,
    .main-product-image .product-img-placeholder {
        height: 430px !important;
    }

    .product-detail-info h1 {
        font-size: 30px !important;
    }
}

@media(max-width: 575px) {
    .product-grid,
    .listing-grid {
        grid-template-columns: 1fr !important;
    }

    .product-image {
        height: 300px !important;
    }

    .main-product-image img,
    .main-product-image .product-img-placeholder {
        height: 340px !important;
    }

    .product-detail-info {
        padding: 22px !important;
    }

    .product-detail-info h1 {
        font-size: 26px !important;
    }

    .product-specs {
        grid-template-columns: 1fr !important;
    }

    .qty-row {
        display: block !important;
    }

    .cart-qty {
        margin-top: 10px !important;
    }

    .detail-actions {
        grid-template-columns: 1fr !important;
    }
}
/* =========================================
   FINAL SLIDER FIX - 1920x350 BANNER
========================================= */

.hero-slider,
#heroSlider,
.carousel,
.carousel-inner {
    width: 100% !important;
    overflow: hidden !important;
    background: #fff !important;
}

.hero-slider .carousel-item,
#heroSlider .carousel-item,
.carousel-item {
    width: 100% !important;
    aspect-ratio: 1920 / 350 !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    background: #fff !important;
}

.hero-slider .carousel-item img,
#heroSlider .carousel-item img,
.carousel-item img,
.slider-img,
.hero-slider img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1920 / 350 !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide legacy caption overlay for banner-style slider images. */
.hero-slider .carousel-caption,
#heroSlider .carousel-caption {
    display: none !important;
}

/* Mobile */
@media(max-width: 575px) {
    .hero-slider .carousel-item,
    #heroSlider .carousel-item,
    .carousel-item {
        aspect-ratio: 1920 / 350 !important;
        height: auto !important;
    }

    .hero-slider .carousel-item img,
    #heroSlider .carousel-item img,
    .carousel-item img,
    .slider-img,
    .hero-slider img {
        aspect-ratio: 1920 / 350 !important;
        height: auto !important;
    }
}

/* =========================================================
   Responsive Polish: Header, Grids, Cart and Checkout
========================================================= */

img {
    max-width: 100%;
}

.main-header {
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.header-row {
    min-width: 0;
}

.header-search input,
.header-search button,
.newsletter-box input,
.newsletter-box button,
.coupon-input-row input,
.coupon-input-row button {
    min-height: 44px;
}

.header-actions a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.search-suggestions {
    max-height: 320px;
    overflow-y: auto;
}

.main-nav .container {
    min-width: 0;
}

.main-nav ul {
    flex-wrap: wrap;
}

.main-nav a {
    border-radius: 0;
}

.mega-menu {
    max-width: min(850px, calc(100vw - 32px));
}

.section-title,
.cart-heading,
.checkout-heading,
.account-heading,
.listing-heading,
.wishlist-heading {
    gap: 16px;
}

.product-info h6 a,
.cart-info h5 a,
.wishlist-info h5 a {
    overflow-wrap: anywhere;
}

.product-card,
.category-card,
.home-banner,
.offer-card,
.review-card,
.cart-item,
.checkout-card,
.checkout-summary,
.wishlist-card,
.account-card {
    min-width: 0;
}

.product-buttons button,
.product-buttons a,
.detail-actions button,
.wishlist-actions button,
.wishlist-actions a,
.checkout-btn,
.shopping-btn,
.continue-btn {
    min-height: 42px;
}

.cart-item,
.wishlist-card,
.checkout-item {
    min-width: 0;
}

.cart-info,
.wishlist-info,
.checkout-item-info {
    min-width: 0;
}

.cart-total,
.checkout-item-total {
    overflow-wrap: anywhere;
}

.checkout-card .form-control,
.auth-box .form-control,
.account-card .form-control,
.contact-form-card .form-control,
.filter-box .form-control {
    min-height: 44px;
}

@media(max-width: 1199px) {
    .category-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media(max-width: 991px) {
    .main-header {
        position: static;
    }

    .header-row {
        gap: 14px;
    }

    .site-logo img {
        max-width: 160px;
    }

    .header-actions {
        flex: 1;
        justify-content: flex-end;
        flex-wrap: wrap;
        white-space: normal;
    }

    .search-suggestions {
        right: 0;
    }

    .main-nav a {
        padding: 13px 14px;
    }

    .section-block {
        padding: 40px 0;
    }

    .newsletter-box {
        padding: 32px;
    }

    .category-banner,
    .contact-hero,
    .success-box {
        border-radius: 18px;
    }

    .cart-summary,
    .checkout-summary,
    .filter-box,
    .account-sidebar {
        top: auto;
    }
}

@media(max-width: 767px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .banner-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-choose {
        padding: 28px;
        border-radius: 18px;
    }

    .checkout-item {
        grid-template-columns: 56px 1fr;
    }

    .checkout-item-total {
        grid-column: 2;
        text-align: left;
    }
}

@media(max-width: 575px) {
    .main-header {
        padding: 12px 0;
    }

    .header-row {
        gap: 12px;
    }

    .site-logo {
        width: 100%;
        text-align: center;
    }

    .site-logo img {
        max-width: 150px;
    }

    .header-search {
        order: 2;
    }

    .header-search input {
        border-radius: 8px 0 0 8px;
        padding: 11px 12px;
    }

    .header-search button {
        padding: 0 14px;
    }

    .header-actions {
        order: 3;
        gap: 8px;
    }

    .header-actions a {
        flex: 1 1 auto;
        justify-content: center;
        padding: 9px 10px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: #fff;
        font-size: 13px;
    }

    .main-nav .container {
        padding-left: 0;
        padding-right: 0;
    }

    .main-nav a {
        padding: 12px 16px;
    }

    .section-title,
    .cart-heading,
    .checkout-heading,
    .account-heading,
    .listing-heading,
    .wishlist-heading {
        display: block;
    }

    .section-title a,
    .listing-count {
        display: inline-block;
        margin-top: 10px;
    }

    .section-block,
    .cart-page,
    .checkout-page,
    .account-page,
    .wishlist-page,
    .product-list-page,
    .product-detail-page,
    .contact-page {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 14px 10px;
    }

    .category-card h6 {
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    .newsletter-box,
    .why-choose,
    .cart-summary,
    .checkout-summary,
    .filter-box,
    .auth-box,
    .account-card,
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }

    .product-buttons,
    .detail-actions,
    .coupon-input-row {
        grid-template-columns: 1fr !important;
    }

    .coupon-input-row {
        display: grid;
        gap: 10px;
    }

    .coupon-input-row input,
    .coupon-input-row button {
        width: 100%;
        border-radius: 8px;
    }

    .cart-item {
        padding: 14px;
    }

    .cart-img img,
    .cart-no-img,
    .wishlist-img img,
    .wishlist-no-img {
        height: 220px;
    }

    .success-actions a {
        min-width: 0;
        width: 100%;
    }
}

@media(max-width: 380px) {
    .category-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .product-image,
    .product-img-placeholder {
        height: 260px !important;
    }

    .main-product-image img,
    .main-product-image .product-img-placeholder {
        height: 300px !important;
    }
}

.floating-contact-buttons {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1050;
    display: grid;
    gap: 10px;
    justify-items: end;
}

.floating-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 18px;
    color: #ffffff !important;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.floating-whatsapp-btn {
    background: #25d366;
}

.floating-facebook-btn {
    background: #1877f2;
}

.floating-contact-btn:hover {
    background: #090909;
    color: #ffffff !important;
}

.cookie-notice-overlay {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.48);
}

.cookie-notice {
    position: relative;
    width: min(480px, 100%);
    background: #090909;
    color: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.86);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    padding: 24px;
}

.cookie-close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}

.cookie-close-btn:hover {
    background: #ffffff;
    color: #111111;
}

.cookie-notice-heading {
    color: #f1c864;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
    padding-right: 34px;
}

.cookie-notice-text {
    color: #f6f0df;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.cookie-notice-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-accept-btn,
.cookie-reject-btn {
    flex: 1;
    min-height: 44px;
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 900;
    font-size: 14px;
    border: 1px solid #b8860b;
}

.cookie-accept-btn {
    background: #b8860b;
    color: #ffffff;
}

.cookie-reject-btn {
    background: transparent;
    color: #ffffff;
}

.cookie-accept-btn:hover,
.cookie-reject-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

@media(max-width: 575px) {
    .floating-contact-buttons {
        right: 12px;
        bottom: 12px;
    }

    .floating-contact-btn {
        min-width: 118px;
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }

    .cookie-notice {
        padding: 22px 18px 18px;
    }

    .cookie-notice-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   FIXED OVERLAY SOCIAL ICONS - LOWER POSITION
===================================================== */

.floating-contact-buttons,
.floating-social-overlay {
    position: fixed !important;
    right: 18px !important;
    top: auto !important;
    bottom: 130px !important;
    left: auto !important;
    transform: none !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: auto !important;
    height: auto !important;
}

.floating-contact-btn,
.floating-social-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: #ffffff !important;
    font-size: 0 !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.28) !important;
    overflow: hidden !important;
    transition: 0.25s ease !important;
}

.floating-contact-btn:hover,
.floating-social-icon:hover {
    transform: translateX(-5px) scale(1.08) !important;
    color: #ffffff !important;
}

.floating-whatsapp-btn,
.floating-social-icon.whatsapp {
    background: #25d366 !important;
}

.floating-facebook-btn,
.floating-social-icon.facebook {
    background: #1877f2 !important;
}

.floating-social-icon.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4) !important;
}

.floating-social-icon.youtube {
    background: #ff0000 !important;
}

.floating-social-icon svg,
.social-svg-icon,
.whatsapp-svg-icon,
.facebook-svg-icon,
.instagram-svg-icon,
.youtube-svg-icon {
    width: 25px !important;
    height: 25px !important;
    display: block !important;
    color: #ffffff !important;
    fill: currentColor !important;
}

/* Disable old text pseudo icons */
.floating-whatsapp-btn::before,
.floating-facebook-btn::before,
.floating-social-icon::before,
.floating-social-icon::after {
    content: none !important;
    display: none !important;
}

/* Mobile */
@media(max-width: 575px) {
    .floating-contact-buttons,
    .floating-social-overlay {
        right: 12px !important;
        top: auto !important;
        bottom: 95px !important;
        transform: none !important;
    }

    .floating-contact-btn,
    .floating-social-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
    }

    .floating-social-icon svg,
    .social-svg-icon,
    .whatsapp-svg-icon,
    .facebook-svg-icon,
    .instagram-svg-icon,
    .youtube-svg-icon {
        width: 22px !important;
        height: 22px !important;
    }
}

/* Cookie Notice Fixed Overlay */
.cookie-notice-overlay {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 18px !important;
    top: auto !important;
    z-index: 999998 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 16px !important;
    background: transparent !important;
    pointer-events: none !important;
}

.cookie-notice,
.cookie-notice-box {
    width: 100% !important;
    max-width: 760px !important;
    background: rgba(17,17,17,0.97) !important;
    color: #ffffff !important;
    border: 1px solid rgba(184,134,11,0.75) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 55px rgba(0,0,0,0.38) !important;
    padding: 18px 54px 18px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    position: relative !important;
    pointer-events: auto !important;
}

.cookie-notice-heading,
.cookie-notice-content strong {
    display: block !important;
    color: #f4d477 !important;
    font-weight: 900 !important;
    font-size: 15px !important;
    margin-bottom: 4px !important;
}

.cookie-notice-text,
.cookie-notice-content p {
    color: #eeeeee !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.cookie-notice-actions {
    display: flex !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.cookie-accept-btn,
.cookie-reject-btn {
    border-radius: 10px !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    border: none !important;
}

.cookie-accept-btn {
    background: #b8860b !important;
    color: #ffffff !important;
}

.cookie-reject-btn {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.55) !important;
}

.cookie-close-btn {
    position: absolute !important;
    right: 14px !important;
    top: 10px !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(255,255,255,0.14) !important;
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    padding: 0 !important;
}

.cookie-close-btn:hover {
    background: #b8860b !important;
}

/* Mobile */
@media(max-width: 575px) {
    .floating-contact-buttons,
    .floating-social-overlay {
        right: 12px !important;
        top: auto !important;
        bottom: 105px !important;
        transform: none !important;
    }

    .floating-contact-btn,
    .floating-social-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
    }

    .cookie-notice-overlay {
        bottom: 12px !important;
        padding: 0 10px !important;
    }

    .cookie-notice,
    .cookie-notice-box {
        display: block !important;
        padding: 18px 44px 18px 16px !important;
        border-radius: 16px !important;
    }

    .cookie-notice-actions {
        margin-top: 12px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .cookie-accept-btn,
    .cookie-reject-btn {
        width: 100% !important;
        padding: 10px 12px !important;
    }
}

/* Desktop header logo fix: keep uploaded logo compact without changing mobile layout. */
@media(min-width: 576px) {
    .main-header {
        padding: 14px 0 !important;
    }

    .main-header .header-row {
        display: flex !important;
        align-items: center !important;
        gap: 24px !important;
        min-height: 82px !important;
    }

    .site-logo {
        flex: 0 0 200px !important;
        width: 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    .site-logo img {
        display: block !important;
        width: auto !important;
        max-width: 200px !important;
        height: auto !important;
        max-height: 76px !important;
        object-fit: contain !important;
    }

    .mobile-header-brand-text {
        display: none !important;
    }

    .header-search {
        flex: 1 1 auto !important;
        min-width: 260px !important;
        order: initial !important;
    }

    .header-actions {
        flex: 0 0 auto !important;
    }
}

/* Mobile header brand layout: logo left, brand name right. */
@media(max-width: 575px) {
    .main-header {
        padding: 10px 0 14px !important;
        position: static !important;
    }

    .main-header .container {
        max-width: 100% !important;
    }

    .main-header .header-row {
        display: grid !important;
        grid-template-columns: 118px minmax(0, 1fr) !important;
        grid-template-areas:
            "logo brand"
            "search search"
            "actions actions" !important;
        align-items: center !important;
        column-gap: 14px !important;
        row-gap: 14px !important;
        width: 100% !important;
    }

    .site-logo {
        grid-area: logo !important;
        width: 118px !important;
        min-width: 118px !important;
        max-width: 118px !important;
        height: 76px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        overflow: hidden !important;
        text-align: left !important;
    }

    .site-logo img {
        display: block !important;
        width: auto !important;
        max-width: 112px !important;
        height: auto !important;
        max-height: 72px !important;
        object-fit: contain !important;
    }

    .site-logo span,
    .site-logo small {
        display: none !important;
    }

    .mobile-header-brand-text {
        grid-area: brand !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        min-width: 0 !important;
        text-align: left !important;
    }

    .mobile-header-brand-text span {
        display: block !important;
        color: #111111 !important;
        font-size: 24px !important;
        line-height: 1.15 !important;
        font-weight: 900 !important;
        letter-spacing: 0 !important;
        text-transform: uppercase !important;
        overflow-wrap: anywhere !important;
    }

    .header-search {
        grid-area: search !important;
        width: 100% !important;
        min-width: 0 !important;
        order: unset !important;
        flex: none !important;
    }

    .header-actions {
        grid-area: actions !important;
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 10px !important;
        justify-content: stretch !important;
    }
}

@media(max-width: 380px) {
    .main-header .header-row {
        grid-template-columns: 96px minmax(0, 1fr) !important;
        column-gap: 10px !important;
    }

    .site-logo {
        width: 96px !important;
        min-width: 96px !important;
        max-width: 96px !important;
        height: 64px !important;
    }

    .site-logo img {
        max-width: 92px !important;
        max-height: 60px !important;
    }

    .mobile-header-brand-text span {
        font-size: 20px !important;
    }
}

/* Policy pages */
.policy-page {
    background:
        linear-gradient(180deg, rgba(184, 134, 11, 0.08), rgba(255, 255, 255, 0) 320px),
        #ffffff;
}

.policy-hero {
    background: linear-gradient(135deg, #111111, #3b2b00);
    color: #ffffff;
    padding: 72px 0;
}

.policy-hero span {
    display: inline-block;
    color: #f4d477;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.policy-hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
}

.policy-hero p {
    max-width: 780px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
    line-height: 1.8;
}

.policy-content-section {
    padding: 48px 12px 70px;
}

.policy-card {
    max-width: 980px;
    margin: -88px auto 0;
    background: #ffffff;
    border: 1px solid #eee3c7;
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(12, 10, 4, .10);
    padding: 34px;
    position: relative;
}

.policy-updated {
    display: inline-flex;
    background: #fff8e6;
    border: 1px solid #ead7a5;
    border-radius: 999px;
    color: #735100;
    font-size: 13px;
    font-weight: 900;
    padding: 8px 14px;
    margin-bottom: 22px;
}

.policy-block {
    border-bottom: 1px solid #f0e6ce;
    padding: 22px 0;
}

.policy-block:first-of-type {
    padding-top: 0;
}

.policy-block h2,
.policy-contact-box h2 {
    color: #111111;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 10px;
}

.policy-block p,
.policy-contact-box p {
    color: #4d4a43;
    line-height: 1.8;
    margin: 0;
}

.policy-contact-box {
    background: #fbf7ed;
    border: 1px solid #eadfca;
    border-radius: 18px;
    padding: 24px;
    margin-top: 26px;
}

.policy-contact-box a {
    color: #b8860b;
    font-weight: 900;
}

@media(max-width: 575px) {
    .policy-hero {
        padding: 46px 0 92px;
    }

    .policy-content-section {
        padding-top: 0;
    }

    .policy-card {
        margin-top: -58px;
        padding: 22px;
        border-radius: 18px;
    }

    .policy-block h2,
    .policy-contact-box h2 {
        font-size: 20px;
    }
}