body {
    font-family: 'Poppins', sans-serif;
    background-color: #fafafa;
    color: #333;
    padding-bottom: 90px;
}

/* Header */
.header-bar {
    background: linear-gradient(135deg,#FF6F61,#FFB347);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.header-container {
    width: 90%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.header-bar img {
    height: 60px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.header-bar h1 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

/* Product Name */
.product-name {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0;
}

/* Carousel */
.carousel-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Container */
.custom-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Price Section */
.price-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 20px;
    margin-top: 20px;
}
.price-section h4 {
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}
.badges .badge {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.badge.stock { background-color: #28a745; color: white; }
.badge.trust { background-color: #ffc107; color: #333; }

.price-display .price {
    font-size: 1.8rem;
    color: #FF6F61;
    font-weight: 700;
}
.price-display .regular-price {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    display: block;
    margin-top: 5px;
}

/* Shipping Options */
.shipping-options .option {
    flex: 1;
    padding: 12px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}
.shipping-options .option.active {
    background: #28a745;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.shipping-options .option.active::after {
    content: "\f00c";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 10px;
    color: white;
    float:left;
}

/* Quantity Selector */
.quantity-selector button {
    border: none;
    background: #f0f0f0;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 50%;
    transition: 0.2s;
}
.quantity-selector button:hover { background: #ddd; }

/* Sticky CTA Button */
.btn-cta {
    background: linear-gradient(135deg,#FF6F61,#FFB347);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border: none;
    width: 90%;
    max-width: 400px;
    margin: 20px auto 0 auto;
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    text-align: center;
    transition: 0.3s;
}
.btn-cta:hover {
    opacity: 0.9;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

/* Video Section */
.video-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 15px;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Feature & Description Sections */
.feature-section, .description-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 20px;
    margin-top: 20px;
}
.feature-section h4, .description-section h4, .video-section h4, .price-section h4 {
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}
.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1rem;
}
.description-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.border-radius-24{
    border-radius: 24px!important;
}
.font-weight-22{
    font-size: 22px!important;
}

/* Footer */
.footer-bar {
    background: linear-gradient(135deg,#FF6F61,#FFB347);
    color: white;
    padding: 25px 0 20px;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.footer-container {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}
.footer-whatsapp, .footer-contact-number {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.footer-contact-number { background: white; color: #ffa74c; }
.footer-whatsapp:hover, .footer-contact-number:hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
}
.footer-socials a:hover { background: rgba(255,255,255,0.4); }

/* Mobile adjustments */
@media (max-width:576px){
    .shipping-options .option { flex:1 1 100%; }
    .feature-section, .description-section, .custom-container { max-width: 90%; padding: 14px; }
    .footer-container { flex-direction: column; gap: 15px; }
    .footer-whatsapp, .footer-contact-number { flex: 1 1 100%; justify-content: center; }
    .footer-socials { justify-content: center; margin-top: 10px; }
}

