:root {
    /* ===== Brand Colors ===== */
    --primary-color: #335c67;
    --secondary-color: #4b2e39;
    --tertiary-color: #e8d8df;
    --wine-color: #7a4e5c;
    --pink: #e4ccda;

    --accent-gold: #c6a75e;
    --soft-background: #efe6ea;

    /* ===== Text Colors ===== */
    --text-dark: #111111;
    --text-light: #ffffff;
    --text-muted: #6e6e6e;

    /* ===== Button Colors ===== */
    --btn-primary-bg: #000000;
    --btn-primary-text: #ffffff;
    --btn-primary-hover: #c6a75e;

    --btn-secondary-bg: #bfa5af;
    --btn-secondary-text: #000000;
    --btn-secondary-hover: #000000;

    /* ===== Border & Divider ===== */
    --border-light: #e5dadf;
    --border-dark: #1a1a1a;

    /* ===== Shadows ===== */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* ===== Transition ===== */
    --transition-smooth: all 0.3s ease-in-out;

    --card-bg: rgba(255, 255, 255, 0.5);
    --backdrop-blur: blur(12px);
    --shadow-strong: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    --transition: 0.3s ease-in-out;
    --radius-card: 20px;
    --radius-btn: 16px;
    --radius-input: 14px;

    --sidebar-width: 280px;
    --sidebar-collapsed: 80px;
    --header-height: 80px;
    --card-radius: 18px;
    --transition: 0.3s ease-in-out;
    --shadow-sm: 0 8px 20px -6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 12px 30px -10px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-light: rgba(138, 111, 122, 0.15);
    --shadow-card: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 30px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 0.935rem;
    font-style: normal;
}

/* Navbar Styling */
.navbar-luxury {
    background: var(--pink);
    transition: all 0.4s ease;
}

.navbar-luxury .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    position: relative;
    transition: 0.3s ease;
}

/* Gold underline hover effect */
.navbar-luxury .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: var(--accent-gold);
    transition: 0.3s ease;
}

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

.navbar-luxury .nav-link:hover::after {
    width: 100%;
}

/* Brand Styling */
.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff !important;
}

.navbar-brand span {
    color: var(--accent-gold);
}

/* CTA Button */
.btn-luxury {
    background: var(--accent-gold);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 20px;
    transition: 0.3s ease;
}

.btn-luxury:hover {
    background: #fff;
    color: #000;
}

/* Mobile Toggle Icon */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.logo {
    height: 80px;
}

.bg-soft {
    background: var(--soft-background);
}

.bg-secondary {
    background: var(--secondary-color) !important;
}

.bg-pink {
    background: var(--pink) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}
/* Soft Minimalism Login Form - Complete & Self-Contained */

/* Popup Background */
.raya-popup {
    border-radius: 20px !important;
    background: #efe6ea !important; /* soft background */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    padding: 2rem !important;
}

/* Title */
.raya-title {
    font-family: "Playfair Display", serif !important;
    color: #4b2e39 !important; /* secondary color */
    font-size: 24px !important;
    letter-spacing: 1px;
}

/* Confirm Button */
.raya-confirm-btn {
    background: var(--secondary-color) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 10px 30px !important;
    transition: all 0.3s ease-in-out !important;
    border: 0;
}

.raya-confirm-btn:hover {
    background: #c6a75e !important; /* gold */
    color: #111 !important;
}

.raya-login-btn {
    background: var(--primary-color) !important;
    color: #000 !important;
    border-radius: 30px !important;
    padding: 10px 30px !important;
    transition: all 0.3s ease-in-out !important;
    border: 0;
    margin-left: 0.5rem;
}

.raya-login-btn:hover {
    background: #c6a75e !important; /* gold */
    color: #111 !important;
}
.list-btn .btn {
    display: flex;
    align-items: center;
}
/* Grid System - Complete 1-12 */
.form-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.col-span-1 {
    grid-column: span 1;
}
.col-span-2 {
    grid-column: span 2;
}
.col-span-3 {
    grid-column: span 3;
}
.col-span-4 {
    grid-column: span 4;
}
.col-span-5 {
    grid-column: span 5;
}
.col-span-6 {
    grid-column: span 6;
}
.col-span-7 {
    grid-column: span 7;
}
.col-span-8 {
    grid-column: span 8;
}
.col-span-9 {
    grid-column: span 9;
}
.col-span-10 {
    grid-column: span 10;
}
.col-span-11 {
    grid-column: span 11;
}
.col-span-12 {
    grid-column: span 12;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .col-span-5,
    .col-span-6,
    .col-span-7,
    .col-span-8,
    .col-span-9,
    .col-span-10,
    .col-span-11 {
        grid-column: span 12;
    }
    .col-span-1,
    .col-span-2,
    .col-span-3,
    .col-span-4 {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .col-span-1,
    .col-span-2,
    .col-span-3,
    .col-span-4,
    .col-span-5,
    .col-span-6,
    .col-span-7,
    .col-span-8,
    .col-span-9,
    .col-span-10,
    .col-span-11,
    .col-span-12 {
        grid-column: span 12;
    }
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 45px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    display: flex;
    align-items: center;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

.select2-dropdown {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.select2-results__option {
    padding: 10px 15px;
}

.select2-results__option--highlighted {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: #fff;
}
input[readonly],
textarea[readonly] {
    background: #ececec;
    color: #6c757d;
    pointer-events: none;
}

input[readonly]:focus,
textarea[readonly]:focus {
    outline: none;
    box-shadow: none;
}

.hero-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url("../images/banner.jpg");
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.btn-gold {
    background: #c6a75e;
    color: #000;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-gold:hover {
    background: #fff;
    color: #000;
}

.section-title {
    font-weight: 700;
    letter-spacing: 2px;
}

.product-card {
    border: none;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img {
    height: 300px;
    object-fit: cover;
}

.category-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.category-card img {
    transition: 0.4s;
    object-fit: cover;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: none;
    z-index: 9999;

    background: #000000; /* black */
    color: #ffffff;
    border-radius: 50%;
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);

    transition: all 0.3s ease;
}

/* Hover Effect (Luxury Gold) */
.back-to-top:hover {
    background: #c6a75e; /* gold */
    color: #000;
    transform: translateY(-5px);
}

/* Show button when active */
.back-to-top.show {
    display: flex;
    opacity: 1;
}

/* Smooth fade */
.back-to-top {
    opacity: 0;
}

.back-to-top.show {
    opacity: 1;
}

/* Footer Links */
.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--primary-color); /* gold */
    padding-left: 5px;
}

/* Footer Headings */
footer h5,
footer h6 {
    letter-spacing: 1px;
}

/* Divider */
hr {
    opacity: 0.2;
}
