@font-face {
  font-family: 'Metropolis';
  src: url('/wp-content/themes/astra-child/fonts/Metropolis-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('/wp-content/themes/astra-child/fonts/Metropolis-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('/wp-content/themes/astra-child/fonts/Metropolis-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.v-box-main {
    --primary: #D1472D;
    --text: #404040;
    --text-dark: #2D3748;
    --text-muted: #4A5568;
    --text-light: #718096;
    --border: #A3A3A3;
    --border-light: #D4D4D4;
    --border-soft: #CBD5E0;
    --gray-light: #F1F3F5;
    --gray-hover: #f9f9f9;
    --gray-text: #687076;
    --gray-muted: #A3A3A3;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --primary-shadow: #D1472D40;

    font-family: sans-serif;
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.variation-wrapper {
    position: relative;
    box-shadow: 0px 1px 2px 0px #0000000D;
}

.variation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
}

.variation-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.variation-badge {
    background: var(--gray-light);
    color: var(--gray-text);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.variation-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #777;
    border-bottom: 2px solid #777;
    transform: rotate(45deg);
    transition: 0.3s;
    margin-bottom: 4px;
}

.open .variation-arrow {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}

.variation-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 12px;
    z-index: 100;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
}

.open .variation-dropdown {
    display: block;
}

.variation-item {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.variation-item:hover {
    background: var(--gray-hover);
}

.variation-price {
    white-space: nowrap;
}

.deal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.deal-card {
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 15px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.deal-card.active {
    border-color: var(--primary);
    box-shadow: 0px 0px 10px 0px var(--primary-shadow);
}

.deal-card.disabled {
    background: #f8f8f8;
    border-color: #e2e2e2;

    color: #9b9b9b;

    opacity: 0.7;

    cursor: not-allowed;
    pointer-events: none;

    box-shadow: none;
}

.deal-card h6 {
    font-size: 0.875rem;
    color: var(--text);
    font-family: 'Metropolis' !important;
    font-weight: 500;
    line-height: 1;
}

.price-display {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 5px;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0px;
    margin: 0px;
}

.check-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-soft);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--white);
}

.active .check-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.active .check-icon::after {
    content: '✓';
    font-weight: bold;
}

.main-price {
    font-family: 'Metropolis';
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.33;
}

.original-price {
    color: var(--gray-muted);
    text-decoration: line-through;
    font-family: 'Metropolis';
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0%;

}

.buy-now-btn {
    background: var(--primary);
    color: var(--white) !important;
    text-align: center;
    padding: 24px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.25rem;
    cursor: pointer;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    box-shadow: 0px 0px 10px 0px #D1472D40 !important;
}

.footer-info {
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
    color: #737373;
    padding: 0 5px;
}

.deal-terms-container {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
    gap: 10px;
}

.deal-terms-container .terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.deal-terms-container .terms-header h3 {
    margin: 0;
    font-size: 1rem;
    font-family: 'Metropolis', sans-serif !important;
    color: #404040;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0px;
}

.deal-terms-container .terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deal-terms-container .term-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.deal-terms-container .term-check {
    width: 20px;
    height: 20px;
    background: #FFF5F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-terms-container .term-check::after {
    content: '✓';
    color: #D1472D;
    font-size: 0.75rem;
    font-weight: bold;
}

.deal-terms-container .variation-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-135deg);
    transition: transform 0.3s ease;
}

.deal-terms-container .terms-content {
    max-height: 500px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.deal-terms-container.closed .terms-content {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.deal-terms-container.closed .variation-arrow {
    transform: rotate(45deg);
}

.review-snippet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Metropolis', sans-serif;
}

.stars {
    display: flex;
    gap: 2px;
    color: #FFA500;
    font-size: 20px;
    line-height: 1;
}

.rating-text {
    font-size: 1.125rem;
    color: #4A5568;
    display: flex;
    gap: 4px;
    align-items: center;
}

.score {
    font-family: 'Metropolis';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #404040;

}

.count,
.count a {
    color: #737373;
    font-family: 'Metropolis';
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: normal;
    text-decoration: underline;
    text-decoration-color: #D4D4D4;
    text-underline-offset: 3px;
}

.count a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

.hero-gallery {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1200px;
    max-height: 500px;
    margin: 0 auto;
    gap: 12px;
}

.main-display {
    flex: 3;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}

.main-display img {
    max-width: 100%;
    height: auto;

    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: opacity 0.25s ease-in-out;
}

.slider-wrapper {
    flex: 0 0 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slider-viewport {
    flex-grow: 1;
    width: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 0;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
}

.slider-viewport::-webkit-scrollbar {
    display: none;
}

.card {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin: 0 0 12px 0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.45;
    flex-shrink: 0;
}

.card.active {
    border-color: #0073aa;
    opacity: 1;
    transform: scale(1.03);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-btn {
    background: none !important;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: #A3A3A3 !important;
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .hero-gallery {
        flex-direction: column !important;
        max-height: none !important;
    }

    .main-display {
        width: 100% !important;
        flex: none !important;
    }

    .main-display img {
        aspect-ratio: 16 / 9;
        height: auto !important;
    }

    .slider-wrapper {
        flex-direction: row !important;
        width: 100% !important;
        height: auto !important;
        flex: none !important;
        align-items: center;
        gap: 8px;
    }

    .slider-viewport {
        display: flex !important;
        flex-direction: row !important; 
        overflow-x: auto !important;   
        overflow-y: hidden !important;  
        padding: 8px 0 !important;
        width: 100% !important;
        scroll-linecap: round;
        -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent) !important;
        mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent) !important;
    }

    .card {
        width: 30% !important;      
        aspect-ratio: 16 / 10 !important;
        flex-shrink: 0 !important;     
        margin: 0 5px !important;   
    }

    .nav-btn {
        align-items: center !important;
        width: auto !important;
        flex-shrink: 0 !important;
        padding: 10px 5px !important;
    }

    .nav-btn.up svg {
        transform: rotate(-90deg) !important; 
    }

    .nav-btn.down svg {
        transform: rotate(-90deg) !important;
    }
}

.tldr-wrapper {
    border-top: 1px solid var(--border);
}

.tldr-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tldr-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-muted);
}

.tldr-check {
    width: 20px;
    height: 20px;
    background: #FFF5F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tldr-check::after {
    content: '✓';
    color: #D1472D;
    font-size: 0.75rem;
    font-weight: bold;
}

.tldr-content {
    max-height: 500px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tabs-nav {
    --coral-text: #D1472D;
    --coral-bg: #FAEDEA;
    --border-color: #737373;
    --text-inactive: #737373;

    display: flex;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

a.tab-btn {
    flex: 1;
    text-align: center;
    display: inline-block;
    padding: 12px 10px;
    cursor: pointer;
    color: var(--text-inactive);
    text-decoration: none;
    border: none;
    border-radius: 6px 6px 0 0;
    margin-bottom: -1px;
    transition: 0.2s ease;

    font-family: 'Metropolis';
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: 0%;
    outline: 0;
}
a.tab-btn:focus {
    outline: none;
}

a.tab-btn.active {
    color: var(--coral-text);
    background-color: var(--coral-bg);
    border: 1px solid var(--coral-text);
    position: relative;
    z-index: 1;
}

.product-overview h1,
.product-overview h2,
.product-overview h3 {
    font-family: 'Metropolis';
    font-weight: 700;
    font-style: Bold;
    font-size: 1.875rem;
    line-height: 1.8;
    letter-spacing: 0%;

}

.product-overview p {
    color: #404040;
    font-family: 'Metropolis';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0%;
    text-align: justify;

}

.product-overview ul {
    margin-bottom: 0;
}

.product-overview a {
    color: #D1472D;
    text-decoration: none;
    font-weight: 500;
}

.product-overview a:hover {
    text-decoration: underline;
}


.aag-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    font-family: sans-serif;
}

.aag-card {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    padding: 30px;
    gap: 38px;
}

.aag-card.is-graphic-design {
    background: #FAFAFA;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.aag-card:last-child {
    margin-bottom: 0;
}

.aag-card--reverse {
    flex-direction: row-reverse;
    background: #FAFAFA;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
}


.aag-text-content h1,
.aag-text-content h2,
.aag-text-content h3,
.aag-text-content h4,
.aag-text-content h5,
.aag-text-content h6 {
    font-family: 'Metropolis', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 28px;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.aag-text-content p {
    font-family: 'Metropolis', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.aag-text-content a {
    font-family: 'Metropolis', sans-serif;
    font-weight: 500;
    color: #0073aa;
    text-decoration: none;
}

.aag-text-content a:hover {
    text-decoration: underline;
}

.aag-text-content ul {
    padding-left: 5px;
    margin-left: 0;
    list-style: none;
}

.aag-text-content li {
    display: block;
    position: relative;
    padding-left: 18px;
}

.aag-text-content li::before {
    content: "•";
    color: #404040;
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    position: absolute;
    left: 0;
    top: 2px;
}


.aag-text {
    flex: 0 0 40%;
    max-width: 40%;
}

.aag-slider-container {
    flex: 1;
    text-align: center;
}

.aag-slider-wrap {
    width: 100%;
    aspect-ratio: 470 / 246;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow:
    0px 4px 6px -2px #0000000D,
    0px 10px 15px -3px #0000001A;
}

.aag-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.aag-slide {
    flex: 0 0 100%;
    height: 100%;
}

.aag-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aag-caption {
    margin-top: 10px;
    color: #777;
}

.aag-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.aag-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    min-height: 6px;
    background: #ccc;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s, background 0.2s;
    outline: none !important;
    box-shadow: none !important;
}

.aag-dot--active {
    background: #e67e22;
}

.aag-dot:focus-visible {
    outline: 2px solid #e67e22 !important;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .aag-card {
        flex-direction: column-reverse;
    }

    .aag-text {
        flex: 1;
        max-width: 100%;
    }
}

.product-audience-list {
    font-family: 'Metropolis';
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0%;
    color: #404040;
    padding-left: 24px;
    margin-left: 0;
}

.product-specs-list {
    font-family: 'Metropolis';
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    color: #404040;
    padding-left: 24px;
    margin-left: 0;
    margin-bottom: 0;
}

.alternative-product-list{
    font-family: 'Metropolis';
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    color: #404040;
    padding-left: 24px;
    margin-left: 0;
}

.alternative-product-list a {
    color: #404040;
}

.alternative-product-list a:hover {
    text-decoration: underline;
}

.product-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 20px;
    padding-left: 0;
    margin: 0;
    list-style: none;

    font-weight: 500;
    font-family: 'Metropolis';
    font-size: 1rem;
    line-height: 24px;
    color: #404040;
    white-space: nowrap;
}

.product-audience-grid li {
    position: relative;
    padding-left: 16px;
}

.product-audience-grid li::before {
    content: "•";
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .product-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ts-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.ts-outer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ts-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ts-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.ts-card {
    flex-shrink: 0;
    padding: 24px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    gap: 18px
}

.ts-stars {
    display: flex;
}

.ts-text {
    font-family: 'Metropolis', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
    color: #404040;
    margin: 0;
}

.ts-divider {
    height: 1px;
    background: #e0e0e0;
}

.ts-author {
    font-family: 'Metropolis', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2;
    color: #404040;
}

.ts-btn ,
.ts-btn:focus {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.ts-btn:hover {
    background: #f0f0f0;
    border-color: #bbb;
}
.ts-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.ts-btn svg {
    display: block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    stroke: #404040;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

body:has(.pt-head-row-actions th:nth-child(4):last-child) #more-plans,
body:has(.pt-head-row-actions th:nth-child(3):last-child) #more-plans,
body:has(.pt-head-row-actions th:nth-child(2):last-child) #more-plans {
    display: none;
}

.pt-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 10px;
    scroll-behavior: smooth;
    box-shadow: 0 0 0 1px #A3A3A3; 
}

.pt-table {
    display: table; 
    width: 100%;
    min-width: 800px;
    font-family: 'Metropolis', sans-serif;
    background: #fff;
    border-collapse: separate; 
    border-spacing: 0; 
    margin: 0;
}

.pt-wrapper::-webkit-scrollbar {
    height: 8px; 
}

.pt-wrapper::-webkit-scrollbar-track {
    background: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pt-wrapper::-webkit-scrollbar-thumb {
    background: #A3A3A3; 
    border-radius: 10px;
}

.pt-table th:not(:last-child), 
.pt-table td:not(:last-child) {
    border-right: 1px solid #A3A3A3;
}

.pt-table tr, 
.pt-table th, 
.pt-table td {
    border-top: none;
    border-bottom: none;
}

.pt-table th,
.pt-table td {
    padding: 12px 15px;
    text-align: center;
    vertical-align: middle;
    min-width: 280px;
}

.pt-feature-col {
    text-align: center !important;
    color: #444;
    font-weight: 700;
    width: 30%;
}

.pt-feature-col,
.pt-feature-name {
    position: sticky;
    left: 0;
    z-index: 20;
    background: #fff;
    box-shadow: 2px 0 6px rgba(0,0,0,0.08);
}

.pt-feature-col {
    z-index: 30;
    background: #f9f9f9 !important;
}

.pt-head-row-names th {
    background: #f9f9f9;
    height: 50px;
}

.pt-feature-col,
.pt-name {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 28px;
    color: #404040;
}

.pt-price {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height:36px;
    gap: 8px;
}

.pt-price small {
    align-self: end;
    font-size: 1rem;
    text-decoration: line-through;
    color: #A3A3A3;
    font-weight: 400;
    line-height:24px;
}

.pt-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background: #E5E5E5;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    color: #555;
    transition: all 0.2s;
}

.pt-btn:hover,
.pt-btn.selected {
    background: #D1472D;
    color: #fff !important;
    border: none;
}

.pt-btn:hover,
.pt-btn.selected:hover {
    color: #fff !important;
}

.pt-btn:hover,
.pt-btn:focus {
    color: inherit;
}

.pt-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.pt-table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}
.pt-table tbody tr:nth-child(odd) .pt-feature-name {
    background-color: #f9f9f9;
}


.pt-feature-name {
    text-align: start !important;
    color: #525252;
    font-size: 21.78px;
    font-family: 'Metropolis';
    line-height:32.67px;
    font-weight: 500;
    letter-spacing: 0;
    vertical-align: middle;
}

.pt-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.pt-icon.check {
    border: 1.5px solid #4CAF50;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.05);
}

.pt-icon.cross {
    border: 1.5px solid #F44336;
    color: #F44336;
    background: rgba(244, 67, 54, 0.05);
}

.pt-wrapper::-webkit-scrollbar {
    height: 6px;
}

.pt-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .pt-wrapper {
        padding: 0;
    }

    .pt-table {
        min-width: 700px;
    }
}

.card-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}
.card-form-wrapper p {
    margin-top: 10px !important;
}

.side-panel {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 8px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    padding: 30px;
}

@media (min-width: 1024px) {
    .side-panel {
        flex: 0 0 30%;
        width: 30%;
        position: sticky;
        top: 20px;
        align-self: flex-start; 
        margin-bottom: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); 
        transition: box-shadow 0.3s ease;
    }

    .side-panel:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }
}

.side-panel h3 {
    font-family: 'Metropolis';
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.6;
    color:#404040;
}

.side-panel p {
    font-family: Metropolis;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0%;
    color:#404040;
    margin: 0;
}

.user-avatar img {
    border-radius: 50%;
    display: block;
    border: 1px solid #eee;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-meta-text {
    display: flex;
    flex-direction: column;
}

.static-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
}

.star-rating-input {
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.star-svg {
    cursor: pointer;
    transition: transform 0.2s;
}

.star-svg:hover {
    transform: scale(1.2);
}

.qa-section {
    width: 100%;
    margin: 0 auto;
    font-family: 'Metropolis', sans-serif;
    box-sizing: border-box;
}

.qa-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.qa-tabs .tab {
    padding: 10px 30px;
    cursor: pointer;
    color: #737373;
    font-size: 1.25rem;
    border-bottom: 1px solid #737373;
}

.qa-tabs .tab.active {
    color: #d35432;
    border-bottom: 2px solid #D1472D;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.empty-state-card {
    background: #fff;
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.empty-state-card h3 {
    font-family: Metropolis;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    color: #404040;
}
.empty-state-card p {
    font-family: Metropolis;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: #404040;
    margin: 0;
}


.qa-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.side-panel {
    flex: 0 0 30%;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.content-panel {
    flex: 0 0 70%;
    padding: 10px 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.qa-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.qa-item.hidden-review {
    display: none;
}

.qa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviews-list > .qa-item:last-child {
    border-bottom: none;
}

.btn-ask {
    background: #d35432;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .qa-container {
        flex-direction: column;
    }
}

.inline-qa-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inline-qa-form textarea,
.inline-qa-form input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 0.875rem;
}

.guest-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-submit {
    position: relative;
    background: #d35432;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s;
    min-width: 100px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit.is-loading .btn-text {
    visibility: hidden;
    opacity: 0;
}

.btn-submit.is-loading {
    pointer-events: none;
}

.wp-loader {
    display: none;
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #ffffff; 
    border-radius: 50%;
}

.btn-submit.is-loading .wp-loader {
    display: block;
    animation: wp-spin 1s infinite linear;
}

.wp-loader::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    width: 5px;
    height: 5px;
    background-color: #d35432; 
    border-radius: 50%;
}

@keyframes wp-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.logged-in-as {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.form-message {
    font-size: 0.75rem;
    margin-top: 5px;
}

.qa-modal-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
}

.qa-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 888px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.qa-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

.btn-open-popup {
    background: #d35432;
    color: #fff;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 30px;
}

.btn-open-popup:hover {
    background: #b44326;
}

.rating-summary-wrapper {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.average-score {
    font-family: 'Metropolis';
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-left: 8px;
    color: #404040;
}

.based-on {
    color: #A3A3A3;
    margin: 5px 0 20px 0;
    font-family: 'Metropolis';
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 20px;
    letter-spacing: 0%;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.star-label {
    flex: 0 0 45px;
    color: #737373;
    white-space: nowrap;
    font-family: Metropolis;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
}

.bar-container {
    flex-grow: 1;
    background: #eee;
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    background: #FFA500;
    height: 100%;
    border-radius: 10px;
}

.count-label {
    flex: 0 0 30px;
    text-align: right;
    color: #444;
    transition: color 0.2s;
}

.count-label:not([data-star]) {
    cursor: default;
    opacity: 0.4;
    pointer-events: none;
}

.count-label[data-star] {
    color: #D1472D;
    text-decoration: underline;
}

.count-label.active-filter {
    color: #D1472D;
    font-weight: 700;
}

.btn-filter-reset {
    display: none;
    margin-top: 12px;
    color: #D1472D;
    font-size: 0.875rem;
    text-decoration: underline;
    cursor: pointer;
}

.btn-filter-reset:hover {
    opacity: 0.75;
}

.summary-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.btn-full {
    display: block;
    width: 100%;
    max-width: fit-content;
    background: #D1472D;
    padding: 10px 34px;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top:30px;
}
.big-stars {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 0px;
}
.big-stars svg {
    margin-right: 2px;
}

.qa-header {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    margin-bottom: 12px;
}

.user-block {
    display: flex;
    gap: 12px;
    align-items: center;
}

.user-name {
    display: block;
    font-size: 1rem;
    color: #2D3748;
    line-height: 1.2;
}

.user-title {
    font-size: 0.85rem;
    color: #718096;
}

.meta-block {
    text-align: right; 
}

.static-stars {
    display: flex;
    justify-content: flex-end;
    gap: 2px;
    margin-bottom: 4px;
}

.review-date {
    font-size: 0.85rem;
    line-height: 1;
    color: #737373;
}

.review-text {
    color: #4A5568;
    line-height: 1.6;
    margin-top: 8px;
    font-size: 1rem;
}

.user-avatar img {
    border-radius: 50%;
    border: 1px solid #E2E8F0;
}

.inline-qa-form {
    font-family: sans-serif;
    color: #333;
}

.qa-form-title {
    margin-bottom: 25px;
    font-family: Metropolis  !important;
    font-weight: 700 !important;
    font-size: 1.875rem !important;
    line-height: 1.8 !important;
    letter-spacing: 0;

}

.qa-label {
    display: block;
    font-size: 14px;
    color: #404040;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: Metropolis;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.star-rating-input {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
    justify-content: start;
}

.star-svg {
    cursor: pointer;
}

.inline-qa-form textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    font-family: Inter,Metropolis, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 20px;
    resize: vertical; 
    min-height: 100px;
    max-height: 400px;
}

.inline-qa-form textarea::placeholder {
    color: #A3A3A3;

}
 
.inline-qa-form .btn-submit {
    background-color: #D1472D;
    color: #fff;
    max-width: 100px;
    border: none;
    padding: 5px 0px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.inline-qa-form .btn-submit:hover {
    background-color: #b53e2a;
}

.faq-section {
    padding: 0 20px;
    font-family: sans-serif;
}

.faq-accordion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.faq-card {
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #D4D4D4;
    padding: 20px 24px;
    height: fit-content;
}

.faq-card summary {
    display: flex;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-family: 'Metropolis';
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #404040;

}

.faq-card[open] summary {
    margin-bottom: 18px;
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.dot {
    width: 9px;
    height: 9px;
    background: #A3A3A3;
    border-radius: 50%;
    margin-right: 15px;
}

.icon {
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: 0.3s;
}

.faq-card[open] .icon {
    transform: rotate(-135deg);
}

.faq-content {
    padding-top: 18px;
    border-top: 1px solid #E5E5E5;
    color: #404040;
    font-size: 0.9rem;
}

.faq-content p {
    margin: 0;
}

@media (max-width: 850px) {
    .faq-accordion-grid {
        grid-template-columns: 1fr;
    }
}

.ptm-pricing-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.ptm-plan-header {
    color: #e65c3c;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 400;
}

.ptm-card {
    background: white;
    width: 100%;
    max-width: 360px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.ptm-card-content {
    padding: 35px 25px;
    text-align: center;
}

.ptm-plan-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: #333;
}

.ptm-price-section {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ptm-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.ptm-old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 1rem;
}

.ptm-current-price {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.ptm-nav-link {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e5e5;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.2s;
}

.ptm-nav-link::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2.5px solid #666;
    border-right: 2.5px solid #666;
}

.ptm-prev {
    left: -43px;
}

.ptm-prev::before {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.ptm-next {
    right: -43px;
}

.ptm-next::before {
    transform: rotate(45deg);
    margin-right: 3px;
}

.ptm-buy-link {
    display: block;
    background-color: #D1472D;
    color: white;
    padding: 14px 0;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background 0.2s;
}

.ptm-guarantees {
    font-size: 0.875rem;
    color: #737373;
    line-height: 1.5;
    margin-bottom: 30px;
}

.ptm-divider {
    height: 1px;
    background-color: #eee;
    margin: 0 0 25px 0;
}

.ptm-accordion-header {
    width: 100%;
    background: none !important;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #444 !important;
    cursor: pointer;
    padding: 0;
}

.ptm-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #777;
    border-bottom: 2px solid #777;
    transform: rotate(-135deg);
    transition: 0.3s;
    margin-bottom: -4px;
    display: inline-block;
}

.ptm-icon.ptm-opened {
    transform: rotate(45deg);
    margin-bottom: 4px;
}

.ptm-features-list {
    list-style: none;
    padding: 20px 0 0 0;
    margin: 0;
    text-align: left;
}

.ptm-features-list li {
    font-size: 0.875rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #555;
}

.ptm-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #fff1f0;
    color: #e65c3c;
    border-radius: 50%;
    font-size: 10px;
    margin-right: 12px;
    border: 1px solid #ffd8d3;
    flex-shrink: 0;
}

.bottom-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    background: #fff;
    z-index: 9999;

    border-radius: 16px 16px 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);

    transition: transform 0.35s ease;

    transform: translateY(0);

    touch-action: none;
}
.bottom-sheet.collapsed {
    transform: translateY(calc(100% - 30px));
}
.bottom-sheet-handle {
    width: 60px;
    height: 6px;
    background: #ccc;
    border-radius: 999px;
    margin: 10px auto 15px;
}

.vbs-main {
    --vbs-primary: #D1472D;
    --vbs-border: #E0E0E0;
    width: 100%;
    font-family: 'Metropolis', sans-serif;
}

.vbs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.vbs-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.vbs-variation-wrapper {
    flex: 1;
    position: relative;
    min-width: 0; 
}

.vbs-variation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid var(--vbs-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.vbs-variation-title {
    font-size: 15px;
    color: #444;
}

.vbs-variation-badge {
    background: #F0F2F5;
    color: #6C757D;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 5px;
    white-space: nowrap;
}

.vbs-deal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.vbs-deal-card {
    border: 1.5px solid var(--vbs-primary);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vbs-deal-card.vbs-active {
    background: var(--vbs-primary);
    color: #fff;
    box-shadow: 0px 0px 10px 0px #D1472D40;
}

h6.vbs-deal-tag {
    margin: 2px;
}

.vbs-deal-card.vbs-active .vbs-deal-tag,
.vbs-deal-card.vbs-active .vbs-main-price {
    color: #FFFFFF;
}
.vbs-deal-card.vbs-active .vbs-original-price {
    color: #D4D4D4;
}

.vbs-deal-card.disabled {
    background: #f8f8f8;
    border-color: #e2e2e2;

    color: #9b9b9b;

    opacity: 0.7;

    cursor: not-allowed;
    pointer-events: none;

    filter: grayscale(0.2);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .vbs-price-column {
        align-items: center;
        justify-content: center;
        flex-direction: row-reverse !important;
        gap: 2px !important;
    }

    .vbs-strike-dealclub,
    .vbs-strike-standard  {
        line-height: 24px !important;
        align-self: end;
    }

    .vbs-main-price {
        font-family: 'Metropolis';
        font-weight: 700;
        font-size: 24px;
        line-height: 32px !important;
        letter-spacing: unset;
        text-align: center;
        color: #404040;
    }
}


.vbs-deal-tag {
    font-size: 16px;
    margin: 0 0 8px 0;
    font-family: 'Metropolis';
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0%;
    text-align: center;
    color: #404040;
}

.vbs-deal-tag.active {
    color: #FFFFFF;
}

.vbs-price-column {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vbs-main-price {
    font-family: 'Metropolis';
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: unset;
    text-align: center;
    color: #404040;
}

.vbs-original-price {
    font-family: 'Metropolis';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: unset;
    text-align: center;
    text-decoration: line-through;
    color: #A3A3A3;
}

.vbs-item-right {
    white-space: nowrap;
}

.vbs-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 767px) {
    .vbs-footer {
        display: none !important;
    }
}

.vbs-deal-terms-link {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
}

.vbs-variation-arrow {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #999;
    border-bottom: 1.5px solid #999;
    transform: rotate(45deg);
    margin-bottom: 4px;
}

.vbs-variation-dropdown {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: #fff; border: 1px solid var(--vbs-border);
    z-index: 100; border-radius: 0 0 10px 10px;
}

.vbs-open .vbs-variation-dropdown { display: block; }

.vbs-terms-expandable {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease, margin 0.3s ease;
    overflow: hidden;
    background: #fcfcfc;
}

.vbs-terms-expandable.vbs-is-expanded {
    grid-template-rows: 1fr;
    margin-top: 15px;
    border: 1px solid var(--vbs-border);
    border-radius: 8px;
}

.vbs-terms-inner {
    min-height: 0;
    padding: 0 15px;
}

.vbs-terms-expandable.vbs-is-expanded .vbs-terms-inner {
    padding: 15px;
}

.vbs-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vbs-terms-list li {
    font-size: 13px;
    margin-bottom: 6px;
    color: #555;
}

.vbs-check {
    color: var(--vbs-primary);
    font-weight: bold;
    margin-right: 5px;
}

.vbs-sheet-expandable {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    overflow: hidden;
    margin-bottom: 0;
}

.vbs-sheet-expandable.vbs-is-expanded {
    grid-template-rows: 1fr;
    margin-bottom: 15px;
    border: 1px solid var(--vbs-border);
    border-radius: 10px;
}

.vbs-sheet-inner {
    min-height: 0;
    background: #fff;
}

.vbs-variation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

.vbs-variation-item:last-child { border-bottom: none; }
.vbs-variation-item:hover { background: #f9f9f9; }

.vbs-variation-arrow {
    transition: transform 0.3s ease;
}
.vbs-arrow-rotate {
    transform: rotate(-135deg) !important;
    margin-top: 4px;
}
.introduction-content {
    margin: 0 auto;
}

.intro-video {
    border-radius: 10px;
    overflow: hidden;
}

.intro-video iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .intro-video iframe {
        height: 220px;
    }
}

.share-product-btn {
    cursor: pointer;
}

.prod-grid {
    width: 100%;
    box-sizing: border-box;
}

.prod-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prod-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.prod-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prod-card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.prod-card-category {
    margin: 0;
    font-size: 0.875rem;
    color: #737373;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-card-category a {
    color: #737373;
}

.prod-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.prod-card-stars {
    display: flex;
    gap: 2px;
}

.prod-card-rating-val {
    font-size: 0.85rem;
    color: #4B5563;
}

.prod-card-rating-val span {
    color: #9CA3AF;
}

.prod-card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.prod-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.price-sale {
    color: #111827;
    font-family: Metropolis;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.8;
    letter-spacing: 0%;
}

.price-regular {
    color: #9CA3AF;
    font-family: Metropolis;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0%;
    text-decoration: line-through;

}

.prod-card-discount-badge {
    background-color: #FACC15;
    color: #1F2937;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 2px 8px;
    border-radius: 999px;
}

.prod-card-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border: 2px solid #EAAA9E;
    color: #D1472D;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    margin-top: auto;
}

@media screen and (max-width: 767px) {
    .prod-grid {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 16px;
        scrollbar-width: none;
    }

    .prod-grid::-webkit-scrollbar {
        display: none;
    }

    .prod-card {
        flex: 0 0 75vw;
        scroll-snap-align: start;
        border: 1px solid #D4D4D4;
        background: #FFFFFF;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .prod-card-media {
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background-color: #f3f4f6;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .prod-grid {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 16px;
        scrollbar-width: none;
    }

    .prod-grid::-webkit-scrollbar {
        display: none;
    }

    .prod-card {
        flex: 0 0 calc((100% - 32px) / 3); 
        scroll-snap-align: start;
        border: 1px solid #D4D4D4;
        background: #FFFFFF;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .prod-card-media {
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background-color: #f3f4f6;
    }
}

@media screen and (min-width: 1025px) {
    .prod-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: stretch;
        width: 100%;
        padding: 0;
    }

    .prod-card {
        border: 1px solid #D4D4D4;
        background: #FFFFFF;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }

    .prod-card-media {
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background-color: #f3f4f6;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .prod-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr; 
        gap: 16px;
        padding: 16px;
        overflow: hidden; 
    }

    .prod-card {
        flex: unset;
        width: 100%;
    }

    .prod-card:nth-child(n+4) {
        display: none;
    }
}

.social-menu-wrapper {
    position: absolute; 
    top: 0;
    left: 0;
    padding-top: 12px; 
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.95);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.social-menu-wrapper.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.social-box {
    background-color: #ffffff;
    padding: 12px 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: row; 
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.social-box::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #ffffff;
}

.social-box.vertical {
    flex-direction: column;
    padding: 16px 12px;
}

.social-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f7f8fa;
    color: #555;
    transition: all 0.2s ease;
}

.social-box a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: fill 0.2s ease;
}

.social-box a.instagram:hover { background-color: #E1306C; color: #fff; }
.social-box a.twitter:hover { background-color: #000000; color: #fff; }
.social-box a.facebook:hover { background-color: #1877F2; color: #fff; }
.social-box a.whatsapp:hover { background-color: #25D366; color: #fff; }
.social-box a.copy-link:hover { background-color: #d8532f; color: #fff; }
.social-box a.copy-link.copied { background-color: #2b8a3e !important; color: #fff !important; }
.social-box a.linkedin:hover { background-color: #0077B5; color: #fff; }

.social-box a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}