* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background-color: #fafafa;
        }
        
        header {
            background-color: #2c2c2c;
            color: #fff;
            padding: 20px 0;
            border-bottom: 3px solid #d4af37;
        }
        
        header .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        header h1 {
            font-size: 24px;
            font-weight: normal;
            letter-spacing: 2px;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        
        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #d4af37;
        }
        
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        section {
            margin-bottom: 50px;
        }
        
        section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #2c2c2c;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 10px;
        }
        
        section p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }
        
        .hero {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-bottom: 50px;
        }
        
        .hero img {
            width: 45%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .hero-text {
            width: 55%;
        }
        
        .products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .product-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s;
        }
        
        .product-card:hover {
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #999;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #2c2c2c;
        }
        
        .product-info p {
            font-size: 14px;
            color: #777;
            margin-bottom: 15px;
        }
        
        .product-price {
            font-size: 18px;
            font-weight: bold;
            color: #d4af37;
            margin-bottom: 15px;
        }
        
        .product-button {
            width: 100%;
            padding: 12px;
            background-color: #2c2c2c;
            color: #fff;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .product-button:hover {
            background-color: #d4af37;
            color: #2c2c2c;
        }
        
        footer {
            background-color: #2c2c2c;
            color: #fff;
            padding: 40px 20px;
            margin-top: 50px;
            border-top: 3px solid #d4af37;
        }
        
        footer .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        footer h3 {
            font-size: 16px;
            margin-bottom: 15px;
            color: #d4af37;
        }
        
        footer p {
            font-size: 14px;
            line-height: 1.8;
        }
        
        footer a {
            color: #d4af37;
            text-decoration: none;
            font-size: 14px;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
        
        footer ul {
            list-style: none;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
