 /* Basic Styling */
        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            color: #333;
            background-color: #f9f9f9;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Single Product Layout */
        .single-product-container {
            display: flex;
            gap: 50px;
            margin-top: 40px;
            background-color: #fff;
            padding: 40px;
            border-radius: 8px;
        }
        .product-gallery {
            flex: 1;
            text-align: center;
        }
        .main-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 1px solid #eee;
        }
        .product-thumbnails {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }
        .product-thumbnails img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border: 2px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
            transition: border-color 0.3s;
        }
        .product-thumbnails img:hover, .product-thumbnails img.active {
            border-color: #d9534f;
        }
        
        .product-details {
            flex: 1;
        }
        .product-details h1 {
            font-family: 'Merriweather', serif;
            font-size: 2.5rem;
            margin-top: 0;
            margin-bottom: 10px;
        }
        .product-price {
            font-size: 2rem;
            font-weight: 700;
            color: #d9534f;
            margin-bottom: 20px;
        }
        .product-description {
            line-height: 1.6;
            color: #555;
            margin-bottom: 25px;
        }

        /* Quantity Selector */
        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        .quantity-selector label {
            font-weight: 600;
            margin-right: 15px;
        }
        .quantity-selector button {
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
            border: 1px solid #ddd;
            background-color: #f5f5f5;
            cursor: pointer;
        }
        .quantity-selector input {
            width: 60px;
            height: 40px;
            text-align: center;
            font-size: 1.2rem;
            border: 1px solid #ddd;
            border-left: none;
            border-right: none;
            -moz-appearance: textfield; /* Firefox */
        }
        input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
            -webkit-appearance: none; /* Chrome, Safari, Edge, Opera */
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }
        .btn {
            flex: 1;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-add-to-cart {
            background-color: #d9534f;
            color: white;
            border: 2px solid #d9534f;
        }
        .btn-add-to-cart:hover {
            background-color: #c9302c;
            border-color: #c9302c;
        }
        .btn-buy-now {
            background-color: transparent;
            color: #d9534f;
            border: 2px solid #d9534f;
        }
        .btn-buy-now:hover {
            background-color: #d9534f;
            color: white;
        }

        /* Product Meta */
        .product-meta ul {
            list-style: none;
            padding: 0;
            color: #666;
        }
        .product-meta li {
            margin-bottom: 8px;
            border-bottom: 1px dashed #eee;
            padding-bottom: 8px;
        }
        .product-meta strong {
            color: #333;
        }

        /* Related Products */
        .related-products {
            margin-top: 60px;
            text-align: center;
        }
        .related-products h2 {
            font-family: 'Merriweather', serif;
            font-size: 2.2rem;
            margin-bottom: 40px;
        }
        .product-grid { /* Re-using from ourproducts page */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .product-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-align: center;
            padding: 20px;
        }
        .product-card img { max-width: 80%; height: 150px; object-fit: contain; }
        .product-card h3 { font-family: 'Merriweather', serif; font-size: 1.2rem; }
        .btn-product { display: inline-block; background-color: #555; color: white; padding: 8px 20px; text-decoration: none; border-radius: 5px; margin-top: 10px; }

        @media (max-width: 768px) {
            .single-product-container {
                flex-direction: column;
            }
        }