/* --- INDUSTRIAL ARTISAN THEME --- */
:root {
    --primary-dark: #1a1a1a;   /* Charcoal */
    --leather-accent: #c68e17; /* Leather Gold */
    --bg-light: #f4f4f4;       /* Industrial Grey/White */
    --text-main: #333;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- UI COMPONENTS --- */
.btn-industrial {
    background-color: var(--primary-dark);
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 30px;
    letter-spacing: 1px;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s ease;
}

.btn-industrial:hover {
    background-color: transparent;
    color: var(--primary-dark);
}

.btn-outline-industrial {
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-outline-industrial:hover, .btn-outline-industrial.active {
    background-color: var(--primary-dark);
    color: #fff;
}

/* --- NAVIGATION --- */
.navbar {
    background: #fff;
    border-bottom: 4px solid var(--leather-accent);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.cart-icon-wrapper {
    position: relative;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--leather-accent);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* --- HERO SECTION --- */
.hero {
    background-color: var(--primary-dark);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Diagonal accent line */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--leather-accent);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* --- PRODUCT CARDS --- */
.product-card {
    background: white;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-price {
    font-weight: 700;
    color: var(--leather-accent);
    font-size: 1.2rem;
}

/* --- IMAGE PLACEHOLDERS --- */
.img-placeholder {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    width: 100%;
    object-fit: cover;
}

.ratio-4x5 { aspect-ratio: 4/5; }
.ratio-landscape { aspect-ratio: 16/9; }
.ratio-square { aspect-ratio: 1/1; }

/* --- ABOUT SECTION --- */
.about-section {
    background-color: #fff;
    position: relative;
}

.about-text h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--leather-accent);
    margin-top: 15px;
}

/* --- CART OFFCANVAS --- */
.offcanvas {
    border-left: 5px solid var(--leather-accent);
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    background: #eee;
    object-fit: cover;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .hero { padding: 60px 0; }
    .hero::after { display: none; }
    .container { padding-left: 20px; padding-right: 20px; }
    
    /* Order utility to make image appear on top on mobile if desired, 
       currently standard stacking applies (Image Top, Text Bottom) */
}