:root {
    --navy: #1a2a6c;
    --navy-light: #2c3e8f;
    --gold: #c4a747;
    --gold-light: #d4b856;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Top Bar - Responsive */
.top-bar {
    background: var(--navy);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar .left-info,
.top-bar .right-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar .left-info i,
.top-bar .right-info i {
    margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .top-bar {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .top-bar .left-info,
    .top-bar .right-info {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar .left-info,
    .top-bar .right-info {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .top-bar .left-info span,
    .top-bar .right-info span {
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .top-bar .left-info,
    .top-bar .right-info {
        gap: 10px;
        flex-direction: column;
    }
    
    .top-bar .left-info i,
    .top-bar .right-info i {
        margin-right: 3px;
        font-size: 10px;
    }
}

/* Optional: Add animation for mobile menu */
@media (max-width: 768px) {
    .top-bar .left-info span,
    .top-bar .right-info span {
        animation: fadeInDown 0.5s ease;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly for mobile */
@media (max-width: 768px) {
    .top-bar a {
        padding: 4px 8px;
        display: inline-block;
    }
    
    .top-bar a:active {
        opacity: 0.7;
    }
}

/* Navigation */
.navbar {
    background: white !important;
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: var(--navy) !important;
}

.navbar-brand span {
    color: var(--gold);
}

.nav-link {
    color: var(--navy) !important;
    font-weight: 500;
    transition: var(--transition);
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--gold) !important;
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.slide-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.slider-btn {
    background: var(--gold);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    display: inline-block;
}

.slider-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    color: white;
}

.slider-control {
    position: absolute;
    bottom: 20px;
    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(--gold);
    width: 30px;
    border-radius: 10px;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.section-title p {
    color: var(--gray);
    font-size: 18px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 64px;
    color: var(--navy);
    margin-bottom: 20px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    color: var(--gold);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 10px;
}

/* Featured Products */
.featured-section {
    padding: 80px 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.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(--gold);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.product-price {
    font-size: 22px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 15px;
}

.product-price old {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.btn-add-cart {
    background: var(--navy);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    width: 100%;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 0;
    color: white;
}

.newsletter-form input {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form button {
    background: var(--gold);
    border: none;
    padding: 12px 30px;
    border-radius: 0 50px 50px 0;
    color: white;
    font-weight: bold;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

/* Footer */
.footer {
    background: #0a0e27;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer p {
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #b0b0b0;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--gray-light);
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumb-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.breadcrumb-nav li {
    margin-right: 10px;
    color: var(--gray);
}

.breadcrumb-nav li a {
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav li a:hover {
    color: var(--gold);
}

.breadcrumb-nav li:not(:last-child):after {
    content: '/';
    margin-left: 10px;
    color: var(--gray);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in {
    animation: slideInLeft 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-slider {
        height: 60vh;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}