@font-face {
    font-family: 'Arsenal';
    src: url('../fonts/arsenal/Arsenal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arsenal';
    src: url('../fonts/arsenal/Arsenal-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arsenal';
    src: url('../fonts/arsenal/Arsenal-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost/Jost-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost/Jost-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #ffffff;
    --text: #5c5c5c;
    --heading: #171717;
    --accent: #bfa14a;
    --border: #e2e2e2;
}

body {
    font-family: 'Arsenal', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--bg);
    color: var(--text);
}

header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 40px;
    border-bottom: 1px solid var(--border);
    background-color: #ffffff;
}


.logo {
    flex: 1;
}

.logo h1 {
    font-weight: 700;
    color: var(--heading);
    
}

.logo p {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav a {
    text-decoration: none;
    color: var(--heading);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav a:hover {
    color: var(--accent);
}
.header-icons {
    margin-left: auto;
    display: flex;
    gap: 20px;
}
.icon {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--heading);
}
.header-icons svg {
    width: 22px;
    height: 22px;
    stroke: var(--heading);
    fill: none;
    stroke-width: 1.5;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--accent);
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero img {
    height: 500px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.btn-primario {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
}

.colecciones {
    padding: 80px 40px;
    background-color: #f6f4f1;
    text-align: center;
}

.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.producto-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.producto-img {
    height: 200px;
    background: #e0e0e0;
    margin-bottom: 18px;
}


.split-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 80px;
    gap: 60px;
}

.split-title {
    font-size: 48px;
    color: var(--heading);
    margin-bottom: 20px;
}

.split-description {
    margin-bottom: 20px;
}

.split-image img {
    max-width: 500px;
    width: 100%;
}


.sobre-nosotros {
    max-width: 700px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
}

.producto-img {
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
}

.producto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.producto-card:hover .producto-img img {
    transform: scale(1.08);
}

.footer {
    background-color: #f3f1ee;
    padding: 80px 60px;
    font-family: 'Arsenal', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: auto;
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #222;
}

.footer-address {
    margin-bottom: 25px;
    color: #555;
}

.footer-link {
    color: #333;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-brand {
    margin-top: 40px;
    letter-spacing: 0.3em;
    font-size: 18px;
    color: #888;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    text-decoration: none;
    color: #555;
}

.footer-menu a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 16px;
    font-size: 20px;
}

.footer-social a {
    color: #555;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-col {
    text-align: left;
}