/* CSS reset and variables */
:root {
    --primary-color: #000000;
    --accent-color: #666666;
    --border-color: #e0e0e0;
    --text-light: #ffffff;
    --text-muted: #888888;
    --text-dark: #000000;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f5;
    --font-serif: 'Didot', 'Bodoni MT', 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hide scrollbars for clean aesthetic */
html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 42px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.logo {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 3px;
}

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

.nav-links a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)), url('https://picsum.photos/id/1059/1920/1080') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    margin-top: 80px;
    animation: fadeInUp 1.2s ease-out;
}

#hero-subtitle {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 25px;
    color: var(--border-color);
}

#hero-title {
    font-size: 76px;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: 2px;
}

/* Categories */
#categories-section {
    padding: 140px 6%;
    background-color: var(--bg-light);
}

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

.section-title {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.section-divider {
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.category-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-gray);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 50px 40px;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.category-title {
    color: var(--text-light);
    font-size: 34px;
    letter-spacing: 2px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-light);
    transition: width 0.6s ease;
}

.category-card:hover .category-title::after {
    width: 100%;
}

/* Featured Products */
#featured-section {
    padding: 140px 6%;
    background-color: var(--bg-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px 40px;
}

.product-card {
    background: transparent;
    text-align: center;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 440px;
    margin-bottom: 35px;
    background-color: var(--bg-light);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.product-title {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.product-price {
    color: var(--accent-color);
    font-size: 14px;
    margin-bottom: 25px;
}

.btn-add-cart {
    font-size: 10px;
    padding: 12px 28px;
    letter-spacing: 3px;
}

/* Trust Badges */
#trust-section {
    padding: 120px 6%;
    background-color: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-icon {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.trust-title {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    font-weight: normal;
}

.trust-desc {
    color: var(--text-muted);
    font-size: 13px;
    font-family: var(--font-sans);
    line-height: 1.8;
    max-width: 280px;
    margin: 0 auto;
}

/* Contact Section */
#contact-section {
    padding: 140px 6%;
    background-color: var(--bg-gray);
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.form-group {
    margin-bottom: 35px;
    text-align: left;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background-color: transparent;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.4s;
}

.form-control::placeholder {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.form-control:focus {
    border-bottom-color: var(--primary-color);
}

textarea.form-control {
    height: 120px;
    resize: none;
}

.form-submit-btn {
    width: 100%;
    margin-top: 15px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
    padding: 20px;
    font-size: 12px;
    letter-spacing: 4px;
}

.form-submit-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.form-message {
    margin-top: 25px;
    padding: 15px;
    display: none;
    text-align: center;
    font-size: 13px;
}

.form-message.success {
    display: block;
    color: #000;
    border: 1px solid #000;
}

.form-message.error {
    display: block;
    color: #d32f2f;
    border: 1px solid #d32f2f;
}

/* Footer */
#footer-section {
    background-color: var(--primary-color);
    color: var(--text-muted);
    padding: 100px 6% 40px;
}

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

.footer-title {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

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

.footer-links li {
    margin-bottom: 18px;
    font-size: 13px;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    #hero-title { font-size: 48px; }
    .nav-links { display: none; }
    #categories-section, #featured-section, #contact-section { padding: 80px 6%; }
    .trust-item { min-width: 100%; }
}