/* DUMI SHEEPSKIN - Premium Australian Merino Sheepskin Website */

:root {
    --primary: #c9a86c;
    --primary-dark: #a8844a;
    --dark: #2c2418;
    --darker: #1a1610;
    --accent: #d4b896;
    --white: #ffffff;
    --gray-light: #f8f5f0;
    --gray: #6c757d;
    --gray-dark: #343a40;
}

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

body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: #333;
    line-height: 1.6;
    background: var(--white);
}

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

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

/* Header */
.header {
    background: var(--dark);
    color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header .container {
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon {
    font-size: 2em;
}

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

.logo-brand {
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
}

.logo-tagline {
    font-size: 0.75em;
    opacity: 0.8;
}

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

.nav-link {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #3d3225 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--primary);
}

.hero p {
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Products Section */
.products-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 50px;
    color: var(--dark);
}

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

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-card h3 {
    padding: 20px;
    font-size: 1.1em;
    color: var(--dark);
}

.product-card p {
    padding: 0 20px;
    color: var(--gray);
    font-size: 0.9em;
}

.product-card .price {
    padding: 15px 20px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2em;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--dark), #3d3225);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item p {
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background: var(--gray-light);
    padding: 60px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

/* Footer */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: var(--primary);
}

/* Product Grid (products.html) */
.products-preview {
    padding: 80px 0;
}

.products-preview .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.products-preview .product {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.products-preview .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.products-preview .product h3 {
    color: var(--dark);
    font-size: 1em;
    margin-bottom: 10px;
}

.products-preview .product a {
    color: var(--primary);
    font-weight: 600;
}

/* Products More */
.products-more {
    text-align: center;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 1.8em;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-preview .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Product Page Styles */
.product-info {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.product-info .price {
    font-size: 2em;
    color: var(--primary);
    font-weight: bold;
    margin: 15px 0;
}

.product-info .description {
    font-size: 1.1em;
    color: #666;
    margin: 15px 0;
}

.product-info .category {
    color: var(--gray);
    font-size: 0.9em;
}

.product-image {
    margin: 25px 0;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.specifications {
    margin: 30px 0;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 8px;
}

.specifications h2 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.specs-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.spec-label {
    font-weight: bold;
    color: var(--dark);
    width: 150px;
    flex-shrink: 0;
}

.spec-value {
    color: #666;
}

.features {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.features h2 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.features li:last-child {
    border-bottom: none;
}

.keywords-section {
    margin: 20px 0;
    padding: 15px;
    background: #f0f0f0;
    border-radius: 5px;
    font-size: 0.9em;
    color: var(--gray);
}

.contact {
    margin: 30px 0;
    padding: 25px;
    background: var(--dark);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
}

.contact h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.contact p {
    margin: 8px 0;
}

/* Product Page Layout */
.product-page {
    padding: 40px 0;
    background: var(--white);
}

.product-header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 40px;
}

.product-header h1 {
    font-size: 2.5em;
    color: var(--dark);
    margin-bottom: 15px;
}

.product-price {
    font-size: 2.5em;
    color: var(--primary);
    font-weight: bold;
}

.product-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-description {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    padding: 25px;
    background: var(--gray-light);
    border-radius: 10px;
    margin-bottom: 30px;
}

.product-specs {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.product-specs h2 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 12px 0;
}

.specs-table td:first-child {
    font-weight: bold;
    color: var(--dark);
    width: 40%;
}

.specs-table td:last-child {
    color: #666;
}

.product-features {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.product-features h2 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 12px 20px;
    background: #fff;
    margin-bottom: 8px;
    border-radius: 5px;
    border-left: 4px solid var(--primary);
}

.product-features li:before {
    content: "✓ ";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

.product-contact {
    background: var(--dark);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.product-contact h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.product-contact p {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Product Image Placeholder */
.product-image-placeholder {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 20px auto;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border: 2px dashed #ccc;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
}

.product-image-placeholder .icon {
    font-size: 64px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.product-image-placeholder .text {
    font-size: 16px;
    text-align: center;
    padding: 0 20px;
}
