/* style.clean.css — consolidated, deduplicated stylesheet
   Created to replace style.css duplicates and conflicting rules.
   Keep this file linked in HTML instead of the original when ready.
*/

:root {
    --white: #ffffff;
    --black: #000000;
    --footer-black: #000000;
    --gold: #d4af37;
    --mate: #2a2a2a;
    --muted: #6b6b6b;
    --accent-red: #d32f2f;
    --lux-pad: 3.5rem;
    --lux-pad-sm: 2rem;
    font-family:
        "Poppins",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial;
}

/* Base */
html,
body {
    background: var(--footer-black);
    color: var(--white);
    margin: 0;
    padding: 0;
}

.home-demo .item {
    background: var(--gold);
}
.home-demo h2 {
    color: #fff;
    text-align: center;
    padding: 5rem 0;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

 .marquee-container {
   background-color: white;
}

/* The moving text */
.marquee-text {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    color: #ef001f;
    background-color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Keyframes for scrolling from right to left */

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: 0.6px;
    color: var(--gold);
}

p {
    color: #e9e9e9;
}

/* Top notification bar */
.top-notice {
    background: var(--white);
    color: var(--mate);
    font-weight: 700;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    text-align: center;
}

/* Navbar */
.main-nav {
    background: var(--black);
    color: var(--gold);
    padding: 0.6rem 1rem;
    border-bottom: 2px solid var(--gold);
}

.main-nav .nav-link,
.main-nav .navbar-brand,
.main-nav .navbar-text {
    color: var(--white) !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav .nav-link:hover {
    color: var(--gold) !important;
}

.main-nav .nav-link.active {
    color: var(--gold) !important;
}

.main-nav .dropdown-menu {
    min-width: 200px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
}

@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        left: 0;
        margin-left: 0;
    }
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-img {
    max-height: 60px;
    width: auto;
}

.nav-icons .fa {
    font-size: 1.05rem;
    margin-left: 1rem;
    color: var(--gold);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    width: 95%;
    max-width: 1100px;
}

.hero .hero-overlay h1 {
    font-size: clamp(28px, 6vw, 56px);
    letter-spacing: 4px;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.hero .hero-overlay p {
    margin: 0;
    font-size: clamp(14px, 1.7vw, 20px);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Section headings */
.section-heading {
    text-align: center;
    margin: 2.5rem 0 2.5rem;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: var(--gold);
}

/* Product card */
.product-card-col {
    background: var(--white);
    margin: 0.6rem 0.3rem;
    border-radius: 10px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    color: var(--mate);
    min-height: 310x;
    display: flex;
    flex-direction: column;
}

/* Ensure four cards fit per row on large screens while keeping margins */
.product-card-col {
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .product-card-col.col-lg-3 {
        flex: 0 0 calc(25% - 0.6rem);
        max-width: calc(25% - 0.6rem);
    }
}

.product-card {
    border: none;
    background: transparent;
    padding: 0;
}

.product-card .card-body {
    padding: 0.9rem 0.6rem 1.2rem;
    color: var(--mate);
}

.product-card .card-body h5 {
    color: var(--mate);
}

.product-card-col .price-row .sale {
    color: var(--mate);
}

.img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
    padding-bottom: 100%;
}

.img-wrap img {
    position: absolute;
    width: 88%;
    height: 88%;
    object-fit: contain;
    left: 6%;
    top: 6%;
    transition: transform 0.4s ease;
}

.img-wrap:hover img {
    transform: translateY(-6px);
}

.sale-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: var(--accent-red);
    color: #fff;
    padding: 6px 10px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(211, 47, 47, 0.25);
}

.price-row {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-top: 0.6rem;
}

.price-row .original {
    color: #9a9a9a;
    text-decoration: line-through;
    font-size: 0.95rem;
}

.price-row .sale {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
}

.card-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.btn-white-outline {
    background: var(--white);
    color: var(--mate);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 0.45rem 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    flex: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-white-outline:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-black-fill {
    background: var(--black);
    color: var(--gold);
    border: none;
    padding: 0.45rem 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    flex: 1;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-black-fill:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Golden border for buttons in iconic and most-complimented sections */
#newly .btn-black-fill,
#most-complimented .btn-black-fill {
    border: 2px solid var(--gold) !important;
}

/* Deals */
.deal-card {
    background: var(--white);
    border-radius: 12px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    color: var(--mate);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    margin: 0.6rem 0;
    border: none !important;
}

.deal-card .card-body {
    padding: 1rem 0.8rem;
    color: var(--mate);
}

.deal-card .img-wrap {
    padding-bottom: 66%;
    background: linear-gradient(180deg, #fafafa, #f3f3f3);
}

.deal-podium {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 12%;
    padding-bottom: 6%;
    transform: translateY(12%);
}

/* Newly launched */
/* .newly-section{ padding:2.2rem 0; } */
.newly-section h4 {
    color: var(--gold);
}

.newly-section h6 {
    color: var(--gold);
}

.newly-section strong {
    color: var(--gold);
}

.newly-section p {
    color: var(--white);
}

.newly-section p.text-muted {
    color: var(--white) !important;
}

.newly-section ul li {
    color: var(--white);
}

.newly-section div.text-muted {
    color: var(--white) !important;
}

.newly-img {
    max-width: 520px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.size-qty {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0.8rem 0 1rem;
}

.qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    overflow: hidden;
}

.qty-box button {
    padding: 0.4rem 0.6rem;
    border: none;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
}

.qty-box input {
    width: 52px;
    text-align: center;
    border: none;
    padding: 0.45rem 0.35rem;
    font-weight: 700;
    background: transparent;
}

/* Zig-zag most complimented */
.zig-row {
    align-items: center;
    margin-bottom: 3rem;
}

.zig-row h4 {
    color: var(--gold);
}

.zig-row h6 {
    color: var(--gold);
}

.zig-row strong {
    color: var(--gold);
}

.zig-row p {
    color: var(--white);
}

.zig-row p.text-muted {
    color: var(--white) !important;
}

.zig-row ul li {
    color: var(--white);
}

.zig-row div.text-muted {
    color: var(--white) !important;
}

.zig-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.zig-img:hover {
    transform: scale(1.03);
}

/* Pre-footer icons */
.prefooter {
    background: var(--white);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.prefooter .icon-card {
    text-align: center;
}

.prefooter .icon-card i {
    background: var(--gold);
    border-radius: 12px;
    padding: 12px;
    font-size: 1.35rem;
    width: 56px;
    height: 56px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--mate);
}

.prefooter .icon-card > div {
    color: var(--mate) !important;
}

.prefooter .icon-card p {
    color: var(--gold);
    margin: 0.25rem 0 0;
}

/* Footer */
.main-footer {
    background: var(--footer-black);
    color: #ddd;
    padding: 2rem 0 1.2rem;
    font-size: 0.95rem;
    border-top: 2px solid var(--gold);
}

.main-footer a {
    color: #d8d8d8;
    text-decoration: none;
}

.footer-heading {
    color: var(--gold) !important;
}

.main-footer .socials a {
    color: var(--gold);
    margin: 0 0.35rem;
    font-size: 1.05rem;
    display: inline-block;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.main-footer .socials a:hover {
    opacity: 1;
    color: var(--white);
}

.copyright {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
}

/* Contact page (kept but scoped and non-duplicative) */
.contact-hero {
    position: relative;
    padding: 1rem 1rem;
    text-align: center;
    color: var(--mate);
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
    color: var(--mate);
}

.contact-card .form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

/* contact page expects full-width black button with white text */
.contact-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}
.contact-hero h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.contact-hero p {
    color: #d9d9d9;
}
.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}
.contact-card h3 {
    color: var(--gold);
}
.contact-card .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
}
.contact-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.contact-card .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}
.contact-card .form-label {
    color: var(--white);
}
.contact-info {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem !important;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.08) 0%,
        rgba(212, 175, 55, 0.03) 100%
    );
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: flex-start;
}
.contact-info:hover {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.08) 100%
    );
    border-left-color: #ffeb99;
    transform: translateX(5px);
}
.contact-info i {
    font-size: 1.3rem;
    color: var(--gold);
    min-width: 2rem;
    text-align: center;
    margin-top: 0.1rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    flex-shrink: 0;
}
.contact-info h5 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.contact-info p {
    margin: 0;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.3px;
}
.contact-info-content {
    flex: 1;
}
.contact-section {
    padding: 4rem 0;
}
/* Wholesale block (organized) */
.wholesale-block {
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.wholesale-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.see-all-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 0.6rem 1.4rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.see-all-btn:hover {
    background: #333;
    color: #fff;
}

.wholesale-title {
    font-weight: 800;
    font-size: 1.8rem;
}

.wholesale-desc {
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: 0.6rem;
}

/* WhatsApp Live Chat Icon */
.whatsapp-chat {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-chat:hover {
    background: var(--white);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
}

/* Product Detail Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============ BANNERS CAROUSEL ============ */
.carousel {
    position: relative;
}

.carousel-inner {
    border-radius: 0;
    overflow: hidden;
}

.carousel-item {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    visibility: hidden;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition:
        opacity 0.3s ease,
        background 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(212, 165, 80, 0.8);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-item {
        min-height: 200px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .carousel-item {
        min-height: 150px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        opacity: 0.5;
    }
}

.product-modal-content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    height: 100%;
    overflow: hidden;
}

.product-modal-close {
    position: absolute;
    top: -10px;
    right: 5px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--mate);
    cursor: pointer;
    z-index: 1001;
}

.product-modal-close:hover {
    color: var(--gold);
}

.product-modal-image {
    position: sticky;
    top: 0;
    height: fit-content;
}

.product-modal-details {
    overflow-y: auto;
    max-height: calc(90vh - 4rem);
    padding-right: 0.5rem;
}

.product-modal-details::-webkit-scrollbar {
    width: 6px;
}

.product-modal-details::-webkit-scrollbar-track {
    background: transparent;
}

.product-modal-details::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.product-modal-details::-webkit-scrollbar-thumb:hover {
    background: var(--mate);
}

.product-modal-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.product-modal-image .sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-red);
    color: #fff;
    padding: 8px 12px;
    font-weight: 700;
    border-radius: 6px;
}

.product-modal-thumbnails {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.thumbnail-img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-img:hover {
    border-color: var(--gold);
}

.product-modal-title {
    font-size: 1.8rem;
    color: var(--mate);
    margin-bottom: 0.5rem;
}

.product-modal-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.review-count {
    color: var(--muted);
    font-size: 0.95rem;
}

.product-modal-price {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.original-price {
    color: #9a9a9a;
    text-decoration: line-through;
    font-size: 1rem;
}

.sale-price {
    color: var(--mate);
    font-size: 1.5rem;
    font-weight: 700;
}

.product-modal-size,
.product-modal-qty,
.product-modal-oil {
    margin-bottom: 0.9rem;
}

.product-modal-size label,
.product-modal-qty label,
.product-modal-oil label {
    display: block;
    color: var(--mate);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.size-options,
.oil-options {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.oil-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.recommended-badge {
    background: var(--gold);
    color: var(--mate);
    font-size: 0.5rem;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 2px;
    letter-spacing: 0.3px;
}

.size-btn,
.oil-btn {
    padding: 0.4rem 0.8rem;
    border: 1.5px solid var(--mate);
    background: transparent;
    color: var(--mate);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.size-btn.active,
.size-btn:hover,
.oil-btn.active,
.oil-btn:hover {
    background: var(--mate);
    color: var(--white);
    border-color: var(--mate);
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: fit-content;
}

.qty-btn {
    background: transparent;
    border: none;
    padding: 0.3rem 0.55rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--mate);
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 700;
    color: var(--mate);
    font-size: 0.85rem;
}

.product-modal-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--mate);
    font-size: 0.95rem;
}

.feature i {
    color: var(--gold);
    font-size: 1.2rem;
}

.product-modal-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.btn-modal-add-cart,
.btn-modal-buy-now {
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-add-cart {
    background: var(--white);
    color: var(--mate);
    border: 1px solid var(--mate);
}

.btn-modal-add-cart:hover {
    background: var(--mate);
    color: var(--white);
}

.btn-modal-buy-now {
    background: var(--mate);
    color: var(--white);
}

.btn-modal-buy-now:hover {
    background: var(--gold);
    color: var(--mate);
}

.product-modal-description {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.desc-title {
    color: var(--mate);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.desc-subtitle {
    color: var(--mate);
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.7rem;
}

.product-modal-description p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.desc-notes,
.desc-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.desc-notes li,
.desc-benefits li {
    padding: 0.4rem 0;
    line-height: 1.5;
}

.desc-notes li strong {
    color: var(--mate);
}

@media (max-width: 768px) {
    .product-modal-content {
        width: 95%;
        max-width: 100%;
        max-height: 95vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .product-modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        height: auto;
        overflow: visible;
        padding: 1.5rem;
    }

    .product-modal-image {
        position: relative;
    }

    .product-modal-details {
        max-height: none;
        overflow: visible;
    }
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .nav-icons .fa {
        margin-left: 0.6rem;
    }

    .hero .hero-overlay {
        padding: 0 1rem;
    }
}

@media (max-width: 575px) {
    .product-modal-content {
        width: 90%;
        max-height: 95vh;
        overflow-y: auto;
        border-radius: 8px;
    }

    .product-modal-body {
        padding: 1rem;
        gap: 1rem;
    }

    .product-modal-close {
        font-size: 1.5rem;
    }

    .product-modal-title {
        font-size: 1.3rem;
    }

    .product-modal-price {
        font-size: 0.9rem;
    }

    .product-modal-size,
    .product-modal-qty,
    .product-modal-oil {
        margin-bottom: 1rem;
    }

    .size-btn,
    .oil-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .btn-modal-add-cart,
    .btn-modal-buy-now {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .desc-title {
        font-size: 1.1rem;
    }

    .desc-subtitle {
        font-size: 0.95rem;
    }

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

    .btn-white-outline,
    .btn-black-fill {
        width: 100%;
    }
}

/* ============ COMPREHENSIVE RESPONSIVE DESIGN ============ */

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    :root {
        --lux-pad: 1.5rem;
        --lux-pad-sm: 1rem;
    }

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    h4,
    h5,
    h6 {
        font-size: 1rem;
    }

    .top-notice {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }

    .section-heading {
        font-size: 1.3rem;
        margin: 1.5rem 0 1.5rem;
        padding: 0 0.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    /* Product Cards */
    .product-card-col {
        padding: 0.25rem;
    }

    .product-card .card-body {
        padding: 0.5rem 0.4rem 0.8rem;
    }

    .product-card .card-body h5 {
        font-size: 0.9rem;
    }

    .price-row {
        font-size: 0.85rem;
        gap: 0.3rem;
    }

    .price-row .original {
        font-size: 0.75rem;
    }

    .price-row .sale {
        font-size: 0.95rem;
    }

    .btn-black-fill,
    .btn-white-outline {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        min-height: 44px;
    }

    /* Modal */
    .product-modal-content {
        width: 80%;
        max-height: 95vh;
    }

    .product-modal-body {
        padding: 1rem;
        gap: 1rem;
    }

    .product-modal-close {
        font-size: 1.5rem;
    }

    .product-modal-title {
        font-size: 1.3rem;
    }

    .product-modal-price {
        margin-bottom: 1rem;
    }

    .original-price {
        font-size: 0.85rem;
    }

    .sale-price {
        font-size: 1.2rem;
    }

    .size-btn,
    .oil-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }

    .btn-modal-add-cart,
    .btn-modal-buy-now {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Deals section */
    .deal-card {
        margin-bottom: 0.5rem;
    }

    /* Hero */
    .hero .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .hero .hero-overlay p {
        font-size: 0.9rem;
    }

    /* WhatsApp button */
    .whatsapp-chat {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 15px;
        font-size: 1.5rem;
    }

    /* Contact form */
    .contact-card {
        padding: 1rem;
    }

    .contact-hero {
        padding: 2rem 1rem;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }
}

/* Small Devices (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .section-heading {
        font-size: 1.5rem;
        margin: 2rem 0 2rem;
    }

    .product-card-col {
        padding: 0.3rem;
    }

    .product-card .card-body {
        padding: 0.7rem 0.5rem 1rem;
    }

    .product-card .card-body h5 {
        font-size: 0.95rem;
    }

    .btn-black-fill,
    .btn-white-outline {
        min-height: 44px;
        font-size: 0.9rem;
    }

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

    .product-modal-content {
        width: 96%;
    }

    .hero .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero .hero-overlay p {
        font-size: 1rem;
    }

    .zig-row {
        margin-bottom: 2rem;
    }

    .zig-img {
        height: 300px;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

/* Medium Devices (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .section-heading {
        font-size: 1.7rem;
    }

    .product-card .card-body {
        padding: 0.8rem 0.6rem 1.2rem;
    }

    .product-card .card-body h5 {
        font-size: 1rem;
    }

    .product-modal-body {
        grid-template-columns: 1fr 1.1fr;
    }

    .product-modal-content {
        max-width: 850px;
    }

    .zig-img {
        height: 360px;
    }
}

/* Large Devices (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .section-heading {
        font-size: 1.8rem;
    }

    .product-modal-content {
        max-width: 880px;
    }

    .zig-img {
        height: 400px;
    }
}

/* Extra Large Devices (1200px and above) */
@media (min-width: 1200px) {
    .section-heading {
        font-size: 2rem;
    }

    .product-modal-content {
        max-width: 900px;
    }

    .zig-img {
        height: 420px;
    }
}

/* Ultra Wide (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Responsive Utilities */

/* Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Flexible Product Grid */
@media (max-width: 576px) {
    .row {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }

    .col-6,
    .col-md-4,
    .col-lg-3 {
        padding-left: 0.375rem;
        padding-right: 0.375rem;
    }
}

/* Touch-friendly buttons on mobile */
@media (max-width: 768px) {
    button,
    a.btn,
    input[type="button"] {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Landscape mode adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .section-heading {
        margin: 1rem 0;
    }

    .top-notice {
        padding: 0.2rem 0;
    }

    .product-modal-details {
        max-height: calc(90vh - 3rem);
    }
}

/* Prevent text zoom on input focus (iOS) */
@media (max-width: 768px) {
    input,
    textarea,
    select {
        font-size: 16px;
    }
}

/* Optimize modal for mobile landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .product-modal-body {
        grid-template-columns: 0.7fr 1.3fr;
        gap: 1rem;
    }

    .product-modal-image {
        height: fit-content;
    }
}

/* Responsive spacing utilities */
@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .row {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }

    [class*="col-"] {
        padding-left: 0.375rem;
        padding-right: 0.375rem;
    }

    .mt-4,
    .my-4 {
        margin-top: 1rem !important;
    }

    .mb-4,
    .my-4 {
        margin-bottom: 1rem !important;
    }

    .p-3 {
        padding: 0.75rem !important;
    }

    .px-3 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}

/* End of comprehensive responsive design */

/* WhatsApp Live Chat Icon */
.whatsapp-chat {
    position: fixed;
    bottom: 50px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-chat:hover {
    background: var(--white);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
}

/* ===== ABOUT US PAGE STYLES ===== */

.about-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 3rem;
}

.about-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: #bbb;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 2rem 0;
}

.about-heading {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-text {
    color: #e9e9e9;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-text strong {
    color: var(--gold);
    font-weight: 700;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* Why Choose Section */
.why-choose-section {
    padding: 3rem 0;
}

.why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.why-card-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.why-card-title {
    color: var(--mate);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.why-card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(8px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.value-content {
    flex: 1;
}

.value-title {
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-text {
    color: #e9e9e9;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.05) 100%
    );
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--gold);
    margin-bottom: 3rem;
}

.cta-title {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.cta-text {
    color: #e9e9e9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.btn-cta {
    display: inline-block;
    background: var(--black);
    color: var(--gold);
    padding: 0.85rem 2.5rem;
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cta:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    .why-card-icon {
        font-size: 2.5rem;
    }

    .value-item {
        gap: 1rem;
        padding: 1rem;
    }

    .value-icon {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2rem 0 1.5rem;
    }

    .about-hero-title {
        font-size: 1.5rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-heading {
        font-size: 1.3rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .why-card {
        padding: 1.2rem;
    }

    .why-card-icon {
        font-size: 2rem;
    }

    .why-card-title {
        font-size: 1rem;
    }

    .why-card-text {
        font-size: 0.85rem;
    }

    .value-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--gold);
    }

    .value-icon {
        font-size: 1.8rem;
    }

    .value-title {
        font-size: 1rem;
    }

    .value-text {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .btn-cta {
        padding: 0.7rem 2rem;
        font-size: 0.9rem;
    }
}

/* End of About Us Styles */

/* ===== SHOPPING CART PAGE STYLES ===== */

/* Cart Badge on Navbar */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
}

/* Cart Hero Section */
.cart-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem 0 2rem;
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.cart-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.cart-breadcrumb {
    color: #999;
    font-size: 0.95rem;
    margin: 0;
}

.cart-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-breadcrumb a:hover {
    color: var(--white);
}

/* Cart Section */
.cart-section {
    padding: 2rem 0 4rem;
}

/* Empty Cart State */
.empty-cart-container {
    background: var(--white);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.empty-cart-icon {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.empty-cart-container h2 {
    color: var(--mate);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.empty-cart-container p {
    color: #999;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.btn-empty-cart {
    display: inline-block;
    background: var(--black);
    color: var(--gold);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
}

.btn-empty-cart:hover {
    background: var(--gold);
    color: var(--black);
}

/* Cart Items Wrapper */
.cart-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Cart Items List */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Individual Cart Item Card */
.cart-item-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.cart-item-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Product Info Section */
.cart-item-main {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.item-image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #f5f5f5;
}

.item-details h4 {
    color: var(--mate);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.item-variant {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.item-sku {
    font-size: 0.75rem;
    color: #bbb;
    line-height: 1.4;
    margin: 0;
}

.item-sku span {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Controls Section */
.cart-item-controls {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 0.8fr;
    gap: 1.5rem;
    align-items: center;
}

.control-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.control-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.control-value {
    color: var(--mate);
    font-weight: 700;
    font-size: 0.95rem;
}

.action-cell {
    justify-content: center;
}

/* Cart Item Product Info */
.cart-item-product {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cart-item-product img {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-product h4 {
    color: var(--mate);
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.cart-item-variant {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cart-item-sku {
    font-size: 0.75rem;
    color: #bbb;
    line-height: 1.3;
    margin: 0;
}

.sku-value {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Cart Item Quantity */
.cart-item-qty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.qty-form button {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color: var(--mate);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.qty-form button:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.qty-form input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 0.5rem;
    font-weight: 600;
    color: var(--mate);
    border-radius: 4px;
}

/* Cart Item Remove */
.cart-item-action {
    display: flex;
    justify-content: center;
}

.btn-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--accent-red);
    font-size: 1.2rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    color: var(--black);
    transform: scale(1.15);
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.summary-title {
    color: var(--mate);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.summary-details {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--mate);
    font-size: 0.95rem;
    font-weight: 500;
}

.summary-row span:first-child {
    color: var(--mate);
}

.summary-row span:last-child {
    color: #999;
    font-weight: 500;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 1.5rem;
}

.summary-total span:first-child {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--mate);
}

.summary-total span:last-child {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--gold);
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    background: var(--black);
    color: var(--gold);
    padding: 0.85rem 1.5rem;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-checkout:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Continue Shopping Button */
.btn-continue-shopping {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--mate);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--mate);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-continue-shopping:hover {
    background: var(--mate);
    color: var(--white);
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-items-header {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 0.5rem;
    }

    .cart-item {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 0.5rem;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-details h5 {
        font-size: 0.8rem;
    }

    .cart-item-price,
    .cart-item-total,
    .cart-item-qty,
    .cart-item-remove {
        display: none;
    }

    .cart-summary {
        padding: 1.5rem;
    }

    .summary-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .btn-checkout,
    .btn-continue-shopping {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }
}

@media (max-width: 480px) {
    .cart-hero {
        padding: 2rem 0 1.5rem;
    }

    .cart-title {
        font-size: 1.8rem;
    }

    .cart-items-header {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
        padding: 0.8rem;
        font-size: 0.75rem;
    }

    .cart-item {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
        padding: 0.8rem;
    }

    .cart-item-image {
        width: 50px;
        height: 50px;
    }

    .cart-item-details h5 {
        font-size: 0.7rem;
    }

    .cart-summary {
        padding: 1rem;
        position: static;
        margin-top: 2rem;
    }

    .summary-title {
        font-size: 1rem;
    }

    .summary-row {
        font-size: 0.85rem;
    }

    .total-amount {
        font-size: 1.1rem;
    }
}

/* End of Shopping Cart Page Styles */

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

/* Checkout Hero Section */
.checkout-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem 0 2rem;
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.checkout-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.checkout-breadcrumb {
    color: #999;
    font-size: 0.95rem;
    margin: 0;
}

.checkout-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkout-breadcrumb a:hover {
    color: var(--white);
}

/* Checkout Section */
.checkout-section {
    padding: 2rem 0 4rem;
}

/* Checkout Form Card */
.checkout-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-section-title {
    color: var(--mate);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-section-title i {
    color: var(--gold);
}

/* Checkout Form Styles */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--mate);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: var(--accent-red);
    font-weight: 800;
}

.optional {
    color: #999;
    font-weight: 500;
    font-size: 0.8rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    color: var(--mate);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #ccc;
}

textarea.form-control {
    resize: vertical;
    font-size: 0.9rem;
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    cursor: pointer;
}

/* Place Order Button */
.btn-place-order {
    background: var(--black);
    color: var(--gold);
    padding: 1rem 1.5rem;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.btn-place-order:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-place-order:active {
    transform: translateY(0);
}

/* Order Summary Card */
.order-summary-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.summary-title {
    color: var(--mate);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

/* Checkout Items */
.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.checkout-item-info h6 {
    color: var(--mate);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.checkout-item-meta {
    color: #999;
    font-size: 0.8rem;
}

.checkout-item-amount {
    color: var(--mate);
    font-weight: 700;
    font-size: 1rem;
}

.checkout-summary-total {
    padding: 1rem 0;
    border-top: 2px solid #f0f0f0;
}

.checkout-summary-total .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--mate);
}

.checkout-summary-total .total-amount {
    color: var(--gold);
    font-size: 1.3rem;
}

/* Payment Instructions Card */
.payment-instructions-card {
    background: linear-gradient(135deg, #fff9f0, #fffcf8);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gold);
}

.instructions-title {
    color: var(--mate);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.instructions-title i {
    color: var(--gold);
    font-size: 1.3rem;
}

/* Payment Method Box */
.payment-method-box {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--gold);
}

.bank-name {
    color: var(--mate);
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.payment-detail {
    color: var(--mate);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.payment-detail strong {
    color: var(--mate);
    font-weight: 700;
}

/* Payment Note */
.payment-note {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    margin-top: 1rem;
}

.payment-note p {
    color: var(--mate);
    margin: 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.payment-note i {
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Responsive Checkout */
@media (max-width: 768px) {
    .checkout-form-card,
    .order-summary-card,
    .payment-instructions-card {
        padding: 1.5rem;
    }

    .form-section-title,
    .summary-title,
    .instructions-title {
        font-size: 1.1rem;
    }

    .checkout-title {
        font-size: 1.8rem;
    }

    .payment-method-box {
        padding: 1rem;
    }

    .btn-place-order {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .checkout-form-card,
    .order-summary-card,
    .payment-instructions-card {
        padding: 1.25rem;
    }

    .checkout-title {
        font-size: 1.5rem;
    }

    .form-section-title,
    .summary-title,
    .instructions-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-control {
        font-size: 0.9rem;
        padding: 0.65rem 0.8rem;
    }

    .payment-method-box {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .payment-detail {
        font-size: 0.85rem;
    }

    .checkout-item {
        padding: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-item-amount {
        align-self: flex-end;
        margin-top: 0.5rem;
    }
}

/* End of Checkout Page Styles */

/* ===== PROFILE PAGE STYLES ===== */

/* Profile Hero Section */
.profile-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem 0 2rem;
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.profile-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.profile-breadcrumb {
    color: #999;
    font-size: 0.95rem;
    margin: 0;
}

.profile-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.profile-breadcrumb a:hover {
    color: var(--white);
}

/* Profile Section */
.profile-section {
    padding: 2rem 0 4rem;
}

/* Profile Welcome Card */
.profile-welcome-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.welcome-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.profile-welcome-card h2 {
    color: var(--mate);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.profile-welcome-card p {
    color: #999;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-auth-signin,
.btn-auth-login {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-auth-signin {
    background: var(--black);
    color: var(--gold);
    border: 2px solid var(--black);
}

.btn-auth-signin:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-auth-login {
    background: transparent;
    color: var(--mate);
    border: 2px solid var(--mate);
}

.btn-auth-login:hover {
    background: var(--mate);
    color: var(--white);
    transform: translateY(-2px);
}

.auth-divider {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Auth Modals */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.auth-modal-content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 95%;
    max-width: 450px;
    position: relative;
    padding: 2.5rem;
}

.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--mate);
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.auth-modal-close:hover {
    color: var(--gold);
}

.auth-modal-title {
    color: var(--mate);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
}

.auth-form .form-label {
    color: var(--mate);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.auth-form .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    color: var(--mate);
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.auth-form .form-check-label {
    color: var(--mate);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.btn-auth-submit {
    background: var(--black);
    color: var(--gold);
    padding: 0.9rem;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 0.5rem;
}

.btn-auth-submit:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.auth-toggle {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

.auth-toggle a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.auth-toggle a:hover {
    color: var(--black);
}

.forgot-password {
    display: block;
    text-align: center;
    color: var(--gold);
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--black);
}

/* Profile Sidebar */
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #e7c547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
    margin: 0 auto 1rem;
}

.profile-card h3 {
    color: var(--mate);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.profile-card p {
    color: #999;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1rem;
}

.btn-edit-profile {
    width: 100%;
    background: var(--black);
    color: var(--gold);
    padding: 0.65rem;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-edit-profile:hover {
    background: var(--gold);
    color: var(--black);
}

/* Profile Menu */
.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--mate);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.menu-item i {
    font-size: 1.1rem;
    color: var(--gold);
}

.menu-item:hover {
    background: #f8f8f8;
    border-left-color: var(--gold);
}

.menu-item.active {
    background: #f0f0f0;
    border-left-color: var(--gold);
    color: var(--gold);
}

.menu-item.active i {
    color: var(--gold);
}

/* Profile Content */
.profile-content-section {
    display: none;
}

.profile-content-section.active {
    display: block;
}

.profile-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.profile-header h2 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

/* Stat Cards */
.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #e7c547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
}

.stat-content h4 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.stat-content p {
    color: #999;
    font-size: 0.85rem;
    margin: 0.25rem 0 0;
}

/* Order Item */
.order-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-info h4 {
    color: var(--mate);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.order-date {
    color: #999;
    font-size: 0.85rem;
    margin: 0.25rem 0 0;
}

.order-amount {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Buttons */
.btn-add-address,
.btn-save-settings {
    background: var(--black);
    color: var(--gold);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-address:hover,
.btn-save-settings:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Profile */
@media (max-width: 768px) {
    .profile-sidebar {
        order: 2;
    }

    .profile-welcome-card {
        padding: 2rem 1.5rem;
    }

    .auth-modal-content {
        padding: 2rem 1.5rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .profile-card {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .profile-title {
        font-size: 1.8rem;
    }

    .auth-modal-content {
        width: 90%;
        padding: 1.5rem;
    }

    .auth-modal-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .profile-welcome-card {
        padding: 1.5rem 1rem;
    }

    .welcome-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .profile-welcome-card h2 {
        font-size: 1.3rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .order-amount {
        align-self: flex-end;
    }
}

/* End of Profile Page Styles */

/* Profile-specific navbar to match site theme */
.profile-navbar {
    background: var(--black);
    border-bottom: 2px solid var(--gold);
    padding: 0.6rem 0;
    margin-bottom: 0;
}

.profile-navbar .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}

.profile-navbar .navbar-brand img {
    filter: none;
    margin-left: 8px;
}

.profile-navbar .nav-link {
    color: var(--white) !important;
    font-weight: 600;
}

.profile-navbar .nav-link:hover,
.profile-navbar .nav-link.active {
    color: var(--gold) !important;
}

.profile-navbar .dropdown-toggle {
    color: var(--white) !important;
}

.profile-navbar .dropdown-menu {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.profile-navbar .dropdown-item {
    color: var(--mate);
}

.profile-navbar .dropdown-item:hover {
    background: linear-gradient(
        90deg,
        rgba(212, 175, 55, 0.06),
        rgba(212, 175, 55, 0.02)
    );
}

.profile-navbar .dropdown {
    margin-right: 8px;
}

/* Address label and text colors for Addresses list */
#addressesContainer h5 {
    color: var(--gold);
}

#addressesContainer .address-text {
    color: var(--black) !important;
    text-align: left !important;
}
