/* ===================================
   NIVA1 - Main Stylesheet
   Primary Color: #FF6B00 (Orange)
   =================================== */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B00;
    --primary-hover: #E66000;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-light: #F5F5F5;
    --border-color: #E0E0E0;
    --white: #FFFFFF;
    --black: #000000;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.bg-light {
    background: var(--bg-light);
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ----- WHATSAPP FLOATING BUTTON ----- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

/* ----- HEADER ----- */
.top-bar {
    background: var(--text-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    margin-right: 20px;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* ----- NAVBAR ----- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu>li>a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--primary-color);
}

/* ----- DROPDOWN MENU ----- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* ----- NAV ICONS ----- */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.cart-icon:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ----- HERO SECTION ----- */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ----- CATEGORIES SECTION ----- */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-gray);
}

/* ----- PRODUCTS SECTION ----- */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-category {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-skeleton {
    background: var(--bg-light);
    border-radius: 10px;
    height: 450px;
    animation: skeleton-loading 1s infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* ----- NEWSLETTER ----- */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 60px 0;
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* ----- FOOTER ----- */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.contact-list i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info a {
        margin: 0 10px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 140px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 140px);
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PRODUCTS PAGES - Additional Styles
   =================================== */

/* ----- BREADCRUMB ----- */
.breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    font-size: 0.875rem;
}

.breadcrumb nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: var(--text-gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    color: var(--text-gray);
    font-size: 0.75rem;
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 600;
}

/* ----- PAGE HEADER ----- */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ----- PRODUCTS PAGE LAYOUT ----- */
.products-page {
    padding: 60px 0;
}

.page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* ----- FILTERS SIDEBAR ----- */
.filters-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-link {
    display: block;
    padding: 8px 15px;
    color: var(--text-gray);
    border-radius: 5px;
    transition: var(--transition);
}

.filter-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 20px;
}

.filter-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.filter-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ----- PRODUCTS MAIN ----- */
.products-main {
    flex: 1;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.products-count {
    font-weight: 600;
    color: var(--text-dark);
}

.filter-toggle {
    display: none;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-toggle:hover {
    background: var(--primary-hover);
}

/* ----- RESPONSIVE PRODUCTS PAGE ----- */
@media (max-width: 1024px) {
    .page-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .page-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        overflow-y: auto;
        z-index: 1000;
        transition: left 0.3s ease;
        border-radius: 0;
    }

    .filters-sidebar.active {
        left: 0;
    }

    .filter-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .products-toolbar {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* ===================================
   PRODUCT DETAIL PAGE
   =================================== */

.product-detail-section {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ----- PRODUCT IMAGE ----- */
.product-detail-image {
    position: sticky;
    top: 100px;
}

.product-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ----- PRODUCT INFO ----- */
.product-detail-info {
    padding: 20px 0;
}

.product-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.product-category-badge,
.product-subcategory-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
}

.product-category-badge {
    background: var(--primary-color);
    color: var(--white);
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-divider {
    height: 1px;
    background: var(--border-color);
    margin: 30px 0;
}

.product-description h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-description p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ----- PRODUCT OPTIONS ----- */
.product-options {
    margin-bottom: 30px;
}

.product-options h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.size-options,
.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.color-btn {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.color-btn:hover,
.color-btn.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* ----- QUANTITY SELECTOR ----- */
.product-quantity h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

#quantity {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ----- PRODUCT ACTIONS ----- */
.product-actions {
    margin-bottom: 40px;
}

.btn-large {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ----- PRODUCT INFO LIST ----- */
.product-info-list {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-light);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

/* ----- SKELETON LOADERS ----- */
.detail-skeleton {
    background: var(--bg-light);
    border-radius: 10px;
    animation: skeleton-loading 1s infinite alternate;
}

.skeleton-image {
    height: 600px;
}

.skeleton-text {
    height: 20px;
    margin-bottom: 15px;
    background: var(--bg-light);
    border-radius: 5px;
}

/* ----- RESPONSIVE PRODUCT DETAIL ----- */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-detail-image {
        position: static;
    }

    .product-detail-title {
        font-size: 1.8rem;
    }

    .product-detail-price {
        font-size: 1.5rem;
    }
}


/* ===================================
   SHOPPING CART PAGE
   =================================== */

.cart-section {
    padding: 60px 0;
    min-height: 60vh;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

/* ----- EMPTY CART ----- */
.empty-cart {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.empty-cart p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* ----- CART ITEMS ----- */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.cart-item-image {
    width: 100px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.cart-item-variant {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: inline-block;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 5px;
    border-radius: 5px;
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-total {
    min-width: 100px;
    text-align: right;
}

.cart-item-total p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #E74C3C;
}

/* ----- CART SUMMARY ----- */
.cart-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.summary-total {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.summary-total span {
    color: var(--text-dark);
    font-weight: 700;
}

.summary-total span:last-child {
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

/* ----- RESPONSIVE CART ----- */
@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .cart-item-image {
        width: 80px;
        height: 100px;
    }

    .cart-item-quantity,
    .cart-item-total {
        grid-column: 2;
    }

    .cart-item-remove {
        grid-column: 2;
        justify-self: end;
    }

    .cart-item-total {
        text-align: left;
    }
}

/* ===================================
   CHECKOUT PAGE
   =================================== */

.checkout-section {
    padding: 60px 0;
    min-height: 60vh;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

/* ----- CHECKOUT FORM ----- */
.checkout-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.checkout-form h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* ----- CHECKOUT SUMMARY ----- */
.checkout-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* ----- ORDER ITEMS ----- */
.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 25px;
    padding-right: 5px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-light);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 75px;
    overflow: hidden;
    border-radius: 5px;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.order-item-meta {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.order-item-quantity {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 5px;
}

.order-item-price {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

/* ----- ORDER TOTALS ----- */
.order-totals {
    margin-bottom: 25px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.order-total-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.order-divider {
    height: 1px;
    background: var(--border-color);
    margin: 15px 0;
}

.order-total-final {
    font-size: 1.3rem;
    margin-bottom: 0;
    margin-top: 15px;
}

.order-total-final span {
    color: var(--text-dark);
    font-weight: 700;
}

.order-total-final span:last-child {
    color: var(--primary-color);
}

/* ----- PAYMENT METHOD ----- */
.payment-method {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.payment-method h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-option i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.payment-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 10px;
    padding-left: 30px;
}

.checkout-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 20px;
}

.checkout-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ----- SUCCESS MODAL ----- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.modal-icon.success {
    background: #D4EDDA;
    color: #28A745;
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.order-number {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 25px 0;
}

.order-number strong {
    color: var(--primary-color);
}

.modal-actions {
    margin-top: 30px;
}

/* ----- RESPONSIVE CHECKOUT ----- */
@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-form {
        padding: 25px;
    }

    .checkout-form h2 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        padding: 20px;
    }

    .modal-content {
        padding: 40px 25px;
    }
}

/* ===================================
   CONTENT & POLICY PAGES
   =================================== */

.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-text {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.content-text h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.content-text h2:first-child {
    margin-top: 0;
}

.content-text h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.content-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.content-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-text ul li {
    margin-bottom: 12px;
    color: var(--text-gray);
}

.content-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.content-text a:hover {
    color: var(--primary-hover);
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.1) 100%);
    border-radius: 10px;
}

/* ----- FEATURE GRID (About Page) ----- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-gray);
    margin-bottom: 0;
}

/* ----- CONTACT PAGE ----- */
.contact-content-section {
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
}

.contact-info-box,
.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-box h2,
.contact-form-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info-box p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-light);
}

.contact-detail-item:last-child {
    border-bottom: none;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-detail-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-detail-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

.social-connect h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.social-icons-large {
    display: flex;
    gap: 15px;
}

.social-icons-large a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.social-icons-large a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

/* ----- POLICY PAGES ----- */
.policy-content {
    font-size: 1rem;
}

.policy-content strong {
    color: var(--text-dark);
}

.policy-contact {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.policy-contact h3 {
    margin-top: 0;
}

.policy-contact p {
    margin-bottom: 10px;
}

.policy-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-gray);
}

.privacy-commitment {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.1) 100%);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 40px;
}

.privacy-commitment p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* ----- RESPONSIVE CONTENT PAGES ----- */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-text {
        padding: 30px 20px;
    }

    .content-text h2 {
        font-size: 1.5rem;
    }

    .content-text h3 {
        font-size: 1.2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 25px;
    }

    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 1.5rem;
    }
}

/* ===================================
   AUTHENTICATION PAGES
   =================================== */

.auth-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.auth-header .logo {
    display: flex;
    justify-content: center;
}

.auth-header .logo img {
    height: 50px;
}

.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
}

.auth-box {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.auth-box h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.auth-form {
    margin-bottom: 30px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.auth-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.auth-form small {
    display: block;
    margin-top: 5px;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background: var(--white);
    padding: 0 15px;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.auth-links a:hover {
    color: var(--primary-color);
}

.auth-links i {
    margin-right: 5px;
}

/* ----- AUTH NAVIGATION ----- */
.auth-nav-wrapper {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.auth-login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.auth-login-btn:hover {
    background: var(--primary-hover);
}

.auth-user-menu {
    position: relative;
}

.auth-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--bg-light);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.auth-user-btn:hover {
    background: var(--border-color);
}

.auth-user-btn i:first-child {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.auth-user-btn i:last-child {
    font-size: 0.75rem;
}

.auth-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.auth-user-menu .dropdown:hover .auth-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.auth-dropdown li {
    list-style: none;
}

.auth-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.auth-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.auth-dropdown a i {
    font-size: 1rem;
}

/* ----- RESPONSIVE AUTH ----- */
@media (max-width: 768px) {
    .auth-box {
        padding: 30px 25px;
    }

    .auth-box h1 {
        font-size: 1.5rem;
    }

    .auth-login-btn span {
        display: none;
    }

    .auth-login-btn {
        padding: 8px 12px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .auth-user-btn span {
        display: none;
    }
}

/* ===================================
   GUEST CART NOTICE
   =================================== */

.guest-cart-notice {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notice-content i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.notice-content>div {
    flex: 1;
}

.notice-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.notice-content p {
    color: var(--text-gray);
    margin: 0;
}

.notice-content .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .notice-content {
        flex-direction: column;
        text-align: center;
    }

    .notice-content .btn {
        width: 100%;
    }
}

/* ===================================
   PRODUCT PRICE STYLING
   =================================== */
.product-price .original-price,
.original-price {
    text-decoration: line-through !important;
    color: #999;
    font-size: 0.9em;
    margin-left: 8px;
}

.product-price .current-price {
    color: #FF6B00;
    font-weight: 700;
    font-size: 1.2em;
}

.product-price .discount-badge {
    background: #FF0000;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    margin-left: 8px;
}

/* ===================================
   CURRENCY SELECTOR
   =================================== */
.currency-selector {
    margin-right: 15px;
}

.currency-selector select {
    background: white;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.currency-selector select:hover {
    border-color: #FF6B00;
}

.currency-selector select:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

@media (max-width: 768px) {
    .currency-selector {
        margin-right: 10px;
    }

    .currency-selector select {
        padding: 6px 8px;
        font-size: 12px;
    }
}

/* ===================================
   HERO SECTION WITH IMAGES
   =================================== */
.hero-slide {
    position: relative;
    min-height: 500px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
}

.hero-title {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===================================
   HERO SECTION WITH IMAGE SLIDER
   =================================== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: flex-end;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 40px;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
}

.hero-content {
    background: transparent;
    padding: 0;
    margin: 0;
    text-align: center;
    width: auto !important;
    max-width: none !important;
}

/* ✅ Wrapper for buttons - keeps them together */
.hero-controls {
    display: inline-flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    margin: 0 !important;
    width: auto !important;
}

/* Hide title and subtitle */
.hero-title,
.hero-subtitle {
    display: none !important;
}

/* Shop Now Button */
.hero-content .btn {
    display: inline-block !important;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    transition: all 0.3s;
    margin: 0 !important;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.5);
}

/* Arrow Buttons */
.slider-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #FF6B00;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 22px;
    color: #FF6B00;
    margin: 0 !important;
}

.slider-btn:hover {
    background: #FF6B00;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-slide .container {
        padding-bottom: 30px;
    }

    .hero-controls {
        gap: 20px !important;
    }

    .hero-content .btn {
        padding: 12px 40px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .slider-dots {
        bottom: 100px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }

    .hero-slide .container {
        padding-bottom: 20px;
    }

    .hero-controls {
        gap: 15px !important;
    }

    .hero-content .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .slider-dots {
        bottom: 85px;
    }
}

/* ===================================
   NOTIFICATION SYSTEM
   =================================== */
.notification {
    position: fixed;
    top: -200px;
    right: 20px;
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    min-width: 320px;
    max-width: 400px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.notification.show {
    top: 100px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-left: 5px solid;
}

.notification-success .notification-content {
    border-left-color: #10b981;
}

.notification-error .notification-content {
    border-left-color: #ef4444;
}

.notification-info .notification-content {
    border-left-color: #3b82f6;
}

.notification-content i {
    font-size: 24px;
    flex-shrink: 0;
}

.notification-success .notification-content i {
    color: #10b981;
}

.notification-error .notification-content i {
    color: #ef4444;
}

.notification-info .notification-content i {
    color: #3b82f6;
}

.notification-content span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    flex: 1;
}

.notification-actions {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.notification-btn {
    flex: 1;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.notification-btn:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B00 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.notification-btn i {
    font-size: 16px;
}

/* Cart Icon Animation */
.cart-icon {
    position: relative;
    transition: all 0.3s;
}

.cart-icon.bounce {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2) rotate(-5deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }

    75% {
        transform: scale(1.2) rotate(-5deg);
    }
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF0000;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px;
    transition: all 0.3s;
}

.cart-count.pulse {
    animation: pulse 0.6s ease;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
        background: #FF6B00;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }

    .notification.show {
        top: 80px;
    }

    .notification-content {
        padding: 15px;
        gap: 12px;
    }

    .notification-content i {
        font-size: 20px;
    }

    .notification-content span {
        font-size: 14px;
    }

    .notification-actions {
        padding: 0 15px 15px 15px;
        padding-top: 12px;
    }

    .notification-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}