/* Core Brand Colors & Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1a2b4c;   /* Elegant Deep Navy Blue */
    --accent-color: #d4af37;    /* Sophisticated Gold */
    --text-dark: #2c3e50;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
}

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

.brand-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    line-height: 1.2;
}

.company-name {
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.92) 0%, rgba(44, 62, 80, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-left: 8%;
    padding: 0 20px;
}

.hero-tag {
    font-size: 12px;
    color: var(--accent-color);
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 .highlight {
    color: var(--accent-color);
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 650px;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #bd9a2d;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Title Elements */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.subtitle {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
    font-weight: 600;
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 15px;
    text-align: justify;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 25px 15px;
    text-align: center;
    border-radius: 6px;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.stat-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-card p {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* Products Section Matrix */
.products-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-img-box {
    height: 240px;
    background-color: #eaeaea;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* High Quality Apparel Unsplash Graphics */
.img-1 { background-image: url('https://images.unsplash.com/photo-1581655353564-df123a1eb820?auto=format&fit=crop&w=400&q=80'); }
.img-2 { background-image: url('https://images.unsplash.com/photo-1598033129183-c4f50c736f10?auto=format&fit=crop&w=400&q=80'); }
.img-3 { background-image: url('https://images.unsplash.com/photo-1618354691373-d851c5c3a990?auto=format&fit=crop&w=400&q=80'); }
.img-4 { background-image: url('https://images.unsplash.com/photo-1602810318383-e386cc2a3ccf?auto=format&fit=crop&w=400&q=80'); }
.img-5 { background-image: url('https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=400&q=80'); }
.img-6 { background-image: url('https://images.unsplash.com/photo-1562157873-818bc0726f68?auto=format&fit=crop&w=400&q=80'); }
.img-7 { background-image: url('https://images.unsplash.com/photo-1583743814966-8936f5b7be1a?auto=format&fit=crop&w=400&q=80'); }
.img-8 { background-image: url('https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=400&q=80'); }

.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-weight: 700;
}

.sku {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.desc {
    font-size: 13px;
    color: var(--text-light);
    height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
    text-align: justify;
}

.meta-info {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 12px;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* Footer Details */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.price-notice {
    display: inline-block;
    border: 1px dashed var(--accent-color);
    padding: 8px 15px;
    color: var(--accent-color);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.footer-info h4 {
    font-size: 17px;
    margin-bottom: 15px;
    border-left: 3px solid var(--accent-color);
    padding-left: 10px;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #aaa;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .nav-links {
        gap: 15px;
    }
    .about-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero-content {
        margin-left: 0;
    }
}
