@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #FFD700;
    /* More vibrant Gold */
    --primary-hover: #FFC000;
    --primary-dark: #FF8C00;
    --secondary: #1A1A1A;
    --accent: #D62828;
    --bg-cream: #FFFBED;
    /* Soft warm cream */
    --text-dark: #2D2D2D;
    --text-muted: #7A7A7A;
    --glass-white: rgba(255, 255, 255, 0.9);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-premium: 0 15px 45px rgba(255, 215, 0, 0.25);
    --radius-lg: 20px;
    --radius-xl: 30px;
}

body {
    font-family: "Times New Roman", Times, serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.fw-black {
    font-weight: 900;
}

.text-primary-custom {
    color: var(--primary) !important;
}

/* Navbar Redesign */
.navbar-premium {
    background: var(--primary);
    padding: 12px 0;
    transition: all 0.4s ease;
}

.navbar-premium .nav-link-custom {
    color: var(--secondary) !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 10px 20px !important;
}

.navbar-premium .nav-link-custom:hover {
    color: #fff !important;
}

.search-wrapper-premium {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 40px;
}

.search-input-premium {
    border-radius: 4px 0 0 4px !important;
    border: none !important;
    padding: 10px 20px !important;
}

.search-btn-premium {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-icon-btn {
    color: var(--secondary);
    font-size: 1.4rem;
    padding: 8px;
    transition: 0.3s;
    position: relative;
}

.navbar-icon-btn:hover {
    color: #fff;
}

.cart-badge-red {
    background: #D62828 !important;
    font-size: 0.65rem;
    padding: 4px 6px;
    position: absolute;
    top: 5px;
    right: 0;
}

/* Hero Section */
.hero-container-premium {
    position: relative;
    padding: 20px;
    margin-top: 10px;
}

.hero-banner-premium {
    border-radius: 40px;
    /* More rounded like image */
    overflow: hidden;
    height: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.hero-banner-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
}

.combo-floating-card {
    background: #fff;
    border-radius: 35px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
    border: 1px solid #f0f0f0;
}

.combo-floating-header {
    background: var(--primary);
    padding: 15px 25px;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.combo-floating-list {
    overflow-y: auto;
    padding: 15px;
    scrollbar-width: none;
    max-height: 400px;
}

.combo-floating-list::-webkit-scrollbar {
    display: none;
}

.combo-mini-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid #f5f5f5;
    transition: 0.3s;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
}

.combo-mini-item:hover {
    background: #fff9e6;
}

.combo-mini-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.combo-mini-info h6 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.combo-mini-info p {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 5px;
}

.combo-mini-price {
    color: #D62828;
    font-weight: 800;
    font-size: 0.9rem;
}

/* Section Headings */
.premium-section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.premium-section-title h2 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Sidebar Filter Styles */
.filter-section-card {
    transition: 0.3s;
}

.filter-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-item-v {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #444;
    font-weight: 700;
    transition: 0.3s;
    font-size: 0.95rem;
}

.filter-item-v i {
    font-size: 1.2rem;
    color: #888;
    transition: 0.3s;
}

.filter-item-v:hover {
    background: #fdf2d0;
    color: #000;
}

.filter-item-v:hover i {
    color: var(--primary);
}

.filter-item-v.active {
    background: var(--primary);
    color: #000;
}

.filter-item-v.active i {
    color: #000;
}

.select-premium-v {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #eee;
    font-weight: 700;
    cursor: pointer;
    background-color: #f8f9fa;
}

.select-premium-v:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.combo-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.3s;
    font-size: 1.2rem;
    color: #000;
}

.combo-scroll-btn:hover {
    background: #000;
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.combo-scroll-btn.prev {
    left: -22px;
}

.combo-scroll-btn.next {
    right: -22px;
}

@media (max-width: 991px) {
    .combo-scroll-btn {
        display: none;
    }
}

.title-line {
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    display: inline-block;
}

.floating-chatbot-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-icon-wrapper:hover {
    transform: scale(1.1) rotate(10deg);
}

.select-premium-price {
    background-color: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    appearance: auto;
}

.select-premium-price:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    background-color: #fff;
}


.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.premium-section-title p {
    color: #888;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: #ffffff;
    opacity: 0.5;
}

.carousel-indicators .active {
    background-color: var(--primary);
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    margin: 0 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0);
    /* Black icons */
}

/* Product Cards */
.product-card-premium {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
    height: 100%;
    border: none;
}

.product-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-card-img-wrapper {
    position: relative;
    padding: 15px;
}

.product-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

.product-badge-hot {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #D62828;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.7rem;
}

.product-card-body {
    padding: 0 20px 20px;
}

.product-card-title {
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.product-card-desc {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 15px;
    height: 40px;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: #D62828;
}

.product-card-actions {
    display: flex;
    gap: 10px;
}

.btn-card-action {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    background: #fff;
    color: #777;
    transition: 0.3s;
}

.btn-card-action:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

/* Filter Section */
.filter-tabs-premium {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab-item {
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: 0.3s;
}

.filter-tab-item i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #777;
}

.filter-tab-item span {
    font-weight: 800;
    font-size: 0.8rem;
}

.filter-tab-item.active {
    background: var(--primary);
    transform: translateY(-5px);
}

.filter-tab-item.active i {
    color: var(--secondary);
}

/* Footer Redesign */
.footer-premium-new {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px;
    font-family: 'Outfit', sans-serif;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary);
}

.footer-links-new li {
    margin-bottom: 15px;
}

.footer-links-new a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links-new a:hover {
    color: var(--primary);
}

.contact-info-new li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #aaa;
}

.contact-info-new i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-bottom-new {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links-new {
    display: flex;
    gap: 15px;
}

.social-btn-new {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-btn-new:hover {
    background: var(--primary);
    color: #000;
}

/* Other Utilities */
.btn-primary-premium {
    background: var(--primary);
    color: var(--secondary);
    font-weight: 800;
    border-radius: 30px;
    padding: 12px 30px;
    border: none;
    text-transform: uppercase;
}

/* Float Buttons Custom */
.float-btns-wrapper {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.4s;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px) rotate(5deg);
}

.btn-ai {
    background: var(--primary);
    color: var(--secondary);
}

.btn-support {
    background: #0084FF;
    /* Messenger-like blue */
    color: white;
}

.float-btn-label {
    position: absolute;
    right: 70px;
    background: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.float-btn:hover .float-btn-label {
    opacity: 1;
    visibility: visible;
}