/*
 * Trosta Product Page — trosta-product.css
 * Path: hello-elementor-child/assets/trosta-product.css
 * Loaded ONLY on single product pages via functions.php
 *
 * FIX 2: Zoom effect added (.trosta-zoom-wrap + img.zoomed)
 * FIX 3: Thumbnail active state
 * FIX 4: Color swatch active state
 * FIX 7: Video section — native <video> + iframe both styled
 */
 
.trosta-product-page {
    color: #fff;
}

/* ==========================================================================
   GLASS
   ========================================================================== */
.trosta-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1.5px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
}

.trosta-glass-sm {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

/* ==========================================================================
   SECTION SPACING
   ========================================================================== */
.trosta-section {
    padding: 0 60px;
    margin-bottom: 120px;
}

.trosta-section:first-child {
    margin-top: 120px;
}

/* ==========================================================================
   SECTION 1 — HERO
   ========================================================================== */
.trosta-section:first-child .trosta-glass {
    border-radius: 0 0 20px 20px;
    border-top: none;
}

.trosta-hero-inner {
    display: flex;
    gap: 44px;
    padding: 40px;
    align-items: flex-start;
}

/* --- Gallery left col --- */
.trosta-gallery-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 720px;
}

/* --- Main image box --- */
.trosta-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* FIX 2: ZOOM WRAP — clips the scaled image */
.trosta-zoom-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: crosshair;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.trosta-active-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.25s ease, transform 0.3s ease;
    transform-origin: center center;
    will-change: transform;
}

/* FIX 2: Zoom scale on hover — JS adds .zoomed class */
.trosta-active-img.zoomed {
    transform: scale(2);
    cursor: crosshair;
}

/* --- Thumbnails --- */
.trosta-thumb-row {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap; 
    width: 100%;
	overflow-x: auto;  
	scrollbar-width: thin;
}

.trosta-thumb {
    flex: 0 0 132px;       /* Fixed width */
    width: 132px;
    height: 132px;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trosta-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border-radius: 10px;
}

/* FIX 3: Active thumb highlight */
.trosta-thumb.active {
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.15);
    /*padding: 10px;*/
    border-radius: 20px;
}

.trosta-thumb.active img.attachment-thumbnail.size-thumbnail {
    padding: 10px;
    border-radius: 20px;
}

/* --- Product Details right col --- */
.trosta-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.trosta-product-title {
    font-size: 96px;
    font-weight: 400;
    letter-spacing: 0px;
    color: #fff;
    line-height: 115px;
    margin: 0;
    font-family: 'Neue Haas Grotesk';
    text-transform: uppercase;
}

.trosta-product-subtitle {
    font-size: 24px;
    color: #FFFFFFCC;
    margin: 14px 0 14px 0;
    letter-spacing: 0px;
    line-height: 29px;
    font-family: 'Neue Haas Grotesk';
    font-weight: 400;
}

/* Stars */
.trosta-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trosta-rating .star {
    font-size: 15px;
    line-height: 1;
    height: 100%;
    max-height: 15px;
}

.trosta-review-count {
    font-size: 14px;
    color: #FFFFFF;
    margin-left: 5px;
    font-weight: 300;
    font-family: 'Neue Haas Grotesk';
    line-height: 17px;
}

/* Price */
.trosta-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
    /*flex-direction: row-reverse;*/
    /*justify-content: flex-end;*/
}

.trosta-price-wrap:has(del) {
    flex-direction: row-reverse !important;
    justify-content: flex-end;
}

.trosta-price-wrap:not(:has(del)) {
    align-items: center;
}

.trosta-price-wrap .woocommerce-Price-amount,
.trosta-price-wrap ins .woocommerce-Price-amount {
    font-size: 34px;
    font-weight: 400;
    color: #fff;
    line-height: 41px;
    letter-spacing: 0px;
    font-family: 'Neue Haas Grotesk';
}

.trosta-price-wrap del .woocommerce-Price-amount {
    font-size: 24px;
    color: #FFFFFF80;
    font-weight: 400;
    font-family: 'Neue Haas Grotesk';
    line-height: 29px;
    letter-spacing: 0px;
    text-decoration: line-through;
}

.trosta-price-wrap del {
    text-decoration: none;
}

.trosta-price-wrap ins { text-decoration: none; }

.trosta-emi {
    font-size: 12px;
    color: #FFFFFF;
    margin: 6px 0 24px 0;
    line-height: 14px;
    font-family: 'Neue Haas Grotesk';
}

.trosta-emi p {
    margin: 0;
}

.trosta-divider {
    height: 1.5px;
    background: #FFFFFF1A;
    margin: 34px 0;
}

/* FIX 4: Color Swatches */
.trosta-color-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
	margin-bottom: 34px;
}

.trosta-color-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trosta-color-swatch {
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    flex-shrink: 0;
    border-radius: 10px;
}

.trosta-color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* FIX 4: Active swatch */
.trosta-color-swatch.active {
    border: 1px solid rgba(255, 255, 255, 0.10);
    outline: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 1px 4px rgba(0, 0, 0, 0.2), inset 0 1.5px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.12);
    border-radius: 5px;
}

.trosta-label {
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0px;
    font-weight: 300;
    line-height: 22px;
    font-family: 'Neue Haas Grotesk';
}

/* Cart Row */
.trosta-cart-row {
    display: flex;
    gap: 14px;
    align-items: stretch;
    margin: 0 0 14px 0;
}

.single-product [type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: transparent;
}

.single-product .trosta-qty-wrap,
.single-product .trosta-btn-cart {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 47px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    border-right-color: rgba(255, 255, 255, 0.05);
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.2), inset -2px -2px 8px rgba(0, 0, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    box-sizing: border-box;
}

.single-product .trosta-qty-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 118px; /* Figma Width */
    height: 44px; /* Figma Height */
    padding: 0 12px;
}

.single-product .trosta-qty-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 24px;
    outline: none;
    transition: opacity 0.2s;
    height: 24px;padding: 0;
    width: 24px;
    height: 24px;
    outline: none;
    transition: opacity 0.2s;
    border: none;
}

.single-product .trosta-qty-btn:hover {
    opacity: 0.7;
}

div#trosta-tab-specifications {
    font-family: 'Neue Haas Grotesk';
}

.single-product a.added_to_cart.wc-forward {
    color: #fff;
    font-family: 'Neue Haas Grotesk';
    display: flex;
    padding: 0;
    align-items: center;
}

/* Quantity Input Field */
.single-product .trosta-qty-input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    width: 36px;
    outline: none;
    font-family: 'Neue Haas Grotesk';
    padding: 0;
}

.single-product .trosta-qty-btn:hover  {
    background: transparent !important;
}

.single-product .trosta-qty-input::-webkit-outer-spin-button,
.single-product .trosta-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.single-product .trosta-qty-input {
    -moz-appearance: textfield;
}

.single-product .trosta-btn-cart {
    height: 44px;
    padding: 0 14px 0 28px;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: 'Neue Haas Grotesk';
    text-transform: uppercase;
    gap: 10px;
}

.single-product .trosta-btn-cart:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        inset 2px 2px 5px rgba(255, 255, 255, 0.3),
        inset -2px -2px 8px rgba(0, 0, 0, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.4);
}

.single-product .trosta-btn-buynow {
    width: 100%;
    max-width: 323px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Neue Haas Grotesk';
    text-transform: uppercase;
    cursor: pointer;
    background: #CFA16BCC;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.3), inset -2px -2px 8px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.single-product .trosta-btn-buynow:hover {
    background: rgba(207, 161, 107, 0.9); /* Slightly more opaque on hover */
    box-shadow: 
        inset 2px 2px 8px rgba(255, 255, 255, 0.4),
        inset -2px -2px 8px rgba(0, 0, 0, 0.2),
        0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Share Row */
.trosta-share-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px 0 18px 0;
}

.trosta-share-row .trosta-label {
    margin-right: 6px;
}

.trosta-share-icon {
    transition: color 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
}

.trosta-share-icon:hover {
    transform: scale(1.15);
}

/* Icon Boxes */
.trosta-icon-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 512px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 1px 1px 5px rgba(255, 255, 255, 0.05), inset -2px -2px 10px rgba(0, 0, 0, 0.2), 0 8px 30px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.trosta-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 18px;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 18px 0;
}

.trosta-icon-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #FFFFFF33;
}

.trosta-icon-box svg {
    display: block;
    width: 34px;
    height: auto;
    overflow: visible;
}

.trosta-icon-box span {
    color: #FFFFFF;
    font-family: 'Neue Haas Grotesk';
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 22px;
}

/* ==========================================================================
   SECTION 2 — TABS
   ========================================================================== */
.trosta-tabs-section {
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
}

.trosta-tab-nav {
    display: flex;
    gap: 120px;
    border-bottom: 1px solid #FFFFFF33;
    margin-bottom: 34px;
    padding-bottom: 34px;
}

.single-product .trosta-tab-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0px;
    font-family: 'Neue Haas Grotesk';
    padding: 0;
    color: #FFFFFF;
    line-height: 29px;
}

.single-product .trosta-tab-btn.active {
    color: #fff;
    font-weight: 600;
}

.trosta-tab-pane { display: none; }
.trosta-tab-pane.active { display: block; }

/* Description grid */
.trosta-desc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 34px;
}

.trosta-desc-card {
    position: relative;
    padding: 40px;
    font-size: 18px;
    font-family: 'Neue Haas Grotesk';
    font-weight: 400;
    line-height: 22px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: inset 2px 2px 10px rgba(255, 255, 255, 0.05), inset -4px -4px 15px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trosta-desc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 0 0 0 2px;
    background: linear-gradient(90deg, #CFA16B 0%, #CFA16B 0%, rgba(255,255,255,0.18) 5%, rgba(255,255,255,0.18) 0% );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.trosta-desc-card h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 29px;
    font-family: 'Neue Haas Grotesk';
}

.trosta-desc-content {
    position: relative;
    padding: 40px 30px;
    font-size: 18px;
    font-family: 'Neue Haas Grotesk';
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: inset 2px 2px 10px rgba(255, 255, 255, 0.05), inset -4px -4px 15px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trosta-desc-content:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 0 0 0 2px;
    background: linear-gradient(90deg, #CFA16B 0%, #CFA16B 0%, rgba(255, 255, 255, 0.18) 5%, rgba(255, 255, 255, 0.18) 0%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Specs */
.trosta-specs-content {
    padding: 32px 36px;
}

.trosta-specs-content table {
    width: 100%;
    border-collapse: collapse;
}

.trosta-specs-table-wrap {
    padding: 0 0 10px 0;
}

.trosta-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.trosta-specs-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trosta-specs-table tr:last-child {
    border-bottom: none;
}

.trosta-specs-table th {
    text-align: left;
    padding: 14px 20px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    width: 38%;
}

.trosta-specs-table td {
    padding: 14px 20px;
    color: #fff;
}

.trosta-specs-empty {
    color: rgba(255,255,255,0.35);
    font-size: 14px;
    padding: 20px 0;
}

/* Reviews */
.trosta-reviews-wrap .woocommerce-Reviews-title,
.trosta-reviews-wrap #reply-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Neue Haas Grotesk';
}

.trosta-reviews-wrap .comment-text,
.trosta-reviews-wrap .woocommerce-review__author,
.trosta-reviews-wrap .woocommerce-review__published-date,
.trosta-reviews-wrap p {
    color: rgba(255,255,255,0.7);
}

.single-product.woocommerce .star-rating span::before {color: #CFA16B;}

.trosta-reviews-wrap .comment-form input[type="text"],
.trosta-reviews-wrap .comment-form input[type="email"],
.trosta-reviews-wrap .comment-form textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    width: 100%;
    margin-top: 5px;
}

.single-product .trosta-reviews-wrap .comment-form input[type="submit"],
.single-product .trosta-reviews-wrap .submit {
    width: 100%;
    max-width: 323px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    color: #FFFFFF !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    font-family: 'Neue Haas Grotesk';
    text-transform: uppercase;
    cursor: pointer;
    background: #CFA16BCC !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.3), inset -2px -2px 8px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.2s ease;
}

.single-product p.comment-form-cookies-consent {
    display: flex;
    gap: 8px;
    align-items: center;
}

.single-product .comment-form label {
    font-family: 'Neue Haas Grotesk';
    font-size: 18px;
    line-height: 26px;
    color: #fff;
}

.single-product .comment-form p.form-submit {
    margin-top: 0px !important;
}

.single-product p.comment-notes {
    margin-bottom: 20px !important;
    font-family: 'Neue Haas Grotesk';
}

#comments h2.woocommerce-Reviews-title {
    line-height: 1.2;
}

.comment-text p.meta, .comment-text .description {
    font-family: 'Neue Haas Grotesk';
}

.single-product .comment-form-rating {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-form-rating .stars a {
    color: #CFA16B;
}

/* ==========================================================================
   SECTION 3 — VIDEO
   FIX 7: iframe (YT/Vimeo) + native <video> both use 16:9 ratio
   ========================================================================== */

.trosta-video-outer {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
}

/* 16:9 ratio wrapper — iframe and video both fill it */
.trosta-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.trosta-video-wrap iframe,
.trosta-video-wrap video.trosta-native-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Native video controls styling */
.trosta-video-wrap video.trosta-native-video {
    object-fit: cover;
}

/* Image fallback */
.trosta-video-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.trosta-video-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   SECTION 4 — FEATURE IMAGE
   ========================================================================== */

.trosta-feature-img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.trosta-feat-mobile { display: none; }
.trosta-feat-desktop { display: block; }

/* ==========================================================================
   SECTION 5 — WHY TROSTA
   ========================================================================== */

.trosta-why-inner {
    border-radius: 20px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
    background-image: url(https://web.ifoxsolutions.com/trosta/wp-content/uploads/2026/06/Frame-1116608000.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.trosta-why-header {
    text-align: center;
    max-width: 622px;
}

.trosta-why-eyebrow {
    font-size: 14px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    color: #333333CC;
    font-family: 'Neue Haas Grotesk';
    font-weight: 500;
    line-height: 17px;
}

.single-product .trosta-why-heading {
    color: #333333;
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: 0px;
    font-family: Canela Trial;
    width: 100%;
    max-width: 334px;
    text-align: center;
    margin: 24px auto;
}

.trosta-why-sub {
    font-size: 18px;
    line-height: 22px;
    color: #333333CC;
    margin: 0;
    font-family: 'Neue Haas Grotesk';
    font-weight: 400;
}

/* Cards row */
/* Main Glass Container */
.trosta-why-cards{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px; /* row-gap 32px, column-gap ne padding thi handle karishu */
    row-gap: 20px; /* rows vachhe extra space, jarur mujab adjust karo */
    padding: 53px 40px 40px 40px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 2px solid #FFFFFF33;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), inset 0 -1px 0 rgba(0, 0, 0, .08);
    width: 100%;
    max-width: 1260px;
}

.trosta-why-cards::before{
    content: "";
    position: absolute;
    inset: 1;
    ointer-events: none;
    border-radius: inherit;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.18) 0%,
        rgba(255,255,255,.05) 25%,
        rgba(255,255,255,0) 60%
    );
}

/* Cards */
.trosta-why-card{
    position:relative;
    padding: 23px 32px 23px 0;
	border-right: 1px solid #FFFFFF80;
}

.trosta-why-card.no-border-right{
    border-right: none;
	padding-right: 0;
}

.no-border-right .trosta-why-num {
    right: 4px;
}

/* Horizontal border - row vachhe */
.trosta-why-row-divider{
    grid-column: 1 / -1;
    height: 1px;
    background-color: #FFFFFF80;
    margin: 8px 0;
}

/* .trosta-why-card:not(:last-child){
    border-right:1px solid #FFFFFF80;
} */

.trosta-why-card:last-child {
    padding-right: 32px;
}

.trosta-why-card:last-child .trosta-why-num {
    right: 38px;
}

.trosta-why-num{
    position: absolute;
    top: -30px;
    right: 38px;
    font-family: 'Canela Trial';
    font-size: 70px;
    font-weight: 400;
    line-height: 76px;
    color: #33333333;
    user-select: none;
    pointer-events: none;
}

.single-product .trosta-why-card-title{
    color: #333333;
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0px;
    font-family: 'Neue Haas Grotesk';
    margin: 0;
    margin-bottom: 16px;
	width: 80%;
}

.trosta-why-card-body{
    margin: 0;
    font-size: 18px;
    line-height: 22px;
    color: #333333CC;
    font-family: 'Neue Haas Grotesk';
    font-weight: 400;
    letter-spacing: 0px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1600px) {
	.trosta-gallery-wrap {
		max-width: 560px;
	}
}

@media (max-width: 1366px) {
    .trosta-section { padding: 0 40px; }
	.single-product .trosta-thumb.active img.attachment-thumbnail.size-thumbnail {padding: 5px; border-radius: 10px;}
	.trosta-thumb.active {border-radius: 10px;}
	.trosta-thumb-row {gap: 6px; flex-wrap: nowrap;}
}

@media (max-width: 1024px) {
    .trosta-section { padding: 0 30px; margin-bottom: 80px;}

    .trosta-hero-inner {
        /*flex-direction: column;*/
        padding: 28px;
        gap: 36px;
        min-height: unset;
    }
	

    .trosta-gallery-wrap {
        /*flex: none;*/
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .trosta-icon-boxes {
        padding: 20px;
    }

    .trosta-product-title { font-size: 64px; line-height: 77px; }
    .trosta-product-details { width: 100%; }

    .trosta-why-cards { grid-template-columns: 1fr; padding: 53px 40px 40px 40px;}
    .trosta-why-card { border-right: none !important; border-bottom: 1px solid #FFFFFF80;padding-right: 0;}
    .trosta-why-card:last-child { border-bottom: none; }
    .trosta-why-inner { padding: 60px 40px; }
	.trosta-why-num {right: 0;}
	.trosta-thumb-row {gap: 6px; flex-wrap: nowrap;}
	.trosta-why-row-divider {
		display: none;
	}
	.trosta-why-card:last-child .trosta-why-num {
		right: 4px;
	}
	.trosta-why-num {top: -14px;}
	.trosta-why-card {padding: 23px 32px 33px 0;}
}

@media (max-width: 990px) {
    .trosta-hero-inner {
        flex-direction: column;
    }
    .trosta-gallery-wrap {
        max-width: 100%;
    }
	.trosta-desc-grid { grid-template-columns: 1fr; }
	.trosta-thumb{flex: 0 0 100px; width: 100px; height: 100px;}
}

@media (max-width: 767px) {
    .trosta-section {
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .trosta-section:first-child { margin-top: 100px; }

    .trosta-hero-inner { padding: 20px; gap: 60px; }

    .trosta-gallery-wrap { max-width: 100%; }

    .single-product .trosta-btn-cart { width: 100%; text-align: center; }

    .trosta-icon-boxes { flex-direction: column; gap: 0px; padding: 24px 40px;}
    .trosta-icon-box {padding: 0; width: 100%;}

    .trosta-why-inner { padding: 60px 18px; }

    /* Mobile: show mobile feature image */
    .trosta-feat-desktop { display: none; }
    .trosta-feat-mobile  { display: block; }

    /* Video height */
    .trosta-video-wrap {
        padding-top: 56.25%; /* keeps 16:9 on mobile */
    }
	.trosta-tab-nav {gap: 24px; overflow: scroll; margin-bottom: 34px; padding-bottom: 34px;}
	.trosta-thumb-row {flex-wrap: nowrap; overflow: scroll; gap: 6px;}
	.trosta-thumb {min-width: 80px;}
	.single-product .trosta-btn-buynow {
        max-width: 100%;
    }
    .trosta-icon-box:not(:last-child)::after {
        display:none;
    }
    .trosta-icon-box:not(:last-child) { border-bottom: 1px solid #FFFFFF33; border-radius: 0; padding-bottom: 32px; margin-bottom: 32px; }
    
    .single-product .trosta-tab-btn{font-size: 21px;line-height: 25px;}
    
    .trosta-desc-card h3 {font-size: 18px;line-height: 22px;}
    .trosta-desc-card {line-height: 17px;font-size: 14px;}
    .trosta-desc-grid {gap: 34px;}
    .trosta-video-outer {border-radius: 10px;}
    .trosta-why-cards {padding: 40px 20px;}
    .trosta-why-card-body {font-size: 16px;line-height: 19px;}
    .trosta-why-card {padding: 0;}
    .trosta-why-card:not(:last-child) { padding-bottom: 32px; }
    .trosta-why-num { font-size: 60px; top: -34px; right: 0px; }
    .trosta-why-inner {background-image: url(https://web.ifoxsolutions.com/trosta/wp-content/uploads/2026/07/Frame-2147226910.png);}
	.trosta-thumb{flex: 0 0 80px; width: 80px; height: 80px;}
	.trosta-why-cards {row-gap: 40px;}
}