@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0a0a0a;
    --primary-light: #1a1a1a;
    --accent: #c0392b;
    --accent-hover: #a93226;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --mid-gray: #e0e0e0;
    --text-dark: #111111;
    --text-muted: #777777;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #c0392b;
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-sm: 4px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

input, textarea, select {
    font-family: var(--font-body);
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Flash Messages */
.flash-messages {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 100;
}
.flash-messages .alert:first-child {
    margin-top: 20px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    position: relative;
    font-size: 14px;
    z-index: 100;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeaa7; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.alert-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
    line-height: 1;
    padding: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192, 57, 43, 0.3);
}
.btn-secondary {
    background: var(--primary);
    color: var(--white);
}
.btn-secondary:hover {
    background: var(--primary-light);
}
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--light-gray);
}
.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}
.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}
.btn-full {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left span {
    letter-spacing: 0.5px;
    font-weight: 500;
}
.top-bar-right {
    display: flex;
    gap: 25px;
}
.top-bar-right a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}
.top-bar-right a:hover {
    color: var(--white);
}
.top-bar-right i {
    margin-right: 5px;
    color: var(--accent);
}

/* Navbar */
.navbar {
    background: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo img {
    height: 65px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--white);
}
.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.nav-icon {
    color: var(--white);
    font-size: 18px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
}
.nav-icon:hover {
    color: var(--accent);
}
.nav-icon .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Bar */
.search-bar {
    background: var(--primary-light);
    padding: 20px 0;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.search-bar.active {
    display: block;
    animation: slideDown 0.3s ease;
}
.search-bar form {
    display: flex;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}
.search-bar input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.search-bar input::placeholder {
    color: rgba(255,255,255,0.5);
}
.search-bar button {
    padding: 14px 30px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.search-bar button:hover {
    background: var(--accent-hover);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px 0;
    display: none;
    z-index: 1001;
    margin-top: 10px;
}
.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease;
}
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}
.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--accent);
}
.dropdown-menu .divider {
    height: 1px;
    background: var(--mid-gray);
    margin: 8px 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    flex-shrink: 0;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--primary);
    z-index: 2000;
    padding: 60px 30px 30px;
    transition: left 0.3s ease;
    overflow-y: auto;
}
.mobile-menu.active {
    left: 0;
}
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}
.mobile-menu a {
    display: block;
    padding: 15px 0;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mobile-menu a:hover {
    color: var(--accent);
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
}
.mobile-overlay.active {
    display: block;
}

/* Hero Slider */
/* Category Grid */
.categories-section {
    padding: 80px 0;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.category-card {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--white);
    border: 2px solid var(--mid-gray);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}
.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}
.category-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--light-gray);
    transition: var(--transition);
}
.category-card:hover img {
    border-color: var(--accent);
    transform: scale(1.05);
}
.category-card .card-brand-logo img {
    border: none !important;
    border-radius: 0;
    margin: 0;
}
.category-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}
.category-card span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Products */
.products-section {
    padding: 80px 0;
    background: var(--light-gray);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.product-image {
    position: relative;
    height: 220px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image img {
    max-height: 200px;
    object-fit: contain;
    transition: var(--transition);
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-badge {
    display: none;
}
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    color: var(--text-muted);
}
.wishlist-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.wishlist-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.product-info {
    padding: 18px;
}
.product-info h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-info .category {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.price {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}
.old-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.add-to-cart {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}
.add-to-cart:hover {
    background: var(--accent-hover);
}

/* Why Choose Us */
.why-section {
    padding: 80px 0;
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}
.why-item {
    padding: 30px;
}
.why-item i {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 20px;
}
.why-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.why-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Promo Banner */
.promo-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}
.promo-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.promo-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 15px;
}
.promo-content p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 25px;
}
.promo-image img {
    max-height: 300px;
    object-fit: contain;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
.testimonial-stars {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 14px;
}
.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}
.testimonial-card h4 {
    font-size: 15px;
    font-weight: 600;
}
.testimonial-card span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Card Brand Logo Badge */
.card-brand-logo {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    line-height: 0;
}
.card-brand-logo img {
    height: 40px;
    width: auto;
    display: block;
}
.category-card .card-brand-logo {
    top: 0px;
    left: 10px;
}
.category-card .card-brand-logo img {
    height: 32px;
}
.product-card .card-brand-logo {
    top: 10px;
    left: 10px;
}
.product-card .card-brand-logo img {
    height: 38px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}
.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}
.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.footer-logo {
    margin-bottom: 15px;
    display: block;
}
.footer-logo img {
    height: 35px;
    width: auto;
}
.footer-tagline {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}
.newsletter-form button {
    padding: 12px 20px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    transition: var(--transition);
}
.newsletter-form button:hover {
    background: var(--accent-hover);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.payment-icons {
    display: flex;
    gap: 10px;
}
.payment-icons i {
    font-size: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
}
.payment-icons i:hover {
    opacity: 1;
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--primary);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}
.breadcrumb-section h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 10px;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.breadcrumb a:hover {
    color: var(--accent);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination a,
.pagination span {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--mid-gray);
    transition: var(--transition);
}
.pagination a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.pagination .current {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Star Rating Input */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    font-size: 24px;
}
.star-rating input {
    display: none;
}
.star-rating label {
    color: var(--mid-gray);
    cursor: pointer;
    transition: var(--transition);
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #f39c12;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--mid-gray);
    margin-bottom: 25px;
}
.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.tab-btn:hover {
    color: var(--text-dark);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Mini Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 3000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}
.cart-sidebar.active {
    right: 0;
}
.cart-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--mid-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-sidebar-header h3 {
    font-size: 18px;
    font-weight: 600;
}
.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}
.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--mid-gray);
    background: var(--light-gray);
}
.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--mid-gray);
}
.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.cart-item-details {
    flex: 1;
}
.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}
.cart-item-price {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}
.qty-btn, .sidebar-qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--mid-gray);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition);
}
.qty-btn:hover, .sidebar-qty-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.cart-remove {
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}
.cart-remove:hover {
    color: var(--danger);
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}
.cart-total-row.total {
    font-size: 18px;
    font-weight: 600;
    border-top: 1px solid var(--mid-gray);
    padding-top: 15px;
    margin-top: 10px;
}
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2999;
    display: none;
}
.cart-overlay.active {
    display: block;
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 1002;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}
.search-dropdown.active {
    display: block;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}
.search-result-item:hover {
    background: var(--light-gray);
}
.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.search-result-item .name {
    font-size: 14px;
    font-weight: 500;
}
.search-result-item .price {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-left: auto;
}

/* Order Status */
.status-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-processing { background: #cce5ff; color: #004085; }
.status-shipped { background: #e2d4f0; color: #5a189a; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-active { background: #d4edda; color: #155724; }
.status-inactive { background: #f8d7da; color: #721c24; }

/* Tracking Stepper */
.tracking-stepper {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}
.tracking-stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--mid-gray);
    z-index: 0;
}
.tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}
.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--white);
    transition: var(--transition);
}
.tracking-step.active .step-icon {
    background: var(--accent);
}
.tracking-step.completed .step-icon {
    background: var(--success);
}
.step-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}
.tracking-step.active .step-label {
    color: var(--text-dark);
    font-weight: 600;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid var(--mid-gray);
}
.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}
.faq-question i {
    transition: var(--transition);
    color: var(--accent);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Cart Table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}
.cart-table th {
    background: var(--light-gray);
    padding: 15px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--mid-gray);
    vertical-align: middle;
}
.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.cart-qty-input {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-sm);
}

/* Order Summary Box */
.order-summary {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 25px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--mid-gray);
    font-size: 15px;
}
.summary-row.total {
    border-bottom: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    padding-top: 15px;
    margin-top: 5px;
    border-top: 2px solid var(--text-dark);
}

/* Admin Styles */
.admin-body {
    display: flex;
    min-height: 100vh;
    background: var(--light-gray);
}
.admin-sidebar {
    width: 260px;
    background: var(--primary-light);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: var(--transition);
}
.admin-sidebar.collapsed {
    width: 70px;
}
.admin-sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-sidebar-header a {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}
.admin-sidebar-header span {
    font-size: 11px;
    color: var(--accent);
    display: block;
    margin-top: 5px;
}
.admin-menu {
    list-style: none;
    padding: 15px 0;
}
.admin-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}
.admin-menu li a:hover,
.admin-menu li a.active {
    background: rgba(192, 57, 43, 0.2);
    color: var(--white);
    border-left: 3px solid var(--accent);
}
.admin-menu li a i {
    width: 22px;
    text-align: center;
}
.admin-main {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
}
.admin-topbar {
    background: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.admin-topbar h1 {
    font-size: 20px;
    font-weight: 600;
}
.admin-content {
    padding: 30px;
}
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}
.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.stat-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}
.stat-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Admin Table */
.admin-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.admin-table table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th {
    padding: 15px;
    text-align: left;
    background: var(--light-gray);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
}
.admin-table tr:hover {
    background: #f9f9f9;
}
.table-actions {
    display: flex;
    gap: 8px;
}
.table-actions a,
.table-actions button {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-edit {
    background: #e3f2fd;
    color: #1565c0;
}
.btn-edit:hover {
    background: #1565c0;
    color: var(--white);
}
.btn-delete {
    background: #ffebee;
    color: #c62828;
}
.btn-delete:hover {
    background: #c62828;
    color: var(--white);
}
.btn-view {
    background: #e8f5e9;
    color: #2e7d32;
}
.btn-view:hover {
    background: #2e7d32;
    color: var(--white);
}

/* Admin toggle button */
.admin-toggle-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.admin-toggle-btn:hover {
    background: var(--light-gray);
}

/* Admin Forms */
.admin-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 800px;
}
.admin-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.image-upload {
    border: 2px dashed var(--mid-gray);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.image-upload:hover {
    border-color: var(--accent);
}
.image-upload i {
    font-size: 36px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.image-preview {
    max-width: 200px;
    margin: 10px auto 0;
    border-radius: var(--radius);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--mid-gray);
    transition: 0.3s;
    border-radius: 26px;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    transition: 0.3s;
    border-radius: 50%;
}
.toggle-switch input:checked + .toggle-slider {
    background: var(--accent);
}
.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: end;
}
.filter-bar input,
.filter-bar select {
    padding: 10px 15px;
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius);
    font-size: 14px;
}

/* Login Page */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}
.login-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    text-align: center;
}
.login-box h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 5px;
}
.login-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
}
.login-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}
.empty-state i {
    font-size: 60px;
    color: var(--mid-gray);
    margin-bottom: 20px;
}
.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.empty-state p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInUp 0.3s ease;
    max-width: 400px;
    line-height: 1.4;
}
.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid var(--danger); }
.toast-warning { border-left: 4px solid var(--warning); }
.toast-info { border-left: 4px solid #3498db; }

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideOutDown {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}

/* Wishlist Button - Inline variant (non-absolute) */
.wishlist-btn-inline {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    border: 1px solid var(--mid-gray);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 18px;
    flex-shrink: 0;
}
.wishlist-btn-inline:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.wishlist-btn-inline.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Grid Layout Helpers */
.product-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.about-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.account-dashboard-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

/* Section spacing */
.section-padding {
    padding: 60px 0;
}

/* Card */ 
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Coupon message */
.coupon-message {
    margin-top: 10px;
    font-size: 14px;
}
.coupon-success { color: var(--success); }
.coupon-error { color: var(--danger); }

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
    background: var(--mid-gray);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Price Filter */
.price-range {
    margin: 20px 0;
}
.price-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.price-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--mid-gray);
    outline: none;
}
.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
}

/* ========== REDESIGNED LAYOUT STYLES ========== */

/* Announcement Bar */
.announcement-bar {
    background: #111;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 20px;
    text-transform: uppercase;
    width: 100%;
}

/* Header -- Dark Navbar */
.header {
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: transform 0.35s ease;
}
.header.header-hide {
    transform: translateY(-100%);
}
.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.header-row-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header-row-1 .logo img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s;
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}
.header-utilities {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-utilities .nav-icon {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}
.header-utilities .nav-icon:hover {
    color: var(--accent);
}
.cart-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    position: relative;
}
.cart-toggle-wrap i {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}
.cart-toggle-wrap:hover i {
    color: var(--accent);
}
.cart-price-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}
.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(192,57,43,0.4);
}

/* Row 2 */
.header-row-2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}
.categories-dropdown {
    position: relative;
    flex-shrink: 0;
}
.categories-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    background: rgba(255,255,255,0.06);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.categories-btn:hover {
    border-color: var(--accent);
    background: rgba(192,57,43,0.15);
    color: var(--accent);
}
.categories-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
}
.categories-dropdown:hover .categories-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.categories-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.categories-menu a:hover {
    background: rgba(192,57,43,0.12);
    color: var(--accent);
    padding-left: 26px;
}
.categories-menu a i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}
.categories-menu a:hover i {
    color: var(--accent);
}
.header-search {
    flex: 1;
    position: relative;
}
.header-search input {
    width: 100%;
    padding: 9px 44px 9px 16px;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 25px;
    font-size: 13px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
    transition: all 0.3s;
}
.header-search input:focus {
    border-color: var(--accent);
    outline: none;
    background: rgba(255,255,255,0.1);
}
.header-search input::placeholder {
    color: rgba(255,255,255,0.35);
}
.header-search button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    padding: 10px 14px;
    cursor: pointer;
    transition: color 0.3s;
}
.header-search button:hover {
    color: var(--accent);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}
.header-action-btn:hover {
    border-color: var(--accent);
    background: rgba(192,57,43,0.12);
    color: var(--accent);
}

/* Hero Section - Two Column Layout */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.hero-grid {
    display: flex;
    height: 100%;
}
.hero-carousel-col {
    flex: 0 0 65%;
    max-width: 65%;
    position: relative;
    overflow: hidden;
}
.hero-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
}
.hero-slide-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 0 80px 50px;
}
.hero-slide-content {
    max-width: 420px;
}
.hero-slide-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-slide-desc {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 22px;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.btn-hero {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-hero:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.4);
}
.hero-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.hero-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}
.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    pointer-events: none;
}
.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 15px;
    pointer-events: all;
    backdrop-filter: blur(4px);
}
.hero-arrow:hover {
    background: var(--accent);
}

/* Right Column - Side Blocks */
.hero-side-col {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.hero-side-block {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}
.hero-side-block-top {
    background-size: cover;
    background-position: center;
    background-color: #111;
}
.hero-side-icon {
    position: absolute;
    top: 20px;
    left: 25px;
    width: 36px;
    height: 36px;
}
.hero-side-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
}
.hero-side-body {
    position: relative;
    z-index: 2;
}
.hero-side-heading {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.hero-side-desc {
    font-size: 13px;
    color: #999;
    margin-bottom: 18px;
    line-height: 1.5;
}
.btn-hero-side {
    padding: 12px 30px;
    font-size: 11px;
}
.hero-side-block-bottom {
    background-size: cover;
    background-position: center;
    background-color: #222;
}
.hero-side-block-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
}
.hero-side-block-bottom .hero-side-heading {
    font-size: 24px;
}
.hero-side-block-bottom .hero-side-desc {
    margin-bottom: 0;
}

/* Categories Section - Redesigned */
.categories-section {
    padding: 70px 0 60px;
    background: #fff;
}
.categories-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.categories-section .section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.category-card {
    text-align: center;
    padding: 25px 15px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}
.category-card .card-brand-logo {
    position: static;
    line-height: 0;
}
.category-card .card-brand-logo img {
    height: 38px;
    width: auto;
    opacity: 1;
}
.category-card .cat-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0;
    border-radius: 0;
    border: none !important;
    transition: transform 0.3s;
}
.category-card:hover .cat-image {
    transform: scale(1.05);
}
.category-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Why Choose Us - Two Column */
.why-choose-section {
    padding: 70px 0;
    background: #f9f9f9;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.why-choose-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}
.why-choose-left h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
}
.why-choose-left .why-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 20px 0 25px;
}
.why-choose-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.feature-box {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.feature-box:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #ddd;
}
.feature-box i {
    font-size: 30px;
    color: var(--accent);
    margin-bottom: 12px;
}
.feature-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}
.feature-box p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* Products Section - Redesigned */
.products-section {
    padding: 70px 0;
    background: #fff;
}
.products-section.gray-bg {
    background: #f9f9f9;
}
.products-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.products-section .section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.products-section .section-header p {
    color: #888;
    font-size: 15px;
    margin-top: 6px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: #ddd;
}
.product-card .card-brand-logo {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    line-height: 0;
}
.product-card .card-brand-logo img {
    height: 34px;
    width: auto;
    opacity: 1;
}
.product-image {
    position: relative;
    height: 200px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 32px;
}
.product-image img {
    max-height: 170px;
    object-fit: contain;
    transition: transform 0.3s;
}
.product-card:hover .product-image img {
    transform: scale(1.06);
}
.wishlist-btn {
    position: absolute;
    top: 40px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    color: #999;
    font-size: 13px;
}
.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.product-badge {
    display: none;
}
.product-info {
    padding: 14px 16px 18px;
}
.product-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222;
}
.product-info .category {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.price {
    font-size: 17px;
    font-weight: 700;
    color: var(--accent);
}
.old-price {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
}
.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.add-to-cart:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(192,57,43,0.3);
}
.add-to-cart:active {
    transform: translateY(0);
}

/* Brand Statement Banner */
.brand-banner {
    background: #0a0a0a;
    padding: 85px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.brand-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.brand-banner h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    position: relative;
}
.brand-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.9;
    position: relative;
}

/* Our Quality Section */
.quality-section {
    padding: 70px 0;
    background: #fff;
}
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.quality-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 18px;
}
.quality-left h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
}
.quality-left p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.quality-right {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.quality-right img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}
.quality-right .quality-logo-overlay {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    padding: 12px 28px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
}
.quality-right .quality-logo-overlay img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Get In Touch Section */
.contact-section {
    padding: 70px 0;
    background: #f9f9f9;
}
.contact-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.contact-section .section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}
.contact-form-wrap .form-group {
    margin-bottom: 18px;
}
.contact-form-wrap .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s;
}
.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
    outline: none;
}
.contact-form-wrap .form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form-wrap .btn {
    padding: 14px 40px;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.contact-form-wrap .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,57,43,0.3);
}

/* Newsletter Banner */
.newsletter-banner {
    background: #222;
    padding: 60px 0;
}
.newsletter-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.newsletter-left h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.newsletter-left p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.newsletter-form-inline {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}
.newsletter-form-inline input {
    padding: 14px 20px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    width: 280px;
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.newsletter-form-inline input::placeholder {
    color: rgba(255,255,255,0.5);
}
.newsletter-form-inline input:focus {
    outline: none;
    background: rgba(255,255,255,0.18);
}
.newsletter-form-inline button {
    padding: 14px 28px;
    border: none;
    border-radius: 0 6px 6px 0;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}
.newsletter-form-inline button:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}

/* Footer - Redesigned 5-Column */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}
.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.8;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: var(--accent);
}
.footer-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 14px;
}
.footer-brand-desc {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 18px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--accent);
    color: #fff;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}
.footer-contact-item i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.payment-icons i {
    font-size: 26px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}
.payment-icons i:hover {
    color: rgba(255,255,255,0.9);
}

/* Override old navbar styles - hide them since we use new header */
.navbar {
    display: none;
}
.top-bar {
    display: none;
}
.search-bar {
    display: none !important;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    font-size: 22px;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.3s;
}
.mobile-menu-btn:hover {
    color: var(--accent);
}
