

/* Hero Section */
.product-hero {
    position: relative;
    background: url('images/aboutus-hero.png') center/cover no-repeat;
    background-attachment: fixed;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.45);
     backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); 
    z-index: 1;
}

.product-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px; /* Accounts for fixed navbar */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.product-hero-title {
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.product-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

/* Custom Container */
.custom-container {
    max-width: 1140px;
}

/* Left Column - Image */
.product-image-wrap img {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    object-fit: contain;
    background-color: #fff;
    padding: 10px;
}

/* Middle Column - Details */
.product-details-content {
    font-family: 'Poppins', sans-serif;
    padding-right: 20px;
}

.category-tag span {
    display: inline-block;
    border: 4px solid #ddd;
    padding: 12px 14px;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'poppins', sans-serif;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 200;
    color: #1a1a1a;
}

.product-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
}

.thin-divider {
    height: 1px;
    background-color: #e5e5e5;
    width: 100%;
}

.product-description {
    font-size: 0.95rem;
    color: #444141;
    line-height: 1.8;
}

/* Pricing */
.pricing-section .current-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0a0500; /* Warm orange color from other prices in template */
}

.pricing-section .old-price {
    font-size: 1.2rem;
    color: #a0a0a0;
    text-decoration: line-through;
    font-weight: 500;
}

/* Color dot & quantity */
.color-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    cursor: pointer;
}

.color-dot.active-color {
    box-shadow: 0 0 0 2px #333;
}

.qty-input {
   width: 140px;
    padding: 3px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    text-align: start;
}

/* Button */
.add-to-cart-btn {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 0;
    font-weight: 200;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: smaller;
    padding: 15px 23px 15px 23px;
    margin-left: 90px;
    margin-top: 20px;
}

.add-to-cart-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Right Column - Specifications */
.specs-box {
    border: none;
    
}

.specs-title {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #333;
    border-bottom: 2px solid #e67e22;
    display: inline-block;
    padding-bottom: 5px;
}

.specs-product-name {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.specs-list li {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.specs-list li strong {
    color: #333;
    font-weight: 600;
}

/* Social icons */
.product-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #e67e22;
}


