/* Arogyasthal — Modern responsive enhancements */
:root {
    --primary: #00a651;
    --primary-dark: #008844;
    --accent: #b0cb1f;
    --danger: #e74c3c;
    --whatsapp: #25d366;
    --shadow: 0 4px 24px rgba(0,0,0,.08);
    --radius: 12px;
    --product-img-ratio: 1 / 1;
}

/* Consistent product images */
.product-img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: var(--product-img-ratio);
    overflow: hidden;
    border-radius: var(--radius);
    background: #f8f9fa;
}
.product-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}
.product-card1:hover .product-img-frame img { transform: scale(1.05); }

.product-detail-main {
    aspect-ratio: 1 / 1;
    max-height: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f8f9fa;
}
.product-detail-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-wrap { width: 100%; }
.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.product-gallery-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
}
.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0,166,81,.2);
}
.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product card actions */
.product-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.btn-wishlist, .btn-whatsapp {
    flex: 1;
    min-width: 44px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: opacity .2s;
}
.btn-wishlist {
    background: #fff;
    color: var(--danger);
    border: 1px solid var(--danger);
}
.btn-wishlist:hover { background: #fff5f5; }
.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}
.btn-whatsapp:hover { opacity: .9; color: #fff; }

/* Modern product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.product-card1 {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.product-card1:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.product-button1 {
    width: 100%;
    margin-top: auto;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .2s;
}
.product-button1:hover:not(:disabled) { background: var(--primary-dark); }
.product-button1:disabled { opacity: .5; cursor: not-allowed; }

/* Hero carousel */
.carousel-item img {
    max-height: 520px;
    object-fit: cover;
    width: 100%;
}

/* Shop layout */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
}
.shop-sidebar {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}
.filter-group a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 4px;
}
.filter-group a:hover, .filter-group a.active {
    background: rgba(0,166,81,.1);
    color: var(--primary);
    font-weight: 600;
}

/* Cart page */
.cart-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 60px;
}
.cart-summary-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}
.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

/* Product detail */
.product-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

/* Landing sections */
.section-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
    text-align: center;
}
.trust-bar {
    background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
    padding: 48px 24px;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    text-decoration: none;
}
.floating-whatsapp:hover { color: #fff; transform: scale(1.08); }

/* Responsive */
@media (max-width: 992px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .product-detail-row { grid-template-columns: 1fr; }
    .padd1 { padding-left: 16px !important; padding-right: 16px !important; }
}
@media (max-width: 576px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card1 { padding: 10px; }
    .product-title1 { font-size: 13px; }
    .carousel-item img { max-height: 220px; }
    .product-card-actions { flex-direction: column; }
    .btn-wishlist, .btn-whatsapp { width: 100%; }
}
