@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500&display=swap');
* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0A0D0D;
    --gold: #DCA742;
    --accent: #E8521B;
}

body {
    background-color: #0A0D0D;
    background-image: linear-gradient(rgba(10, 13, 13, 0.82), rgba(10, 13, 13, 0.90)), url('images/tu-fondo.jpg');
    background-size: cover;          
    background-position: center;    
    background-attachment: fixed;   
    background-repeat: no-repeat;    
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(10, 13, 13, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 82, 27, 0.2);
}
.logo img {
    height: 45px; 
    width: auto;  
    object-fit: contain; 
    background: transparent; 
    border: none; 
    box-shadow: none; 
    border-radius: 0; 
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

 

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}
.nav-menu a:hover {
    color: #E8521B;
}
.cart-icon {
    font-size: 20px;
    cursor: pointer;
}
.cart-count {
    background-color: #E8521B;
    color: white;
    padding: 2px 7px;
    border-radius: 50%;
    font-size: 12px;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,13,13,0.9) 30%, rgba(10,13,13,0.4) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.hero-content h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #FDFEFE;
}
.btn-primary {
    background-color: #E8521B;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
}
.btn-primary:hover {
    background-color: #c63f10;
    transform: translateY(-3px);
}
.emotional-quote {
    background-color: #050707;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(220, 167, 66, 0.1);
    border-bottom: 1px solid rgba(220, 167, 66, 0.1);
}
.script-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 24px;
    color: #DCA742; 
}
.heart-icon {
    color: #DCA742;
    display: block;
    margin-top: 10px;
}
.store-section {
    padding: 80px 5%;
}
.store-section h2 {
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background-color: #121616;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 82, 27, 0.4);
}
.product-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.product-info {
    padding: 20px;
}
.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.weight {
    color: #8a9494;
    font-size: 13px;
    margin-bottom: 15px;
}
.price {
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.btn-cart {
    width: 100%;
    background-color: transparent;
    border: 2px solid #E8521B;
    color: #E8521B;
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}
.btn-cart:hover {
    background-color: #E8521B;
    color: white;
}
.benefits-bar {
    background-color: #121616;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 5%;
    gap: 20px;
}
.benefit-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}
.benefit-item .icon {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}
.benefit-item p {
    font-size: 14px;
    font-weight: 600;
    color: #DCA742;
}
.main-footer {
    background-color: #050707;
    padding: 30px 5%;
    text-align: center;
    font-size: 12px;
    color: #6d7777;
    border-top: 1px solid rgba(255,255,255,0.02);
}
.footer-links a {
    color: #6d7777;
    text-decoration: none;
    margin: 0 10px;
}
.footer-links a:hover {
    color: white;
}
.btn-whatsapp:hover {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
}
@keyframes shake-cart {
    0% { transform: scale(1); }
    20% { transform: scale(1.3) rotate(-10deg); color: #E8521B; }
    40% { transform: scale(1.3) rotate(10deg); }
    60% { transform: scale(1.3) rotate(-10deg); }
    80% { transform: scale(1.3) rotate(10deg); }
    100% { transform: scale(1); color: #FFFFFF; }
}
.cart-pop {
    animation: shake-cart 0.6s ease-in-out;
}
.cart-icon-link {
    color: white;
    text-decoration: none;
    font-size: 22px;
}
.cart-page-container {
    padding: 140px 5% 80px 5%;
    display: flex;
    justify-content: center;
    background-color: #0A0D0D;
}
.cart-checkout-box {
    background-color: #121616;
    border: 1px solid rgba(232, 82, 27, 0.3);
    border-radius: 8px;
    width: 100%;
    max-width: 650px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}
.cart-checkout-box h2 {
    font-family: 'Cinzel Decorative', serif;
    color: #DCA742;
    font-size: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}
.cart-page-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.item-title {
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}
.item-pricing {
    font-size: 13px;
    color: #8a9494;
}
.item-controls {
    text-align: right;
}
.item-quantity-display {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}
.btn-delete-page {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
}
.cart-page-summary {
    margin-top: 30px;
    background-color: #050707;
    padding: 20px;
    border-radius: 6px;
}
.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 10px;
}
.summary-line.highlight {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px dashed rgba(255,255,255,0.1);
    color: #E8521B;
}
.btn-checkout-page {
    width: 100%;
    background-color: #E8521B;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 16px;
    border-radius: 4px;
    margin-top: 30px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
.btn-checkout-page:hover {
    background-color: #25D366;
    transform: translateY(-2px);
}
.empty-page-cart {
    text-align: center;
    padding: 40px 0;
    color: #8a9494;
}
.header-actions {
    position: relative;
    display: flex;
    align-items: center;
}
.cart-icon-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 22px;
    position: relative;
    display: inline-block;
    transition: transform 0.2s;
}
.cart-icon-link:hover {
    transform: scale(1.1);
}
.cart-count {
    background-color: #E8521B;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -12px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.filter-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    background: rgba(20, 20, 20, 0.6); 
    border: 1px solid rgba(232, 82, 27, 0.4); 
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Arial', sans-serif; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}
.filter-btn:hover {
    background: rgba(232, 82, 27, 0.85); 
    border-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(232, 82, 27, 0.4);
    transform: translateY(-2px);
}
.filter-btn:active {
    transform: translateY(0);
}
.product-card {
    border: 1px solid rgba(232, 82, 27, 0.2);
    border-radius: 10px;
    transition: 0.3s;
}
.product-card:hover {
    border-color: rgba(232, 82, 27, 0.6);
}
@media (max-width: 600px) {
    .filter-menu {
        gap: 8px; 
        padding: 0 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;   
        width: calc(50% - 10px); /* Dos botones por fila */
    }
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 20px;
    padding: 20px;
}
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr; 
        padding: 10px;
    }
    
    .product-card {
        margin: 0 auto;
        width: 100%;
        max-width: none;
    }
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.5rem; 
    }
    
    .store-section h2 {
        font-size: 1.8rem;
    }
    .product-info h3 {
        font-size: 9px; 
    }
    .product-info .price {
        font-size: 9px;
    }
    .btn-cart {
        font-size: 7px;
        padding: 6px 2px;
    }
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
}
.product-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(232, 82, 27, 0.3);
    border-radius: 8px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.product-img {
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 5px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info h3 {
    font-size: 10px; 
    line-height: 1.2;
    margin: 4px 0;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-info .price {
    font-size: 10px;
    font-weight: bold;
    color: #E8521B;
    margin-bottom: 5px;
}
.btn-cart {
    font-size: 8px; 
    padding: 4px 2px;
    width: 100%;
    border-radius: 4px;
}
.about-section {
    padding: 80px 5%;
    background-color: #050707;
    text-align: center;
}
.about-container h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #FFFFFF;
}
.about-intro {
    font-size: 18px;
    margin-bottom: 50px;
    color: #DCA742;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.about-card {
    background-color: #121616;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(232, 82, 27, 0.2);
    transition: 0.3s;
}
.about-card:hover {
    border-color: #E8521B;
}
.about-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #E8521B;
}
.about-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #FFFFFF;
}
.welcome-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3rem;
    color: transparent;
    background: linear-gradient(90deg, #FFFFFF 0%, #DCA742 50%, #FFFFFF 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 4s linear infinite;
    display: inline-block;
    margin-bottom: 20px;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.about-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-page-container {
    padding: 150px 10% 50px;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: rgba(20, 20, 20, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(232, 82, 27, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card h3 {
    color: #E8521B;
    margin-bottom: 20px;
    font-family: 'Cinzel Decorative', serif;
}
.welcome-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 8% 80px 8%;
    gap: 50px;
    background: linear-gradient(135deg, #0A0D0D 0%, #161B1B 100%);
    border-bottom: 1px solid rgba(232, 82, 27, 0.2);
}

.welcome-text-side {
    flex: 1;
}

.welcome-title span {
    color: #E8521B;
}

.welcome-subtitle {
    font-size: 1.1rem;
    color: #DCA742;
    margin-bottom: 15px;
    line-height: 1.5;
}

.welcome-description {
    font-size: 0.95rem;
    color: #A0AAB0;
    line-height: 1.6;
}

.welcome-image-side {
    flex: 1;
    text-align: center;
}

.welcome-image-side img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    border: 1px solid rgba(220, 167, 66, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.pillars-section {
    padding: 80px 8%;
    background-color: #050707;
    text-align: center;
}

.section-heading {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pillar-card {
    background: rgba(18, 22, 22, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 82, 27, 0.2);
    border-radius: 10px;
    padding: 35px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: #E8521B;
}

.pillar-icon {
    font-size: 35px;
    display: block;
    margin-bottom: 15px;
}

.pillar-card h3 {
    font-size: 1.1rem;
    color: #DCA742;
    margin-bottom: 12px;
    font-weight: 600;
}

.pillar-card p {
    font-size: 0.9rem;
    color: #CCCCCC;
    line-height: 1.5;
}

.footer-slogan {
    border-top: 1px solid rgba(220, 167, 66, 0.2);
    padding-top: 30px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #DCA742;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .welcome-banner {
        flex-direction: column;
        padding-top: 120px;
    }
    .welcome-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .about-tabs-menu {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .tab-btn {
        flex-shrink: 0;
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content.active {
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(232, 82, 27, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(232, 82, 27, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 82, 27, 0); }
}

.tab-btn.active {
    animation: softPulse 2s infinite;
}

.value-card:nth-child(1) { animation: fadeUp 0.4s ease 0.1s both; }
.value-card:nth-child(2) { animation: fadeUp 0.4s ease 0.2s both; }
.value-card:nth-child(3) { animation: fadeUp 0.4s ease 0.3s both; }
.value-card:nth-child(4) { animation: fadeUp 0.4s ease 0.4s both; }
.value-card:nth-child(5) { animation: fadeUp 0.4s ease 0.5s both; }
.value-card:nth-child(6) { animation: fadeUp 0.4s ease 0.6s both; }

.image-side img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-side img:hover {
    transform: scale(1.03);
}
.header-top-row {
    display: contents;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a.nav-highlight {
    color: #DCA742; 
}
@media (max-width: 768px) {
    .main-header {
        padding: 10px 4%;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    .logo img {
        height: 36px;
    }
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 12px;
        overflow-x: auto;
        white-space: nowrap;
        max-width: 55%;
        padding: 5px 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    .nav-menu a {
        font-size: 12px;
        padding: 4px 6px;
        color: #CCCCCC;
        border-bottom: 1px solid transparent;
    }
    .nav-menu a:hover, .nav-menu a.nav-highlight {
        color: #DCA742;
        border-bottom: 1px solid #DCA742; 
        background: transparent;
    }
    .header-actions {
        display: flex;
        align-items: center;
        margin-left: 5px;
    }

    .cart-icon-link {
        font-size: 20px;
    }
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #DCA742; 
    border-radius: 2px;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1002;
    }
    .menu-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 38px;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(10, 13, 13, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 25px;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        border-right: 1px solid rgba(220, 167, 66, 0.3);
        box-shadow: 10px 0 30px rgba(0,0,0,0.8);
        z-index: 1001;
    }
    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 18px;
        font-family: 'Cinzel Decorative', serif;
        color: #FFFFFF;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
        padding-bottom: 10px;
    }

    .nav-menu a:hover {
        color: #DCA742;
        padding-left: 5px;
    }

    .header-actions {
        z-index: 1002;
    }

    .cart-icon-link {
        font-size: 22px;
    }
}
.btn-download {
    display: inline-block;
    background: rgba(10, 13, 13, 0.9);
    border: 1px solid #DCA742;
    color: #DCA742;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-download:hover {
    background: #DCA742;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(220, 167, 66, 0.3);
}
#intro-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0A0D0D;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.flame-container {
    text-align: center;
    animation: pulseFlame 1.5s infinite alternate;
}

.animated-flame {
    animation: ignite 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    filter: drop-shadow(0 0 15px rgba(232, 82, 27, 0.8));
    margin-bottom: 15px;
}

.intro-brand {
    font-family: 'Cinzel Decorative', serif;
    color: #DCA742;
    font-size: 1.8rem;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInBrand 1s ease 0.5s forwards;
}

@keyframes ignite {
    0% {
        transform: scale(0.2) translateY(20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}
@keyframes pulseFlame {
    0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(232, 82, 27, 0.6)); }
    100% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(220, 167, 66, 0.9)); }
}

@keyframes fadeInBrand {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-hidden {
    opacity: 0;
    visibility: hidden;
}
.hero-section {
    min-height: 100vh;
    height: auto;
    background-image: linear-gradient(rgba(10, 13, 13, 0.75), rgba(10, 13, 13, 0.85)), url('images/catalogo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 80px 5%;
    text-align: center;
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-centered .btn-primary {
    margin-top: 30px;
    display: inline-block;
    position: relative;
    z-index: 3;
}

.hero-brand-container {
    margin-bottom: 20px;
}

.hero-logo-img {
    height: 60px;
    margin-bottom: 10px;
    object-fit: contain;
}

.hero-established {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #DCA742;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-content-centered h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.hero-content-centered h1.highlight-title {
    color: #E8521B;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.05rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
}

.hero-feature-item {
    background: #161B1B;
    border: 1px solid rgba(220, 167, 66, 0.3);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateY(-3px);
    border-color: #E8521B;
}

.hero-feature-item .icon {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.hero-feature-item h4 {
    font-size: 0.85rem;
    color: #DCA742;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero-feature-item p {
    font-size: 0.8rem;
    color: #AAAAAA;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-content-centered h1 {
        font-size: 2rem;
    }
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .cart-page-container {
        padding-top: 120px;
    }
    
    .cart-checkout-box {
        padding: 20px;
    }
}
.mobile-back-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-back-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
        background-color: #1a1a1a;
        color: #DCA742; 
        border: 1px solid #DCA742;
        border-radius: 50%;
        font-size: 20px;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        z-index: 1000;
        transition: background-color 0.2s;
    }

    .mobile-back-btn:active {
        background-color: #DCA742;
        color: #0A0D0D;
    }
}
/* =========================================
   ADAPTABILIDAD GENERAL PARA MÓVILES Y PANTALLAS PEQUEÑAS
   ========================================= */

@media (max-width: 768px) {
    /* 1. Encabezado y Navegación */
    .main-header {
        padding: 10px 15px;
    }
    
    .logo img {
        max-height: 35px;
    }

    /* Menú desplegable móvil */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(10, 13, 13, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    /* 2. Sección Principal (Hero) */
    .hero-section {
        padding: 110px 15px 50px 15px;
        min-height: auto;
    }

    .hero-content-centered h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    /* 3. Cuadrícula de Características (las 4 columnas) */
    .hero-features-grid {
        grid-template-columns: 1fr; /* Una columna en celulares para que respiren bien */
        gap: 15px;
        padding: 0 10px;
    }

    .hero-feature-item {
        padding: 15px;
    }

    /* 4. Barra de Beneficios */
    .benefits-bar {
        gap: 15px;
        padding: 15px 10px;
        overflow-x: auto; /* Permite deslizar horizontalmente si son muchos íconos */
        justify-content: flex-start;
    }

    .benefit-item {
        min-width: 130px;
        flex-shrink: 0;
    }

    /* 5. Catálogo de Productos (2 por fila como lo pediste) */
    .store-section {
        padding: 40px 10px;
    }

    .store-section h2 {
        font-size: 1.5rem;
    }

    .filter-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 25px !important;
    }

    .filter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Forzar estrictamente 2 columnas */
        gap: 10px !important;
        padding: 0 5px;
    }

    .product-card {
        margin: 0;
        width: 100%;
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .product-info .weight {
        font-size: 0.7rem;
    }

    .product-info .price {
        font-size: 0.9rem;
    }

    .btn-cart {
        padding: 8px 4px;
        font-size: 0.75rem;
    }

    /* 6. Pie de página */
    .main-footer {
        padding: 20px 15px;
        font-size: 0.8rem;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
    }
}