/* =========================
   HERO
========================= */
.hero {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.70)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* =========================
   PRODUCT DETAIL PAGE
========================= */
.product-detail {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.product-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    object-fit: contain;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info h2 {
    font-size: 30px;
    margin-bottom: 18px;
    color: #1d3557;
    line-height: 1.3;
}

.product-info p {
    margin-bottom: 14px;
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.product-info strong {
    color: #111;
}
.product-info > * {
    margin-bottom: 12px;
}
.category,
.packing {
    font-size: 15px;
    color: #555;
}

.description {
    margin-top: 20px;
    color: #555;
}

.product-info .btn {
    margin-top: 25px;
    display: inline-block;
}
.tag {
    display:inline-block;
    background:#00aeef;
    color:#fff;
    padding:6px 12px;
    margin:4px 4px 0 0;
    border-radius:20px;
    font-size:12px;
}
.product-tags {
    margin-bottom: 10px;
}
/* SHARE SECTION */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}
.share-label {
    font-weight: 600;
    margin-right: 5px;
}
.share-buttons p {
    margin: 0;
    margin-right: 10px;
    font-weight: 600;
    color: #333;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.share-buttons a,
.share-copy {
    width: 38px;
    height: 38px;
    border-radius: 50%; /* 👈 THIS makes it round */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #333;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

/* Hover same as others */
.share-buttons a:hover,
.share-copy:hover {
    background: #0d6efd;
    color: #fff;
}
.stock-info {
    color: #28a745;
    font-weight: 600;
    font-size: 13px;
    margin: 10px 0;
}

.stock-info span {
    display: block;
    font-size: 12px;
    color: #555;
}
/* Colors */
.share-buttons a:nth-child(2) { background: #25D366; }
.share-buttons a:nth-child(3) { background: #1877F2; }
.share-buttons a:nth-child(4) { background: #1DA1F2; }

/* Hover effect */
.share-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.copy-link {
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    padding: 10px 16px;
    border-radius: 25px;
    border: none;
    background: #6c757d;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.copy-link:hover {
    background: #5a6268;
    transform: translateY(-2px);
}
.copy-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0ea5e9;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* SECONDARY CTA */
.secondary-cta {
    margin-top: 15px;
}

.secondary-cta p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}
.secondary-cta {
    margin-top: 15px;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 10px;
}
/* Optional: make ticks green */
.secondary-cta p::before {
    content: "✔";
    color: #16a34a;
    font-weight: bold;
}

/* BUTTON GROUP */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* COPY BUTTON */
.copy-link {
    background: #e5e7eb;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    margin-right: 10px;
    transition: 0.3s;
}

.copy-link:hover {
    background: #d1d5db;
}


.secondary-cta {
    background: linear-gradient(135deg, #f0f6ff, #f9fbff);
    padding: 14px;
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid #e3ecff;
}

.secondary-cta p {
    margin: 6px 0;
    font-size: 13px;
    color: #2b7cff;
    font-weight: 600;
}
/* TRUST BOX */
.trust-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 16px;
    border-radius: 12px;
    margin-top: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.trust-box p {
    margin: 8px 0;
    font-size: 13.5px;
    color: #222;
    font-weight: 500;
}
.composition-box {
    background: #f4f8ff;
    border-left: 5px solid #2b7cff;
    padding: 16px 18px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.composition-box h4 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #1a2b49;
}

.composition-box p {
    margin: 6px 0;
    font-size: 14px;
    color: #333;
}
.composition-list {
    list-style: none;     /* ❌ removes dots */
    padding-left: 0;      /* ❌ removes left gap */
    margin: 0;
}
.composition-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.btn.call {
    background: linear-gradient(135deg, #2b7cff, #00c6ff);
    color: #fff;
    padding: 11px 20px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(43,124,255,0.25);
    transition: 0.3s;
}

.btn.call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43,124,255,0.35);
}
@media (max-width: 768px) {

    .product-detail {
        flex-direction: column;
    }

    .btn.call,
    .copy-link {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .secondary-cta,
    .trust-box {
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .composition-box,
    .secondary-cta,
    .trust-box {
        padding: 12px;
    }

    .btn.call {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .copy-link {
        width: 100%;
        margin-bottom: 8px;
    }
}
/* =========================
   RELATED PRODUCTS
========================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card h3 a {
    color: #1d3557;
    text-decoration: none;
}

.product-card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
}

/* =========================
   CTA
========================= */
.cta {
    text-align: center;
    background: #f8f9fb;
    padding: 50px 30px;
    border-radius: 18px;
}

.cta h2 {
    margin-bottom: 12px;
    color: #1d3557;
}

.cta p {
    color: #555;
    margin-bottom: 20px;
}
/* =========================
   TRUST BADGES
========================= */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.badge-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: #1d3557;
}
/* =========================
   PRODUCT ENQUIRY POPUP
========================= */
.popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.popup-box{
    background: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    padding: 35px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    animation: popupFade 0.25s ease;
}

@keyframes popupFade{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-close{
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    cursor: pointer;
    color: #444;
    font-weight: 600;
    line-height: 1;
}

.popup-close:hover{
    color: #000;
}

.popup-box h3{
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #1d3557;
    font-weight: 700;
}

#productEnquiryForm{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#productEnquiryForm input,
#productEnquiryForm textarea{
    width: 100%;
    border: 1px solid #d8dce3;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    font-family: inherit;
}

#productEnquiryForm input:focus,
#productEnquiryForm textarea:focus{
    border-color: #0099e5;
    box-shadow: 0 0 0 3px rgba(0,153,229,0.08);
}

#productEnquiryForm textarea{
    min-height: 120px;
    resize: none;
    background: #f8fafc;
}

#productEnquiryForm button{
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    font-size: 16px;
}
.popup-note{
    font-size: 12px;
    color: #777;
    margin-top: 12px;
    text-align: center;
    line-height: 1.6;
}

.popup-note a{
    color: inherit;
    text-decoration: underline;
}

/* =========================
   MOBILE
========================= */
@media(max-width: 768px){

    .popup-box{
        padding: 28px 20px;
        border-radius: 14px;
    }

    .popup-box h3{
        font-size: 22px;
    }

    .popup-close{
        top: 10px;
        right: 14px;
        font-size: 24px;
    }
}
@media (max-width: 768px) {
    .trust-badges {
        gap: 15px;
    }

    .badge-item {
        padding: 8px 14px;
    }

    .badge-item img {
        width: 36px;
        height: 36px;
    }

    .badge-item span {
        font-size: 13px;
    }
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .hero {
        height: 140px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .product-detail {
        flex-direction: column;
        gap: 25px;
    }

    .product-info {
        text-align: center;
    }

    .product-info h2 {
        font-size: 24px;
    }

    .product-card img {
        height: 180px;
    }

    .product-info .btn {
        width: 100%;
        text-align: center;
    }
}