/* =========================================
   GLOBAL RESET & VARIABLES - VIBRANT THEME
   Based on Nickshito 280ml Condiment Label
========================================= */

:root {
    /* Brand Colors from Label */
    --tomato-red: #E63946;
    --golden-yellow: #F4A261;
    --pepper-green: #2A9D8F;
    --onion-purple: #9B5DE5;
    --garlic-cream: #FFF3E0;
    --ginger-orange: #F97316;
    --shrimp-pink: #FFB5A7;
    --herring-blue: #1D3557;
    
    /* UI Colors - Maintained from original */
    --primary: #E63946;
    --secondary: #FFF8F0;
    --accent: #F4A261;
    --dark: #1D3557;
    --text-dark: #2D3748;
    --text-muted: #718096;
    --success: #2A9D8F;
    --warning: #F4A261;
    --danger: #E63946;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--secondary);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* =========================================
LINKS
========================================= */

a {
    text-decoration: none;
    transition: 0.3s ease;
    color: inherit;
}

a:hover {
    color: var(--accent);
}

/* =========================================
IMAGES
========================================= */

img {
    max-width: 100%;
    display: block;
}

/* =========================================
CONTAINERS
========================================= */

.container-custom {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* =========================================
SECTION TITLES
========================================= */

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    background: linear-gradient(135deg, var(--tomato-red), var(--pepper-green), var(--onion-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
}

/* =========================================
BUTTONS
========================================= */

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--ginger-orange), var(--tomato-red));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 57, 70, 0.3);
}

.btn-gold {
    background: var(--accent);
    color: #111;
}

.btn-gold:hover {
    background: #c39c25;
    color: #111;
}

/* =========================================
NAVBAR
========================================= */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 0;
    border-bottom: 3px solid var(--tomato-red);
}

.navbar.scrolled {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar-brand img {
    height: 35px;
    width: auto;
    display: block;
}

.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 45px;
    height: 45px;
    border: none;
}

.navbar-toggler i {
    font-size: 1.8rem;
}

.navbar-nav {
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-link {
    padding: 8px 0;
    margin-left: 20px;
    font-weight: 600;
    color: var(--herring-blue);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--tomato-red), var(--accent));
    transition: 0.4s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--tomato-red);
}

.site-logo{
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

/* Dropdown */
.dropdown-menu {
    min-width: 220px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 12px 15px;
    border-radius: 12px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: rgba(233, 57, 70, 0.1);
}

/* Icon buttons */
.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.icon-btn:hover {
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
    transform: translateY(-3px);
}

/* Cart button */
.cart-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
}

.cart-btn:hover {
    background: linear-gradient(135deg, var(--ginger-orange), var(--tomato-red));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 57, 70, 0.4);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--golden-yellow);
    color: var(--herring-blue);
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right actions wrapper */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================
HERO SECTION - Colorful but same layout
========================================= */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 100%);
    overflow: hidden;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange), var(--pepper-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    color: var(--herring-blue);
    margin-bottom: 30px;
    max-width: 550px;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* =========================================
PRODUCT CARD - Keeping original sizes/hover
========================================= */

.product-card {
    position: relative;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(233, 57, 70, 0.12);
}

.product-card img {
    transition: 0.5s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--herring-blue);
}

.product-price {
    font-weight: 700;
    color: var(--tomato-red);
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 10px;
}

/* =========================================
BADGES - Colorful
========================================= */

.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* =========================================
TOP BAR
========================================= */

.top-bar {
    background: linear-gradient(90deg, var(--herring-blue), var(--pepper-green));
    color: rgb(240, 240, 240);
    font-size: 0.9rem;
    padding: 10px 0;
}

.top-bar a {
    color: white;
    margin-left: 20px;
}

.top-bar a:hover {
    color: var(--golden-yellow);
}

/* =========================================
CATEGORIES SECTION
========================================= */

.categories-section {
    background: white;
}

/* CATEGORY CARD */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 450px;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* OVERLAY - Colorful gradient */
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(29, 53, 87, 0.9),
        rgba(233, 57, 70, 0.3),
        rgba(0,0,0,0.1)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    transition: 0.4s ease;
}

.category-overlay h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

/* BUTTON */
.category-btn {
    width: fit-content;
    background: linear-gradient(135deg, white, var(--garlic-cream));
    color: var(--herring-blue);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.category-btn:hover {
    background: linear-gradient(135deg, var(--golden-yellow), var(--ginger-orange));
    color: var(--herring-blue);
    transform: translateX(5px);
}

/* HOVER EFFECTS - Preserved */
.category-card:hover img {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: linear-gradient(
        to top,
        rgba(29, 53, 87, 0.95),
        rgba(233, 57, 70, 0.4),
        rgba(0,0,0,0.15)
    );
}

/* =========================================
FEATURED PRODUCTS
========================================= */

.featured-products {
    background: #f8f9fa;
}

/* PRODUCT IMAGE */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.product-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* WISHLIST - Colorful */
.wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--tomato-red);
}

.wishlist-btn:hover {
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
    transform: translateY(-3px);
}

/* PRODUCT CATEGORY */
.product-category {
    display: inline-block;
    color: var(--pepper-green);
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(42, 157, 143, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* PRODUCT RATING */
.product-rating {
    color: var(--golden-yellow);
    margin-bottom: 15px;
}

/* PRICE */
.product-price-wrapper {
    margin-bottom: 20px;
}

/* ADD TO CART BUTTON - Colorful */
.add-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--pepper-green), var(--herring-blue));
    color: white;
    padding: 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.add-cart-btn:hover {
    background: linear-gradient(135deg, var(--herring-blue), var(--pepper-green));
    color: white;
    transform: translateY(-2px);
}

/* =========================================
FLASH SALE SECTION - Colorful but same layout
========================================= */

.flash-sale-section {
    background: white;
}

/* WRAPPER - Vibrant gradient */
.flash-sale-wrapper {
    background: linear-gradient(135deg, var(--herring-blue), var(--pepper-green));
    border-radius: 40px;
    padding: 70px;
    overflow: hidden;
    position: relative;
}

/* CONTENT */
.flash-sale-content {
    color: white;
}

.flash-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--golden-yellow), var(--ginger-orange));
    color: var(--herring-blue);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
}

.flash-sale-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.flash-sale-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 500px;
}

/* COUNTDOWN */
.countdown-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-box {
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-box h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--golden-yellow);
}

.countdown-box span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* IMAGE */
.flash-sale-image {
    position: relative;
}

.flash-sale-image img {
    border-radius: 30px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* =========================================
VIDEO SHOWCASE SECTION
========================================= */

.video-showcase-section {
    background: #f8f9fa;
}

/* CONTENT */
.video-content h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--tomato-red), var(--pepper-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.video-content p {
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.video-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* VIDEO CARD */
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    cursor: pointer;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.video-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: 0.5s;
}

.video-card:hover img {
    transform: scale(1.05);
}

/* PLAY BUTTON - Colorful */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.video-play-btn:hover {
    background: linear-gradient(135deg, var(--ginger-orange), var(--tomato-red));
    transform: translate(-50%, -50%) scale(1.1);
}

/* MODAL */
.video-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

/* =========================================
TESTIMONIALS SECTION
========================================= */

.testimonials-section {
    background: white;
}

/* CARD */
.testimonial-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    height: 100%;
    border: 1px solid rgba(233, 57, 70, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(233, 57, 70, 0.12);
    border-color: rgba(233, 57, 70, 0.2);
}

/* HEADER */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--golden-yellow);
}

/* NAME */
.testimonial-header h5 {
    margin: 0;
    font-weight: 700;
    color: var(--herring-blue);
}

.testimonial-header span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* RATING */
.testimonial-rating {
    color: var(--golden-yellow);
    margin-bottom: 15px;
}

/* TEXT */
.testimonial-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =========================================
NEWSLETTER SECTION
========================================= */

.newsletter-section {
    background: linear-gradient(135deg, var(--herring-blue), var(--pepper-green));
}

.newsletter-box {
    background: transparent;
    color: white;
    padding: 60px;
    border-radius: 40px;
}

.newsletter-box h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.newsletter-box p {
    color: rgba(255,255,255,0.9);
    max-width: 500px;
}

/* FORM */
.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    height: 55px;
    border: none;
    border-radius: 50px;
    padding: 0 20px;
    outline: none;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--golden-yellow), var(--ginger-orange));
    border: none;
    padding: 0 30px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--herring-blue);
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--ginger-orange), var(--golden-yellow));
    transform: translateY(-2px);
}

/* =========================================
FOOTER - Colorful
========================================= */

.footer {
    background: linear-gradient(135deg, var(--herring-blue), #1a2a4a);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 20px;
}

.footer h3 {
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--golden-yellow), var(--ginger-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer h5 {
    margin-bottom: 25px;
    color: var(--golden-yellow);
}

.footer p {
    color: rgba(255,255,255,0.7);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255,255,255,0.6);
    transition: 0.3s;
}

.footer ul li a:hover {
    color: var(--golden-yellow);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

/* =========================================
FORM ELEMENTS
========================================= */

textarea.form-control {
    height: auto;
    padding-top: 15px;
}

/* =========================================
UTILITY CLASSES
========================================= */

.text-muted-custom {
    color: var(--text-muted);
}

.rounded-xl {
    border-radius: 25px;
}

.shadow-soft {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* =========================================
SHOP PAGE - Colorful sidebar
========================================= */

.shop-hero {
    background: linear-gradient(135deg, #f8f9fa, #FFF3E0);
    text-align: center;
}

.shop-header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--tomato-red), var(--pepper-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* SIDEBAR */
.shop-sidebar {
    background: white;
    padding: 25px;
    border-radius: 25px;
    border: 1px solid rgba(233, 57, 70, 0.1);
}

.filter-box {
    margin-bottom: 30px;
}

.filter-box h5 {
    margin-bottom: 15px;
    color: var(--herring-blue);
    position: relative;
    padding-bottom: 8px;
}

.filter-box h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--tomato-red), var(--golden-yellow));
    border-radius: 3px;
}

/* FILTER LIST */
.filter-list {
    list-style: none;
    padding: 0;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    color: var(--text-dark);
    transition: 0.3s;
}

.filter-list a:hover {
    color: var(--tomato-red);
    padding-left: 5px;
}

/* PRICE LABEL */
.price-label {
    margin-top: 10px;
    color: var(--text-muted);
}

/* PAGINATION - Colorful */
.shop-pagination {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.shop-pagination a {
    padding: 10px 15px;
    border-radius: 10px;
    background: #f5f5f5;
    color: #111;
    transition: 0.3s;
}

.shop-pagination a:hover {
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
}

.shop-pagination a.active {
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
}

/* =========================================
PRODUCT DETAIL PAGE - Preserved
========================================= */

.product-image-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 30px;
}

.main-product-img {
    width: 100%;
    border-radius: 20px;
}

/* PRODUCT INFO */
.product-detail-info h1 {
    font-size: 2.8rem;
    margin: 15px 0;
    color: var(--herring-blue);
}

.product-description {
    color: var(--text-muted);
    margin: 20px 0;
    line-height: 1.8;
}

/* QUANTITY */
.quantity-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.quantity-box button {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 12px;
    transition: 0.3s;
}

.quantity-box button:hover {
    background: var(--tomato-red);
    color: white;
}

.quantity-box input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    height: 40px;
    border-radius: 12px;
}

/* ACTION BUTTONS */
.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

/* META */
.product-meta {
    margin-top: 20px;
    color: var(--text-muted);
}

/* TABS */
.product-tabs {
    background: white;
    padding: 30px;
    border-radius: 25px;
}

.nav-tabs .nav-link {
    color: #111;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
    border-radius: 10px;
    border: none;
}

/* =========================================
CART PAGE
========================================= */

.cart-table-wrapper {
    background: white;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.cart-table img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 10px;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-table input {
    width: 70px;
    padding: 5px;
    border-radius: 10px;
}

/* SUMMARY */
.cart-summary {
    margin-top: 30px;
    background: linear-gradient(135deg, #f8f9fa, #FFF3E0);
    padding: 25px;
    border-radius: 25px;
    text-align: right;
}

.cart-summary h4 {
    margin-bottom: 15px;
    color: var(--herring-blue);
}

/* =========================================
CHECKOUT PAGE
========================================= */

.checkout-form,
.order-summary {
    background: white;
    padding: 30px;
    border-radius: 25px;
}

/* ORDER ITEMS */
.order-items {
    list-style: none;
    padding: 0;
}

.order-items li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* PAYMENT */
.payment-method {
    margin-top: 20px;
}

/* =========================================
CUSTOMER DASHBOARD POLISH
========================================= */

.table-hover tbody tr:hover {
    background: #f8f9fa;
}

.card-box h3 {
    font-weight: 700;
}

.dashboard-wrapper a.btn {
    border-radius: 10px;
}

/* =========================================
WISHLIST SYSTEM
========================================= */

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--tomato-red);
}

.wishlist-icon:hover {
    transform: scale(1.1);
    background: var(--tomato-red);
    color: white;
}

/* =========================================
ADMIN ANALYTICS DASHBOARD
========================================= */

.card {
    border-radius: 18px;
    border: none;
}

h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

canvas {
    max-height: 300px;
}

/* =========================================
INVENTORY SYSTEM UI - Colorful status
========================================= */

.stock-low {
    color: var(--ginger-orange);
    font-weight: 600;
}

.stock-ok {
    color: var(--pepper-green);
    font-weight: 600;
}

.stock-out {
    color: var(--tomato-red);
    font-weight: 700;
}

/* =========================================
REVIEWS SYSTEM
========================================= */

.review-box {
    background: #f9fafb;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.review-box strong {
    display: block;
    margin-bottom: 5px;
    color: var(--herring-blue);
}

.review-box p {
    margin: 0;
    color: #555;
}

.review-box:hover {
    background: #f3f4f6;
}

/* =========================================
LIVE SEARCH UI
========================================= */

#searchBox, #categoryFilter {
    border-radius: 12px;
    padding: 12px;
}

/* =========================================
ADMIN LOGIN ONLY
========================================= */

.admin-login-page {
    background: linear-gradient(135deg, var(--herring-blue), var(--pepper-green));
    font-family: Arial;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.admin-login-page form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 350px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.admin-login-page input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.admin-login-page button {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
    border-radius: 12px;
    font-weight: bold;
}

.admin-login-page button:hover {
    background: linear-gradient(135deg, var(--ginger-orange), var(--tomato-red));
}

/* =========================================
FLOATING SOCIAL BAR - Colorful preserved
========================================= */

.floating-socials {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ICON BUTTON */
.social-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

/* HOVER */
.social-float:hover {
    transform: translateX(5px) scale(1.08);
    color: white;
}

/* COLORS - Brighter */
.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.instagram {
    background: linear-gradient(135deg, #E4405F, #F77737);
}

.facebook {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.tiktok {
    background: linear-gradient(135deg, #111111, #25F4EE);
}

/* =========================================
ABOUT PAGE - Colorful
========================================= */

.about-hero {
    background: linear-gradient(135deg, #f8f9fa, #FFF3E0);
}

.about-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--tomato-red), var(--ginger-orange));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--tomato-red), var(--pepper-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-founder-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* STATS */
.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-stat-box {
    background: white;
    padding: 25px;
    border-radius: 25px;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(233, 57, 70, 0.1);
}

.about-stat-box h3 {
    color: var(--tomato-red);
    margin-bottom: 10px;
}

/* STORY */
.story-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.story-box p {
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* MISSION - Colorful */
.mission-box {
    background: linear-gradient(135deg, var(--herring-blue), var(--pepper-green));
    padding: 70px;
    border-radius: 40px;
}

.mission-card {
    color: white;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 20px;
}

.mission-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.9;
}

/* WHY US - Colorful */
.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    height: 100%;
    border: 1px solid rgba(233, 57, 70, 0.1);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 57, 70, 0.3);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-card h4 {
    margin-bottom: 15px;
    color: var(--herring-blue);
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* =========================================
RESPONSIVE - COMPLETELY PRESERVED
========================================= */

@media (max-width: 991px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }
    .hero-content p {
        margin: auto auto 30px;
    }
    .navbar-brand img {
        height: 32px;
    }
    .navbar-nav {
        background: #f5f5f5;
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
        align-items: flex-start;
        width: 100%;
    }
    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .flash-sale-wrapper {
        padding: 40px;
    }
    .flash-sale-content {
        margin-bottom: 50px;
        text-align: center;
    }
    .countdown-wrapper {
        justify-content: center;
    }
    .flash-sale-content p {
        margin: auto auto 35px;
    }
    .video-content {
        text-align: center;
    }
    .video-content p {
        margin: auto auto 35px;
    }
    .about-content {
        text-align: center;
    }
    .about-content h1 {
        font-size: 3rem;
    }
    .about-stats {
        justify-content: center;
    }
    .mission-box {
        padding: 40px;
    }

    .site-logo{
        height: 55px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .section-title h2 {
        font-size: 2.2rem;
    }
    .navbar-brand img {
        height: 30px;
    }
    .icon-btn {
        width: 40px;
        height: 40px;
    }
    .cart-btn {
        width: 45px;
        height: 45px;
    }
    .category-card {
        height: 350px;
    }
    .product-image img {
        height: 260px;
    }
    .flash-sale-content h2 {
        font-size: 2.5rem;
    }
    .countdown-box {
        width: 85px;
        height: 85px;
    }
    .countdown-box h3 {
        font-size: 1.5rem;
    }
    .video-content h2 {
        font-size: 2.5rem;
    }
    .video-card img {
        height: 350px;
    }
    .video-play-btn {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    .about-content h1 {
        font-size: 2.4rem;
    }
    .about-founder-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .floating-socials {
        left: 10px;
        gap: 10px;
    }
    .social-float {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
}