:root {
    --color-bg: #ffffff;
    --color-bg-secondary: #f4f4f4;
    --color-bg-card: #ffffff;
    --color-bg-hover: #f8f8f8;
    --color-accent: #e07a5f;
    --color-accent-secondary: #3498db;
    --color-text: #222529;
    --color-text-muted: #777777;
    --color-border: #e7e7e7;
    --color-nav-bg: #222529;
    --color-nav-text: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Open Sans', sans-serif;
    --transition: all 0.25s ease;
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
    --shadow-md: 0 3px 10px rgba(0,0,0,0.06);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 15px rgba(224, 122, 95, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Header & Nav */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: none;
    box-shadow: none;
}

.header-top {
    background: #f4f4f4;
    border-bottom: 1px solid #e7e7e7;
    padding: 8px 0;
    font-size: 0.72rem;
    font-weight: 400;
    color: #777;
    font-family: 'Open Sans', sans-serif;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-links a {
    color: #777;
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
    font-size: 0.72rem;
}

.header-top-links a:hover {
    color: var(--color-accent);
}

.header-main {
    padding: 25px 0;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-main {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #222529;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #777;
    text-transform: uppercase;
    margin-top: 2px;
}

.header-search {
    flex: 1;
    max-width: 520px;
}

.header-search form {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    overflow: hidden;
    height: 44px;
}

.header-search input {
    flex: 1;
    background: none;
    border: none;
    color: #222529;
    outline: none;
    padding: 0 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    height: 100%;
}

.header-search input::placeholder {
    color: #bbb;
}

.header-search .search-select {
    background: none;
    border: none;
    border-left: 1px solid #e7e7e7;
    padding: 0 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: #777;
    outline: none;
    cursor: pointer;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}

.header-search button {
    background: none;
    border: none;
    border-left: 1px solid #e7e7e7;
    color: #777;
    width: 44px;
    height: 100%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.header-search button:hover {
    color: var(--color-accent);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-contact-icon {
    font-size: 1.6rem;
    color: #222529;
}

.header-contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-contact-text span {
    font-size: 0.65rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.header-contact-text strong {
    font-size: 1.05rem;
    color: #222529;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-action-btn {
    position: relative;
    color: #222529;
    font-size: 1.3rem;
    text-decoration: none;
    background: none;
    border: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 4px;
}

.header-action-btn:hover {
    color: var(--color-accent);
}

.header-action-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    padding: 0 3px;
}

.cart-btn {
    position: relative;
    color: #222529;
    font-size: 1.3rem;
    text-decoration: none;
    background: none;
    border: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 4px;
}

.cart-btn:hover {
    color: var(--color-accent);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    padding: 0 3px;
}

/* Dark Nav Bar */
.main-nav {
    background: #222529;
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 14px 22px;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Open Sans', sans-serif;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-accent);
    background: none;
    border-bottom: none;
}

.admin-link {
    color: #3498db;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-top: 3px solid var(--color-accent);
    border-radius: 0 0 4px 4px;
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: var(--transition);
    list-style: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: #777;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}

.dropdown-menu a:hover {
    background: #f8f8f8;
    color: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #222529;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
    flex-shrink: 0;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    position: relative;
    background: #f4f4f4;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    padding: 60px 40px 60px 0;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #777;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.hero-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 25px;
}

.hero-price-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #222529;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #222529;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
}

.hero-price sup {
    font-size: 1.4rem;
    font-weight: 700;
    top: -0.8em;
}

.hero-btn {
    display: inline-block;
    background: #222529;
    color: #fff;
    padding: 14px 36px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
}

.hero-btn:hover {
    background: var(--color-accent);
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image img {
    max-height: 480px;
    object-fit: contain;
    object-position: bottom center;
}

.hero-particles {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.25);
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #222529;
    border: 2px solid #e7e7e7;
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: white;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-transform: none;
    margin-bottom: 10px;
    color: #222529;
}

.section-subtitle {
    color: #999;
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.9rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.category-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.category-overlay p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #ddd;
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: var(--color-accent);
    color: white;
}

.badge-new {
    background: #27ae60;
    color: white;
}

.product-actions {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-actions button,
.product-actions .btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e7e7e7;
    color: #222529;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    text-decoration: none;
}

.product-actions button:hover,
.product-actions .btn-icon:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: #999;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-title {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
    color: #222529;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.product-title:hover {
    color: var(--color-accent);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222529;
}

.price-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

/* Features Bar */
.features-bar {
    background: #fff;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 0;
}

.features-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    flex: 1;
    justify-content: center;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border: 2px solid #222529;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #222529;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #222529;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Open Sans', sans-serif;
}

.feature-divider {
    width: 1px;
    height: 40px;
    background: #e7e7e7;
}

@media (max-width: 768px) {
    .features-grid {
        flex-wrap: wrap;
    }
    .feature-divider {
        display: none;
    }
    .feature-item {
        flex: 1 1 50%;
        justify-content: flex-start;
        padding: 15px;
    }
}
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.feature-content p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Banner Section */
.banner-section {
    padding: 0 0 80px;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.banner-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.banner-card:hover img {
    transform: scale(1.05);
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.banner-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.banner-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    max-width: 300px;
}

/* Footer */
.main-footer {
    background: #222529;
    color: #a8a8a8;
}

.footer-top {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo-main {
    color: #fff;
}

.footer-brand p {
    color: #a8a8a8;
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

.footer-brand .read-more {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.82rem;
    font-family: 'Open Sans', sans-serif;
}

.footer-links h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
}

.footer-links li strong {
    color: #fff;
    font-weight: 600;
}

.footer-links a {
    color: #a8a8a8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.78rem;
    font-family: 'Open Sans', sans-serif;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-main {
    color: #fff;
}

.footer-brand p {
    color: #a8a8a8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8a8a8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.social-links a:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a8a8a8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 3px;
}

.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.footer-newsletter p {
    color: #a8a8a8;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 4px 0 0 4px;
    padding: 12px 15px;
    color: #fff;
    font-family: inherit;
    outline: none;
    font-size: 0.85rem;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    background: var(--color-accent);
    border: none;
    color: white;
    padding: 0 18px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background: #c0392b;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.8rem;
}

.payment-methods {
    display: flex;
    gap: 12px;
    font-size: 1.4rem;
    color: #888;
}

/* Page Header */
.page-header {
    background: #f4f4f4;
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid #e7e7e7;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    text-transform: none;
    margin-bottom: 10px;
    color: #222529;
}

.breadcrumbs {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

/* Catalog Layout */
.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

.sidebar {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    color: var(--color-text-muted);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-list a:hover, .filter-list a.active {
    background: var(--color-bg-hover);
    color: var(--color-text);
}

.filter-list .count {
    background: var(--color-bg);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 15px;
}

.catalog-results {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0;
}

.product-gallery {
    position: relative;
}

.product-gallery-main {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding-top: 10px;
}

.product-info-detail .product-category {
    margin-bottom: 10px;
}

.product-info-detail h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: none;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #222529;
}

.product-price-large {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.product-price-large .price {
    font-size: 2rem;
}

.product-price-large .price-old {
    font-size: 1.2rem;
}

.product-description {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f8f8;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #555;
}

.meta-item i {
    color: var(--color-accent);
}

.product-options {
    margin-bottom: 30px;
}

.option-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.option-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option-item {
    padding: 10px 20px;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    background: #fff;
    color: #222529;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.option-item:hover, .option-item.active {
    border-color: var(--color-accent);
    background: rgba(231, 76, 60, 0.05);
    color: var(--color-accent);
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    overflow: hidden;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    border: none;
    color: #222529;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-control button:hover {
    background: var(--color-accent);
    color: white;
}

.quantity-control input {
    width: 50px;
    height: 40px;
    background: #fff;
    border: none;
    border-left: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    color: #222529;
    text-align: center;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    outline: none;
}

/* Cart Styles */
.cart-section {
    padding: 40px 0;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.cart-items {
    background: #fff;
    border: 1px solid #e7e7e7;
    overflow: hidden;
}

.cart-items-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 14px 20px;
    background: #f8f8f8;
    border-bottom: 1px solid #e7e7e7;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #222529;
    letter-spacing: 0.5px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e7e7e7;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-col {
    display: flex;
    align-items: center;
}

.product-col {
    gap: 15px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    background: #f4f4f4;
    border: 1px solid #e7e7e7;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #222529;
}

.cart-item-meta {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.cart-item-remove-link {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cart-item-remove-link:hover {
    text-decoration: underline;
}

.cart-item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: #222529;
}

.cart-item-subtotal {
    font-weight: 700;
    font-size: 1rem;
    color: #e07a5f;
}

.cart-items-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f8f8;
    border-top: 1px solid #e7e7e7;
}

.cart-summary {
    background: #fff;
    border: 1px solid #e7e7e7;
    padding: 25px;
    position: sticky;
    top: 120px;
}

.cart-summary h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: none;
    margin-bottom: 20px;
    color: #222529;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.summary-row.total {
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

.summary-row.total span:last-child {
    color: var(--color-accent);
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border: 1px solid #e7e7e7;
}

.cart-empty-icon {
    width: 100px;
    height: 100px;
    background: #f8f8f8;
    border: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cart-empty-icon i {
    font-size: 2.5rem;
    color: #ccc;
}

.cart-empty h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #222529;
}

.cart-empty p {
    color: #999;
    margin-bottom: 25px;
}

.checkout-btn {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    background: #e07a5f;
    border-color: #e07a5f;
}

.checkout-btn:hover {
    background: #d06a4f;
    border-color: #d06a4f;
}

.continue-btn {
    background: #fff;
    border: 1px solid #e7e7e7;
    color: #222529;
}

.continue-btn:hover {
    background: #f8f8f8;
}

/* Forms */
.form-section {
    padding: 60px 0;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-container h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-transform: none;
    text-align: center;
    margin-bottom: 10px;
    color: #222529;
}

.form-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    color: #222529;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.08);
}

.form-group input::placeholder {
    color: #bbb;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-btn {
    width: 100%;
    margin-top: 10px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(231, 76, 60, 0.06);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.alert-success {
    background: rgba(39, 174, 96, 0.06);
    border: 1px solid rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.alert-success {
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: #3498db;
}

/* Admin Styles */
.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 120px);
    background: #f4f4f4;
}

.admin-sidebar {
    background: #fff;
    border-right: 1px solid #e7e7e7;
    padding: 30px 0;
}

.admin-nav {
    list-style: none;
}

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: #777;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.admin-nav li a:hover, .admin-nav li a.active {
    background: #f8f8f8;
    color: #222529;
    border-left-color: var(--color-accent);
}

.admin-main {
    padding: 30px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    padding: 25px;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: #ddd;
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.stat-icon.orange {
    background: rgba(231, 76, 60, 0.1);
    color: var(--color-accent);
}

.stat-icon.cyan {
    background: rgba(52, 152, 219, 0.08);
    color: #3498db;
}

.stat-icon.green {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.stat-icon.purple {
    background: rgba(183, 0, 255, 0.1);
    color: #b700ff;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.table-container {
    background: #fff;
    border: 1px solid #e7e7e7;
    overflow: hidden;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 15px 20px;
    text-align: left;
    font-size: 0.9rem;
}

.data-table th {
    background: #f8f8f8;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #777;
}

.data-table tbody tr {
    border-top: 1px solid #e7e7e7;
    transition: var(--transition);
}

.data-table tbody tr:hover {
    background: #f8f8f8;
}

.data-table td {
    color: #777;
}

.data-table td strong {
    color: #222529;
}

.table-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.status-badge {
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.status-pendiente { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.status-procesando { background: rgba(52, 152, 219, 0.08); color: #3498db; }
.status-enviado { background: rgba(0, 123, 255, 0.1); color: #007bff; }
.status-entregado { background: rgba(0, 255, 136, 0.1); color: #00ff88; }
.status-cancelado { background: rgba(255, 68, 68, 0.1); color: #ff4444; }

.table-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 35px;
    height: 35px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-icon:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.btn-danger:hover {
    background: #ff4444;
    border-color: #ff4444;
}

/* Responsive */
@media (max-width: 1024px) {
    .catalog-layout, .admin-layout, .cart-layout, .product-detail {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .banner-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: var(--transition);
        z-index: 999;
        border-left: 1px solid #e7e7e7;
    }
    .nav-menu.active {
        right: 0;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f8f8;
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .search-box form {
        display: none;
    }
    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .header-main-inner {
        flex-wrap: wrap;
        gap: 15px;
    }

    .header-search {
        order: 3;
        max-width: 100%;
        width: 100%;
    }

    .header-contact {
        display: none;
    }
    .hero-buttons {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
    .cart-items-header {
        display: none;
    }
    .cart-item-col {
        justify-content: space-between;
        width: 100%;
    }
    .product-col {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    .price-col::before { content: 'Precio: '; color: #777; font-size: 0.85rem; }
    .qty-col::before { content: 'Cantidad: '; color: #777; font-size: 0.85rem; }
    .subtotal-col::before { content: 'Subtotal: '; color: #777; font-size: 0.85rem; }
    .form-row {
        grid-template-columns: 1fr;
    }
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        display: none;
    }
}

/* Product Gallery Thumbnails */
.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #e7e7e7;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    flex-shrink: 0;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Card Hover Image */
.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.product-image .img-primary,
.product-image .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-image .img-hover {
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
}

.product-card:hover .img-primary {
    opacity: 0;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    border-left: 1px solid #e7e7e7;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e7e7e7;
    background: #f8f8f8;
}

.cart-drawer-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    background: #fff;
    color: #222529;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer-close:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-drawer-items {
    flex: 1;
    padding: 15px;
}

.cart-drawer-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.cart-drawer-item:hover {
    border-color: #ddd;
}

.cart-drawer-item-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--color-bg-secondary);
    flex-shrink: 0;
}

.cart-drawer-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-drawer-item-info {
    flex: 1;
    min-width: 0;
}

.cart-drawer-item-info h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-drawer-item-meta {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.cart-drawer-item-price {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.cart-drawer-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer-item-remove {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 6px;
    transition: var(--transition);
    margin-left: auto;
}

.cart-drawer-item-remove:hover {
    transform: scale(1.15);
}

.quantity-control-sm button {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
}

.quantity-control-sm input {
    width: 36px;
    height: 28px;
    font-size: 0.85rem;
}

.cart-drawer-footer {
    padding: 20px 25px;
    border-top: 1px solid #e7e7e7;
    background: #f8f8f8;
}

.cart-drawer-summary {
    margin-bottom: 15px;
}

.cart-drawer-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 25px;
    text-align: center;
}

.cart-drawer-empty i {
    font-size: 3.5rem;
    color: #e7e7e7;
    margin-bottom: 15px;
}

.cart-drawer-empty h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #222529;
}

.cart-drawer-empty p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Admin image inputs */
.image-inputs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.image-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.image-input-row input {
    flex: 1;
}

.image-input-row button {
    background: #ff4444;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.image-input-row button:hover {
    background: #ff6666;
}

.btn-add-image {
    background: var(--color-bg-hover);
    border: 2px dashed var(--color-border);
    color: var(--color-text-muted);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    font-weight: 500;
    transition: var(--transition);
}

.btn-add-image:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Home Layout */
.home-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

.home-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #e7e7e7;
}

.sidebar-widget-title {
    background: #e07a5f;
    color: #fff;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

.sidebar-widget-title i {
    margin-right: 8px;
}

.sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cat-list li {
    border-top: 1px solid #e7e7e7;
}

.sidebar-cat-list li:first-child {
    border-top: none;
}

.sidebar-cat-list a {
    display: block;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Open Sans', sans-serif;
}

.sidebar-cat-list a:hover {
    color: var(--color-accent);
}

.sidebar-support {
    padding: 20px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e7e7e7;
}

.support-item:first-child {
    padding-top: 0;
}

.support-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.support-icon {
    width: 44px;
    height: 44px;
    border: 2px solid #222529;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #222529;
    flex-shrink: 0;
}

.support-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #222529;
    margin-bottom: 4px;
    font-family: 'Open Sans', sans-serif;
}

.support-text span {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.4;
    font-family: 'Open Sans', sans-serif;
}

.home-section-header {
    text-align: center;
    margin-bottom: 30px;
}

/* Product Card Porto */
.products-grid-porto {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card-porto {
    background: #fff;
    border: 1px solid #e7e7e7;
    transition: var(--transition);
}

.product-card-porto:hover {
    box-shadow: var(--shadow-md);
}

.product-image-porto {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image-porto a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image-porto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-porto:hover .product-image-porto .img-primary {
    opacity: 0;
}

.product-card-porto:hover .product-image-porto .img-hover {
    opacity: 1;
}

.product-image-porto .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.badge-sale-porto {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Open Sans', sans-serif;
}

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    opacity: 0;
    transition: var(--transition);
}

.product-card-porto:hover .product-wishlist {
    opacity: 1;
}

.product-wishlist button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e7e7e7;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.product-wishlist button:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.product-info-porto {
    padding: 15px;
    text-align: center;
}

.product-cats {
    font-size: 0.72rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-family: 'Open Sans', sans-serif;
}

.product-title-porto {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222529;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: var(--transition);
    font-family: 'Open Sans', sans-serif;
}

.product-title-porto:hover {
    color: var(--color-accent);
}

.product-rating {
    color: #ddd;
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.product-rating i {
    margin: 0 1px;
}

.product-price-porto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-porto {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222529;
    font-family: 'Open Sans', sans-serif;
}

.price-old-porto {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    font-family: 'Open Sans', sans-serif;
}

/* Color Banners */
.color-banners {
    padding: 40px 0;
    background: #fff;
}

.color-banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.color-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px;
    min-height: 200px;
}

.color-banner img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 90%;
    width: auto;
    object-fit: contain;
    object-position: right bottom;
}

.color-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.color-banner-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 4px;
    font-family: 'Open Sans', sans-serif;
}

.color-banner-content p {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    opacity: 0.8;
    font-family: 'Open Sans', sans-serif;
}

.color-banner-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
}

.color-banner-price sup {
    font-size: 1rem;
    font-weight: 600;
    top: -0.6em;
}

/* Outlet Banner */
.outlet-banner {
    background: #e07a5f;
    padding: 0;
    overflow: hidden;
}

.outlet-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 280px;
}

.outlet-content {
    padding: 50px;
    color: #fff;
}

.outlet-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 5px;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
}

.outlet-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Open Sans', sans-serif;
}

.outlet-percent {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
}

.outlet-percent span {
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    vertical-align: top;
    margin-left: 5px;
    line-height: 1.2;
}

.outlet-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.outlet-image img {
    max-height: 280px;
    object-fit: contain;
}

/* Newsletter */
.newsletter-section {
    background: #f4f4f4;
    padding: 40px 0;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222529;
    margin-bottom: 4px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-text p {
    font-size: 0.85rem;
    color: #777;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form-porto {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-form-porto input {
    border: none;
    background: none;
    padding: 12px 18px;
    font-size: 0.85rem;
    color: #222529;
    outline: none;
    width: 280px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form-porto input::placeholder {
    color: #bbb;
}

.newsletter-form-porto button {
    background: var(--color-accent);
    border: none;
    color: white;
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form-porto button:hover {
    background: #c0392b;
}

/* Brands */
.brands-section {
    padding: 50px 0;
    background: #fff;
}

.brands-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.brand-item {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.brand-item small {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    display: block;
    color: #ccc;
}

/* Responsive */
@media (max-width: 1024px) {
    .home-layout {
        grid-template-columns: 1fr;
    }
    .home-sidebar {
        display: none;
    }
    .products-grid-porto {
        grid-template-columns: repeat(2, 1fr);
    }
    .color-banners-grid {
        grid-template-columns: 1fr;
    }
    .outlet-banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .outlet-image {
        display: none;
    }
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        display: none;
    }
    .hero-content {
        padding: 40px 20px;
    }
    .products-grid-porto {
        grid-template-columns: 1fr;
    }
    .brands-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .header-main-inner {
        flex-wrap: wrap;
        gap: 15px;
    }
    .header-search {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
    .header-contact {
        display: none;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #222529;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: var(--transition);
        z-index: 999;
        border-left: 1px solid #333;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        color: #fff;
        border-bottom: 1px solid #333;
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #1a1d21;
        display: none;
        border: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    .cart-item-price, .cart-item-remove {
        grid-column: 2;
        justify-self: start;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        display: none;
    }
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.hidden { display: none; }

/* Product Card Actions (Wishlist + Quick Add) */
.product-actions-porto {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 5;
}

.product-image-porto:hover .product-actions-porto {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.product-action-btn {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid #e7e7e7;
    color: #222529;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.product-action-btn:hover {
    background: #e07a5f;
    border-color: #e07a5f;
    color: #fff;
}

.product-action-btn.active {
    background: #e07a5f;
    border-color: #e07a5f;
    color: #fff;
}

.product-action-btn.active i.far.fa-heart,
.product-action-btn.active .far.fa-heart {
    font-weight: 900;
}

/* Wishlist en nav */
.wishlist-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #e07a5f;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Boton outline danger */
.btn-outline-danger {
    background: transparent;
    border: 1px solid #ff4444;
    color: #ff4444;
}

.btn-outline-danger:hover {
    background: #ff4444;
    color: #fff;
}

/* Cart Drawer mejoras Porto */
.cart-drawer-item {
    border-radius: 0;
    background: #fff;
    border: none;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 0;
    padding: 18px 0;
    gap: 15px;
}

.cart-drawer-item:last-child {
    border-bottom: none;
}

.cart-drawer-item-img {
    border-radius: 0;
    width: 75px;
    height: 75px;
    border: 1px solid #e7e7e7;
}

.cart-drawer-item-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #222529;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-decoration: none;
}

.cart-drawer-item-title:hover {
    color: #e07a5f;
}

.cart-drawer-item-total {
    font-weight: 700;
    color: #222529;
    font-size: 0.95rem;
    align-self: flex-start;
    margin-top: 2px;
    min-width: 60px;
    text-align: right;
}

.cart-drawer-close {
    border-radius: 0;
}

.cart-drawer-empty-icon {
    width: 90px;
    height: 90px;
    background: #f8f8f8;
    border: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cart-drawer-empty-icon i {
    font-size: 2.5rem;
    color: #ccc;
    margin: 0;
}

.drawer-checkout-btn {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    background: #e07a5f;
    border-color: #e07a5f;
}

.drawer-checkout-btn:hover {
    background: #d06a4f;
    border-color: #d06a4f;
}

.drawer-continue-btn {
    background: #fff;
    border: 1px solid #e7e7e7;
    color: #222529;
}

.drawer-continue-btn:hover {
    background: #f8f8f8;
}

/* Toast notification */
.cart-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #222529;
    color: #fff;
    padding: 14px 22px;
    font-size: 0.9rem;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cart-toast.show {
    transform: translateX(0);
}

.cart-toast i {
    color: #00ff88;
    font-size: 1.1rem;
}

/* Admin Improvements */
.admin-sidebar-brand {
    padding: 20px 25px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
}

.admin-nav-section {
    padding: 12px 25px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.admin-header-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 0.9rem;
}

.admin-header-user i {
    font-size: 1.3rem;
    color: #e07a5f;
}

.admin-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    overflow: hidden;
}

.admin-card-header {
    padding: 18px 20px;
    border-bottom: 1px solid #e7e7e7;
    background: #f8f8f8;
}

.admin-card-header h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    color: #222529;
}

.admin-card-header h3 i {
    color: #e07a5f;
    margin-right: 8px;
}

.admin-card-body {
    padding: 20px;
}

.admin-table thead th {
    background: #f8f8f8;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #777;
    padding: 12px 15px;
}

.admin-table tbody td {
    padding: 12px 15px;
    font-size: 0.88rem;
}

.badge-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    background: #e07a5f;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0 8px;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.status-list-item:last-child {
    border-bottom: none;
}

.status-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
}

.status-label {
    flex: 1;
    font-size: 0.9rem;
    color: #555;
}

.status-count {
    font-weight: 700;
    color: #222529;
    font-size: 0.95rem;
}

.stat-icon.red {
    background: rgba(224, 122, 95, 0.1);
    color: #e07a5f;
}
