:root {
    --theme-base: #0f172a; /* slate-900 */
    --theme-action: #e11d48; /* rose-600 */
    --accent-color: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--theme-base);
    letter-spacing: -0.03em;
}

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

ul {
    list-style: none;
}

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

/* More Compact Navigation */
header {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.logo {
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--theme-base);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.08em;
}

.nav-links a:hover {
    color: var(--theme-action);
}

.btn-quotation {
    background-color: var(--theme-base);
    color: white !important;
    padding: 7px 14px;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 1px;
}

.btn-quotation:hover {
    background-color: var(--theme-action);
}

/* Compact Hero */
.hero {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(15,23,42,0.85) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 450px;
}

.hero h1 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 900;
    line-height: 1;
}

.hero p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--theme-action);
    color: white;
    font-weight: 800;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}

/* Section Styling */
.section {
    padding: 48px 0;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 32px;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.product-card:hover {
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.product-image-container {
    height: 240px;
    overflow: hidden;
    position: relative;
    background-color: #f8fafc;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-info {
    padding: 14px;
}

.item-category {
    font-size: 8px;
    font-weight: 800;
    color: var(--theme-action);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    display: block;
}

.item-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--theme-base);
    margin-bottom: 6px;
    display: block;
    line-height: 1.25;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.current-price {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--theme-base);
}

.old-price {
    font-size: 0.75rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.item-meta {
    font-size: 9px;
    color: var(--text-light);
    font-style: italic;
    font-weight: 500;
}

/* Offers Section */
.offers-section {
    padding: 48px 0;
}

.offers-header {
    margin-bottom: 24px;
}

.offers-header h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--theme-base);
}

.offers-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
}

.offer-large, .offer-small {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.offer-large {
    min-height: 340px;
}

.offer-large::after, .offer-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.offer-large img {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    object-fit: contain;
}

.offer-grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.offer-small img {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%;
    object-fit: contain;
}

.offer-title {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 1px;
    z-index: 5;
    color: var(--theme-base);
}

.offer-subtitle {
    font-size: 9px;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

/* Footer */
footer {
    background-color: var(--theme-base);
    color: white;
    padding: 48px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.footer-col p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
}

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

.footer-links a {
    color: #94a3b8;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: white;
}

.footer-links i {
    width: 18px;
    color: var(--theme-action);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.03);
    font-size: 9px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Utilities */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.whatsapp-btn:hover {
    background-color: #16a34a;
}

@media (max-width: 900px) {
    .offers-layout {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 1.75rem;
    }
}
