﻿
/* --- CSS VARIABLES & RESET --- */
:root {
    --color-black: #0e0e0e;
    --color-dark-gray: #1a1a1a;
    --color-gold: #D4AF37; /* Metallic Gold */
    --color-gold-hover: #b59021;
    --color-white: #ffffff;
    --color-text-gray: #cccccc;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    /*for top header*/
    --gold: #d4af37; /* Classic Metallic Gold */
    --gold-light: #f3e5ab;
    --black-deep: #050505;
    --black-soft: #121212;
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.75);
    /* Metallic Gold Gradient */
    --gold-gradient: linear-gradient(135deg, #f1af0e 0%, #b8860b 100%);
    --gold-text-gradient: linear-gradient(to right, #f1af0e, #fff8dc, #f1af0e);
    --gold-flat: #f1af0e;
    /*Service variable*/
    --brand-black: #000000;
    --brand-dark-grey: #111111;
    --brand-card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --brand-input-bg: #1e1e1e;
    --brand-border: #333333;
    --text-main: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #f4f4f4;
    color: var(--color-black);
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}
.btn-premium {
    background-color: var(--gold);
    color: black !important;
    border: 1px solid var(--gold);
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .btn-premium:hover {
        background-color: transparent;
        color: var(--gold) !important;
        box-shadow: 0 0 20px rgba(241, 175, 14, 0.2);
    }

/*Top Header*/
.top-bar {
    background-color: var(--black-deep);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.85rem;
    padding: 10px 0;
    letter-spacing: 0.5px;
}

    .top-bar a {
        color: #aaa;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .top-bar a:hover {
            color: var(--gold);
        }

.divider {
    border-right: 1px solid #333;
    height: 15px;
    margin: 0 15px;
    display: inline-block;
    vertical-align: middle;
}
/*Top header end*/


/*Menu*/
/* --- NAVBAR --- */
.text-gold {
    color: var(--color-gold) !important;
}

.bg-gold {
    background-color: var(--color-gold) !important;
}

/* --- BUTTONS --- */
.btn-gold {
    background-color: var(--color-gold);
    color: var(--brand-black);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--color-gold);
    transition: all 0.3s ease;
    border-radius: 0; /* Sharp edges for luxury feel */
}

    .btn-gold:hover {
        background-color: transparent;
        color: var(--color-gold);
    }

.navbar {
    background-color: var(--black-deep);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .navbar.sticky-top {
        box-shadow: 0 4px 15px rgba(241, 175, 14, 0.1);
    }

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-gold) !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

    .nav-link:hover, .nav-link.active {
        color: var(--color-gold) !important;
    }

/* Navbar Icons */
.nav-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: 0.3s;
}

    .nav-icons a:hover {
        color: var(--color-gold);
    }

/* Mobile Toggler Animation */
.navbar-toggler {
    border: none;
    color: var(--color-gold);
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* Mobile Menu Slide */
@@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: #0f0f0f;
        padding: 60px 20px;
        transition: right 0.4s ease-in-out;
        z-index: 999;
        border-left: 1px solid var(--color-gold);
    }

        .navbar-collapse.show {
            right: 0;
        }

    .nav-icons {
        margin-top: 20px;
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--color-gold);
        cursor: pointer;
    }
}

/*Menu End*/

/* --- 4. Hero Carousel --- */
.carousel-item {
    height: 100vh; /* Full screen impact */
    min-height: 600px;
    background-size: cover;
    background-position: center;
}
/* Gradient Overlay for text readability */
.overlay-gradient {
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
}

.hero-content {
    padding-left: 5%;
    max-width: 800px;
}

/* Gold Accent Line */
.accent-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
}

.hero-desc {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

/* Premium Buttons */
.btn-bespoke {
    background: linear-gradient(45deg, var(--gold), #b89628);
    color: #000;
    padding: 14px 40px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

    .btn-bespoke:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        color: #000;
    }

.btn-outline-bespoke {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 13px 35px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 15px;
    background: transparent;
    transition: 0.4s;
}

    .btn-outline-bespoke:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #fff;
    }

/* Mobile adjustments for text */
@@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .carousel-item {
        height: 85vh;
    }

    .btn-outline-bespoke {
        display: none;
    }
    /* Simpler CTA on mobile */
    /* Glass card for text readability on mobile */
    .hero-content {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        padding: 30px;
        border: 1px solid rgba(255,255,255,0.1);
        margin: 0 15px;
    }
}

/* Animations */
@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- 5. ABOUT (MAGAZINE STYLE) --- */
.about-images {
    position: relative;
    padding: 40px;
}

.img-back {
    width: 70%;
    margin-left: 30%;
    border-radius: 4px;
    filter: brightness(0.6);
}

.img-front {
    position: absolute;
    width: 60%;
    bottom: 0;
    left: 0;
    border: 5px solid var(--bg-black);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
    z-index: 2;
}

.exp-badge {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    z-index: 3;
    box-shadow: 0 0 30px rgba(241, 175, 14, 0.4);
    animation: float 3s ease-in-out infinite;
}

@@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}
/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

/* Gold Foil Text Effect */
.text-gold-gradient {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.text-gold {
    color: var(--gold-flat) !important;
}

.ls-2 {
    letter-spacing: 2px;
}

/* --- 2. PREMIUM BUTTONS --- */
.btn-luxury {
    position: relative;
    background: transparent;
    color: var(--gold-flat);
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--gold-flat);
    overflow: hidden;
    transition: 0.4s;
    z-index: 1;
}

    .btn-luxury::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: var(--gold-gradient);
        transition: 0.4s;
        z-index: -1;
    }

    .btn-luxury:hover {
        color: #000;
        border-color: transparent;
    }

        .btn-luxury:hover::before {
            width: 100%;
        }


/* --- FOOTER STYLES --- */
footer {
    background-color: var(--black-deep);
    color: var(--color-text-gray);
    padding: 70px 5% 20px;
    border-top: 1px solid gold;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

    /* Gold underline under headings */
    .footer-col h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 40px;
        height: 2px;
        background-color: var(--color-gold);
    }

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-gray);
    font-size: 0.9rem;
}

    .footer-links a:hover {
        color: var(--color-gold);
        padding-left: 8px; /* Slide effect */
    }

/* Newsletter Input */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .newsletter-form input {
        padding: 12px;
        background: rgba(255,255,255,0.05);
        border: 1px solid #333;
        color: var(--color-white);
        font-family: var(--font-body);
    }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--color-gold);
        }

    .newsletter-form button {
        background-color: var(--color-gold);
        border: none;
        color: var(--color-black);
        padding: 12px;
        font-weight: 600;
        cursor: pointer;
        text-transform: uppercase;
        transition: 0.3s;
    }

        .newsletter-form button:hover {
            background-color: var(--color-white);
        }

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

    .social-icons a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.05);
        color: var(--color-white);
        border-radius: 50%;
        margin-right: 10px;
        font-size: 1.1rem;
    }

        .social-icons a:hover {
            background: var(--color-gold);
            color: var(--color-black);
            transform: translateY(-3px);
        }

/* Copyright Bar */
.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

    .copyright span {
        color: var(--color-gold);
    }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--color-black);
        width: 100%;
        height: calc(100vh - 80px); /* Full height minus header */
        text-align: center;
        transition: 0.3s;
        padding-top: 40px;
    }

        .nav-menu.active {
            left: 0;
        }

    .nav-item {
        /* margin: 16px 0;*/
    }

    .hamburger {
        display: block;
    }
    /* Hide the CTA button in header on mobile if space is tight,
               or move it inside the nav-menu list */
    header .cta-btn {
        display: none;
    }
    /* Add CTA style inside menu for mobile */
    .mobile-cta {
        display: block;
        color: var(--color-gold);
        margin-top: 20px;
    }
}



/* --- Section Styling --- */
.services-section {
    background-color: var(--brand-black);
    position: relative;
}

/* Decorative line behind title */
.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    color: var(--gold-flat);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-light);
    font-weight: 700;
}

    .section-title span {
        color: var(--gold-flat);
        font-style: italic;
    }

/* --- Card Styling --- */
.service-card {
    background-color: var(--brand-card-bg);
    border: 1px solid #333;
    border-radius: 4px; /* Sharp corners fit the suit aesthetic */
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    /* Gold Line on top of card (Hidden initially or small) */
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background-color: var(--gold-flat);
        transition: width 0.4s ease;
    }

    /* Hover Effects */
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.8);
        border-color: #444;
    }

        .service-card:hover::before {
            width: 100%;
        }

/* Icon Container */
.icon-box {
    font-size: 3.5rem;
    color: var(--gold-flat);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1);
}

/* Card Text */
.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

    .service-list li {
        display: inline-block;
        margin: 0 5px;
    }

        .service-list li::after {
            content: "•";
            color: var(--gold-flat);
            margin-left: 10px;
        }

        .service-list li:last-child::after {
            content: "";
        }

/* --- Button Styling --- */
.btn-bespoke {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--gold-flat);
    color: var(--gold-flat);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    font-weight: 500;
}

    .btn-bespoke:hover {
        background-color: var(--gold-flat);
        color: var(--brand-black);
        box-shadow: 0 0 15px rgba(241, 175, 14, 0.4);
    }

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .service-card {
        margin-bottom: 20px;
    }
}

/*Category wise product list*/

/* --- Section Styling --- */
.collection-section {
    padding: 80px 0;
    background-color: var(--brand-black);
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-light);
    font-weight: 700;
}

    .section-title span {
        color: var(--gold-flat);
        font-style: italic;
    }

/* --- Filter Bar Styling --- */
.filter-container {
    margin-bottom: 40px;
    padding: 20px;
    background: var(--brand-dark);
    border: 1px solid #333;
    border-radius: 8px;
}

.filter-label {
    color: var(--gold-flat);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.filter-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #444;
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .filter-btn:hover {
        border-color: var(--gold-flat);
        color: var(--text-light);
    }

    .filter-btn.active {
        background-color: var(--gold-flat);
        border-color: var(--gold-flat);
        color: var(--brand-black);
        font-weight: 600;
    }

/* --- Product Card Styling --- */
.product-card {
    background-color: var(--brand-card);
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        border-color: #444;
    }

/* Image Area */
/*.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;*/ /* Fixed height for consistency */
/*}*/

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: #111;
}

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.1);
}

/* Badge */
.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0,0,0,0.8);
    color: var(--gold-flat);
    padding: 5px 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--gold-flat);
    border-radius: 2px;
    z-index: 2;
}

/* Content Area */
.card-body {
    padding: 25px;
    text-align: left;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 42px; /* Alignment for 2 lines */
}

.price-tag {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

    .price-tag span {
        color: var(--gold-flat);
    }

/* Button */
.btn-book {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid var(--gold-flat);
    color: var(--gold-flat);
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

    .btn-book:hover {
        background-color: var(--gold-flat);
        color: var(--brand-black);
        box-shadow: 0 0 15px rgba(241, 175, 14, 0.4);
    }

/* Animation class for filtering */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .filter-container {
        text-align: center;
    }

    .filter-btn-group {
        justify-content: center;
    }
}
/*Category wise product list end*/

/*Book Appointment Modal*/
/* --- Modal Customization --- */
.modal-content {
    background-color: var(--brand-black);
    border: 1px solid #333;
    color: var(--text-light);
    border-radius: 0; /* Sharp edges for luxury feel */
    box-shadow: 0 0 40px rgba(0,0,0,0.9);
}

.modal-header {
    border-bottom: 1px solid #333;
    padding: 25px 30px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold-flat);
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
}

.btn-close-white {
    filter: invert(1);
}

.modal-body {
    padding: 30px;
}

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
    border-left: 3px solid var(--gold-flat);
    padding-left: 10px;
}

/* --- Date Selection (Horizontal Scroll/Grid) --- */
.date-scroller {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 25px;
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .date-scroller::-webkit-scrollbar {
        display: none;
    }

.date-card {
    min-width: 80px;
    background-color: var(--brand-card);
    border: 1px solid #333;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .date-card:hover {
        border-color: var(--gold-flat);
        transform: translateY(-2px);
    }

    .date-card.selected {
        background-color: var(--gold-flat);
        color: var(--brand-black);
        border-color: var(--gold-flat);
        font-weight: 600;
    }

.day-name {
    font-size: 0.8rem;
    display: block;
    margin-bottom: 5px;
}

.day-number {
    font-size: 1.2rem;
    display: block;
}

/* --- Time Selection (Grid) --- */
.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

.time-slot {
    background-color: transparent;
    border: 1px solid #444;
    color: var(--text-muted);
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

    .time-slot:hover {
        border-color: var(--gold-flat);
        color: var(--text-light);
    }

    .time-slot.selected {
        background-color: var(--gold-flat);
        color: var(--brand-black);
        border-color: var(--gold-flat);
        font-weight: 600;
    }

/* --- Address Section --- */
.address-container {
    background-color: var(--brand-card);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #333;
    min-height: 150px;
}

/* Table Styling */
.custom-table {
    width: 100%;
    color: var(--text-light);
    border-collapse: separate;
    border-spacing: 0 10px;
}

    .custom-table tr {
        background-color: #252525;
        transition: 0.3s;
    }

        .custom-table tr:hover {
            background-color: #333;
            transform: scale(1.01);
        }

    .custom-table td {
        padding: 15px;
        border: none;
        vertical-align: middle;
    }

        .custom-table td:first-child {
            border-left: 3px solid transparent;
        }

    .custom-table tr.selected td:first-child {
        border-left: 3px solid var(--gold-flat);
    }

/* Empty State */
.empty-address-state {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
}

.add-address-icon {
    font-size: 2.5rem;
    color: var(--gold-flat);
    margin-bottom: 15px;
    opacity: 0.8;
}

/* --- Buttons --- */
.btn-select-addr {
    border: 1px solid var(--gold-flat);
    color: var(--gold-flat);
    background: transparent;
    font-size: 0.75rem;
    padding: 5px 15px;
    text-transform: uppercase;
}

    .btn-select-addr:hover, .btn-select-addr.active {
        background: var(--gold-flat);
        color: var(--brand-black);
    }

.modal-footer {
    border-top: 1px solid #333;
    padding: 20px 30px;
    justify-content: space-between;
}

.btn-submit {
    background-color: var(--gold-flat);
    color: var(--brand-black);
    font-weight: 600;
    padding: 10px 40px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-submit:hover {
        background-color: #d49a0c;
        box-shadow: 0 0 15px rgba(241, 175, 14, 0.4);
    }

.btn-cancel {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

    .btn-cancel:hover {
        color: var(--text-light);
    }

/* Helper for demo toggling */
.debug-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    opacity: 0.5;
}
/*End Book Appointment modal*/




/* Start Address modal*/

/* =========================================
   Modal Branding (Dark Theme)
   ========================================= */
#addAddressModal .modal-content {
    background-color: var(--brand-black); /* Deep black background */
    border: 1px solid var(--brand-border);
    color: var(--text-main);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.1); /* Subtle gold glow */
}

#addAddressModal .modal-header {
    border-bottom: 1px solid var(--brand-border);
    padding-bottom: 20px;
}

#addAddressModal .modal-footer {
    border-top: 1px solid var(--brand-border);
}

/* Close button - Make it white/light */
#addAddressModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

/* =========================================
   Typography (Matching "Book Your Appointment")
   ========================================= */
#addAddressModal .modal-title {
    font-family: "Playfair Display", serif; /* Ensure you have this font imported */
    font-size: 1.8rem;
    color: var(--gold-flat);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

    /* "Add New" normal, "Address" italicized to match "Appointment" style if desired */
    #addAddressModal .modal-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 2px;
        background-color: var(--gold-flat);
        margin: 10px auto 0; /* Centered underline */
    }

#addAddressModal .form-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* =========================================
   Form Inputs (Dark Mode & Gold Focus)
   ========================================= */
/* Remove default bootstrap background and styling */
#addAddressModal .input-group-text {
    background-color: var(--brand-input-bg);
    border: 1px solid var(--brand-border);
    border-right: none; /* Merge with input */
    color: var(--gold-flat); /* Gold Icon */
}

#addAddressModal .form-control,
#addAddressModal .form-select {
    background-color: var(--brand-input-bg);
    border: 1px solid var(--brand-border);
    color: var(--text-main);
    font-size: 0.95rem;
    padding: 10px 15px;
}

/* For input groups, remove left border of input to merge with icon */
#addAddressModal .input-group .form-control {
    border-left: none;
}

/* Focus States */
#addAddressModal .form-control:focus,
#addAddressModal .form-select:focus {
    background-color: var(--brand-input-bg);
    color: var(--text-main);
    border-color: var(--gold-flat); /* Turn Gold on focus */
    box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.15); /* Gold glow */
}

#addAddressModal .input-group:focus-within .input-group-text {
    border-color: var(--gold-flat);
}

/* Placeholder Text Color */
#addAddressModal .form-control::placeholder {
    color: #555;
    font-size: 0.9rem;
}

/* Select Dropdown Arrow Correction for Dark Mode */
#addAddressModal .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23daa520' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* =========================================
   Buttons
   ========================================= */
.btn-primary-custom {
    background-color: var(--gold-flat);
    border: 1px solid var(--gold-flat);
    color: var(--brand-black); /* Black text on Gold button */
    font-weight: 600;
    padding: 10px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .btn-primary-custom:hover {
        background-color: var(--gold-hover);
        border-color: var(--gold-hover);
        color: #fff;
    }

.btn-secondary-custom {
    background-color: transparent;
    border: 1px solid #555;
    color: var(--text-muted);
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

    .btn-secondary-custom:hover {
        border-color: var(--gold-flat);
        color: var(--gold-flat);
        background-color: transparent;
    }

/* =========================================
   Checkbox
   ========================================= */
#addAddressModal .form-check-input {
    background-color: var(--brand-input-bg);
    border-color: var(--brand-border);
}

    #addAddressModal .form-check-input:checked {
        background-color: var(--gold-flat);
        border-color: var(--gold-flat);
    }
/* End Address Modal */


/*Product css*/

/*Product css*/
