.evep-product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--enriched-spacing-sm);
    padding: var(--enriched-spacing-lg) 0;
    margin-bottom: var(--enriched-spacing-xl);
    color: var(--enriched-text-lighter);
}

.evep-breadcrumb-link {
    color: var(--enriched-text-lighter);
    text-decoration: none;
    font-size: var(--enriched-font-sm);
    transition: var(--enriched-transition-fast);
}

.evep-breadcrumb-link:hover {
    color: var(--enriched-primary);
}

.evep-breadcrumb-divider {
    font-size: var(--enriched-font-xs);
    opacity: 0.5;
}

.evep-breadcrumb-current {
    color: var(--enriched-text);
    font-size: var(--enriched-font-sm);
    font-weight: 600;
}

.evep-product-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--enriched-spacing-xxl);
    margin-bottom: var(--enriched-spacing-xxxl);
}

@media (min-width:1024px) {
    .evep-product-main {
        grid-template-columns: 1fr 1fr;
    }
}

.evep-product-gallery {
    position: sticky;
    top: calc(var(--enriched-topbar-height) + var(--enriched-spacing-xl));
}

.evep-product-main-image {
    border-radius: var(--enriched-border-radius-lg);
    overflow: hidden;
    background: var(--enriched-section-bg-subtle);
    margin-bottom: var(--enriched-spacing-lg);
    cursor: zoom-in;
}

.evep-product-zoom-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.evep-product-main-image:hover .evep-product-zoom-image {
    transform: scale(1.02);
}

.evep-product-thumbnails {
    display: flex;
    gap: var(--enriched-spacing-md);
    overflow-x: auto;
    padding-bottom: var(--enriched-spacing-sm);
}

.evep-product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--enriched-border-radius-md);
    overflow: hidden;
    border: 2px solid var(--enriched-border);
    background: var(--enriched-section-bg-subtle);
    cursor: pointer;
    padding: 0;
    transition: var(--enriched-transition-fast);
    flex-shrink: 0;
}

.evep-product-thumbnail:hover,
.evep-product-thumbnail.active {
    border-color: var(--enriched-primary);
}

.evep-product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evep-product-store-info {
    margin-bottom: var(--enriched-spacing-xl);
    padding-bottom: var(--enriched-spacing-lg);
    border-bottom: 1px solid var(--enriched-border);
}

.evep-product-store-link {
    display: flex;
    align-items: center;
    gap: var(--enriched-spacing-md);
    text-decoration: none;
    color: inherit;
}

.evep-product-store-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--enriched-border-radius-md);
    border: 1px solid var(--enriched-border);
}

.evep-product-store-details {
    display: flex;
    flex-direction: column;
    gap: var(--enriched-spacing-xs);
}

.evep-product-store-name {
    font-size: var(--enriched-font-md);
    font-weight: 600;
    color: var(--enriched-text);
}

.evep-product-store-rating {
    display: flex;
    align-items: center;
    gap: var(--enriched-spacing-xs);
    font-size: var(--enriched-font-sm);
    color: var(--enriched-text-lighter);
}

.evep-product-store-rating i {
    color: var(--enriched-warning);
}

.evep-product-header {
    margin-bottom: var(--enriched-spacing-xl);
}

.evep-product-title {
    font-size: var(--enriched-font-2xl);
    font-weight: 800;
    color: var(--enriched-text-dark);
    margin-bottom: var(--enriched-spacing-xs);
    line-height: 1.2;
}

.evep-product-tagline {
    font-size: var(--enriched-font-lg);
    color: var(--enriched-primary);
    font-weight: 600;
    margin-bottom: var(--enriched-spacing-lg);
}

.evep-product-meta {
    display: flex;
    flex-direction: column;
    gap: var(--enriched-spacing-sm);
}

.evep-product-sku,
.evep-product-condition,
.evep-product-availability {
    display: flex;
    align-items: center;
    gap: var(--enriched-spacing-sm);
    font-size: var(--enriched-font-sm);
}

.evep-product-meta-label {
    color: var(--enriched-text-lighter);
    min-width: 100px;
}

.evep-product-meta-value {
    color: var(--enriched-text);
    font-weight: 500;
}

.evep-product-meta-value.in-stock {
    color: var(--enriched-success);
}

.evep-product-meta-value.out-of-stock {
    color: var(--enriched-danger);
}

.evep-product-price-section {
    margin-bottom: var(--enriched-spacing-xl);
    padding-bottom: var(--enriched-spacing-xl);
    border-bottom: 1px solid var(--enriched-border);
}

.evep-product-price-current {
    display: flex;
    align-items: baseline;
    gap: var(--enriched-spacing-xs);
    margin-bottom: var(--enriched-spacing-sm);
}

.evep-product-currency {
    font-size: var(--enriched-font-lg);
    font-weight: 600;
    color: var(--enriched-text-lighter);
}

.evep-product-price {
    font-size: var(--enriched-font-3xl);
    font-weight: 800;
    color: var(--enriched-primary);
}

.evep-product-price-compare {
    display: flex;
    align-items: center;
    gap: var(--enriched-spacing-lg);
}

.evep-product-price-original {
    font-size: var(--enriched-font-lg);
    color: var(--enriched-text-lighter);
    text-decoration: line-through;
}

.evep-product-discount {
    font-size: var(--enriched-font-md);
    font-weight: 600;
    color: var(--enriched-danger);
    background: var(--enriched-danger-light);
    padding: var(--enriched-spacing-xs) var(--enriched-spacing-md);
    border-radius: var(--enriched-border-radius-o);
}

.evep-product-actions-section {
    margin-bottom: var(--enriched-spacing-xl);
}

.evep-product-quantity {
    margin-bottom: var(--enriched-spacing-lg);
}

.evep-product-quantity-label {
    display: block;
    font-size: var(--enriched-font-md);
    font-weight: 600;
    color: var(--enriched-text);
    margin-bottom: var(--enriched-spacing-sm);
}

.evep-product-quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--enriched-spacing-sm);
    max-width: 200px;
}

.evep-product-quantity-minus,
.evep-product-quantity-plus {
    width: 48px;
    height: 48px;
    border: 2px solid var(--enriched-border);
    background: var(--enriched-surface);
    border-radius: var(--enriched-border-radius-md);
    font-size: var(--enriched-font-md);
    color: var(--enriched-text);
    cursor: pointer;
    transition: var(--enriched-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.evep-product-quantity-minus:hover,
.evep-product-quantity-plus:hover {
    border-color: var(--enriched-primary);
    color: var(--enriched-primary);
}

.evep-product-quantity-input {
    flex: 1;
    height: 48px;
    border: 2px solid var(--enriched-border);
    background: var(--enriched-surface-full);
    border-radius: var(--enriched-border-radius-md);
    font-size: var(--enriched-font-lg);
    font-weight: 600;
    color: var(--enriched-text);
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
}

.evep-product-quantity-input::-webkit-outer-spin-button,
.evep-product-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.evep-product-max-qty {
    font-size: var(--enriched-font-sm);
    color: var(--enriched-text-lighter);
    margin-top: var(--enriched-spacing-xs);
}

.evep-product-action-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--enriched-spacing-md);
    margin-bottom: var(--enriched-spacing-xl);
}

@media (min-width:640px) {
    .evep-product-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.evep-product-add-to-cart-btn,
.evep-product-buy-now-btn,
.evep-product-wishlist-btn {
    flex: 1;
    min-width: 200px;
    padding: var(--enriched-spacing-lg);
    border: none;
    border-radius: var(--enriched-border-radius-md);
    font-size: var(--enriched-font-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--enriched-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--enriched-spacing-md);
}

.evep-product-add-to-cart-btn {
    background: var(--enriched-gradient-primary);
    color: var(--enriched-text-inverse);
}

.evep-product-add-to-cart-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--enriched-shadow-primary);
}

.evep-product-buy-now-btn {
    background: var(--enriched-gradient-accent);
    color: var(--enriched-text-inverse);
}

.evep-product-buy-now-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--enriched-shadow-md);
}

.evep-product-wishlist-btn {
    background: var(--enriched-surface);
    color: var(--enriched-text);
    border: 2px solid var(--enriched-border);
}

.evep-product-wishlist-btn:hover {
    border-color: var(--enriched-danger);
    color: var(--enriched-danger);
}

.evep-product-add-to-cart-btn:disabled,
.evep-product-buy-now-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.evep-product-share {
    display: flex;
    align-items: center;
    gap: var(--enriched-spacing-lg);
}

.evep-product-share-label {
    font-size: var(--enriched-font-md);
    font-weight: 600;
    color: var(--enriched-text);
    white-space: nowrap;
}

.evep-product-share-buttons {
    display: flex;
    gap: var(--enriched-spacing-sm);
}

.evep-product-share-fb,
.evep-product-share-twitter,
.evep-product-share-whatsapp,
.evep-product-share-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--enriched-border);
    background: var(--enriched-surface);
    border-radius: var(--enriched-border-radius-md);
    font-size: var(--enriched-font-md);
    color: var(--enriched-text);
    cursor: pointer;
    transition: var(--enriched-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.evep-product-share-fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.evep-product-share-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
}

.evep-product-share-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.evep-product-share-link:hover {
    background: var(--enriched-primary);
    border-color: var(--enriched-primary);
    color: white;
}

.evep-product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--enriched-spacing-lg);
    padding: var(--enriched-spacing-lg);
    background: var(--enriched-section-bg-soft);
    border-radius: var(--enriched-border-radius-lg);
    border: 1px solid var(--enriched-border);
}

.evep-product-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--enriched-spacing-md);
}

.evep-product-feature i {
    font-size: var(--enriched-font-lg);
    color: var(--enriched-primary);
    margin-top: var(--enriched-spacing-xs);
}

.evep-product-feature-content {
    flex: 1;
}

.evep-product-feature-title {
    font-size: var(--enriched-font-sm);
    font-weight: 600;
    color: var(--enriched-text);
    margin-bottom: var(--enriched-spacing-xs);
}

.evep-product-feature-text {
    font-size: var(--enriched-font-sm);
    color: var(--enriched-text-light);
    line-height: 1.4;
}

.evep-product-details-tabs {
    margin-bottom: var(--enriched-spacing-xxxl);
    background: var(--enriched-surface);
    border: 1px solid var(--enriched-border);
    border-radius: var(--enriched-border-radius-lg);
    overflow: hidden;
}

.evep-product-tabs-nav {
    display: flex;
    overflow-x: auto;
    background: var(--enriched-section-bg-soft);
    border-bottom: 1px solid var(--enriched-border);
}

.evep-product-tab {
    padding: var(--enriched-spacing-lg) var(--enriched-spacing-xl);
    background: none;
    border: none;
    color: var(--enriched-text-lighter);
    font-size: var(--enriched-font-md);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--enriched-transition-fast);
    display: flex;
    align-items: center;
    gap: var(--enriched-spacing-sm);
    border-bottom: 3px solid transparent;
}

.evep-product-tab:hover {
    color: var(--enriched-primary);
}

.evep-product-tab.active {
    color: var(--enriched-primary);
    border-bottom-color: var(--enriched-primary);
    background: var(--enriched-surface-full);
}

.evep-product-tabs-content {
    padding: var(--enriched-spacing-xl);
}

.evep-product-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.evep-product-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.evep-product-description-content {
    color: var(--enriched-text);
    line-height: 1.8;
}

.evep-product-description-content h3 {
    font-size: var(--enriched-font-lg);
    font-weight: 700;
    color: var(--enriched-text-dark);
    margin: var(--enriched-spacing-lg) 0 var(--enriched-spacing-md);
}

.evep-product-description-content ul {
    margin: var(--enriched-spacing-md) 0;
    padding-left: var(--enriched-spacing-xl);
}

.evep-product-description-content li {
    margin-bottom: var(--enriched-spacing-sm);
}

.evep-product-specifications {
    display: flex;
    flex-direction: column;
    gap: var(--enriched-spacing-md);
}

.evep-product-spec-row {
    display: flex;
    padding: var(--enriched-spacing-md);
    background: var(--enriched-section-bg-soft);
    border-radius: var(--enriched-border-radius-md);
    border: 1px solid var(--enriched-border);
}

.evep-product-spec-label {
    flex: 1;
    font-weight: 600;
    color: var(--enriched-text);
}

.evep-product-spec-value {
    flex: 2;
    color: var(--enriched-text-light);
}

.evep-product-reviews-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--enriched-spacing-lg);
    background: var(--enriched-section-bg-soft);
    border-radius: var(--enriched-border-radius-lg);
    border: 1px solid var(--enriched-border);
    margin-bottom: var(--enriched-spacing-xl);
}

.evep-product-reviews-rating {
    text-align: center;
}

.evep-product-reviews-average {
    font-size: var(--enriched-font-3xl);
    font-weight: 800;
    color: var(--enriched-text-dark);
    margin-bottom: var(--enriched-spacing-xs);
}

.evep-product-reviews-stars {
    font-size: var(--enriched-font-lg);
    color: var(--enriched-warning);
    margin-bottom: var(--enriched-spacing-xs);
}

.evep-product-reviews-count {
    font-size: var(--enriched-font-sm);
    color: var(--enriched-text-lighter);
}

.evep-product-write-review-btn {
    padding: var(--enriched-spacing-md) var(--enriched-spacing-xl);
    background: var(--enriched-gradient-primary);
    color: var(--enriched-text-inverse);
    border: none;
    border-radius: var(--enriched-border-radius-md);
    font-size: var(--enriched-font-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--enriched-transition-fast);
    display: flex;
    align-items: center;
    gap: var(--enriched-spacing-sm);
}

.evep-product-write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--enriched-shadow-primary);
}

.evep-product-shipping-info h3 {
    font-size: var(--enriched-font-lg);
    font-weight: 700;
    color: var(--enriched-text-dark);
    margin: var(--enriched-spacing-lg) 0 var(--enriched-spacing-md);
}

.evep-product-shipping-info h3:first-child {
    margin-top: 0;
}

.evep-product-shipping-info p,
.evep-product-shipping-info ul {
    color: var(--enriched-text);
    line-height: 1.6;
    margin-bottom: var(--enriched-spacing-md);
}

.evep-product-shipping-info ul {
    padding-left: var(--enriched-spacing-xl);
}

.evep-related-products {
    margin-bottom: var(--enriched-spacing-xxxl);
}

.evep-related-products-header {
    margin-bottom: var(--enriched-spacing-xxl);
    text-align: center;
}

.evep-related-products-title {
    font-size: var(--enriched-font-xl);
    font-weight: 800;
    color: var(--enriched-text-dark);
    margin-bottom: var(--enriched-spacing-sm);
}

.evep-related-products-subtitle {
    font-size: var(--enriched-font-md);
    color: var(--enriched-text-lighter);
}

.evep-related-products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--enriched-spacing-xl);
}

@media (min-width:640px) {
    .evep-related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .evep-related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.evep-related-product-card {
    background: var(--enriched-surface);
    border: 1px solid var(--enriched-border);
    border-radius: var(--enriched-border-radius-lg);
    overflow: hidden;
    transition: var(--enriched-transition-normal);
}

.evep-related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--enriched-shadow-lg);
    border-color: var(--enriched-primary-light);
}

.evep-related-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.evep-related-product-image {
    aspect-ratio: 1 / 1;
    background: var(--enriched-section-bg-subtle);
    overflow: hidden;
}

.evep-related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--enriched-transition-normal);
}

.evep-related-product-card:hover .evep-related-product-image img {
    transform: scale(1.05);
}

.evep-related-product-info {
    padding: var(--enriched-spacing-lg);
}

.evep-related-product-name {
    font-size: var(--enriched-font-md);
    font-weight: 600;
    color: var(--enriched-text);
    margin-bottom: var(--enriched-spacing-xs);
    line-height: 1.2;
}

.evep-related-product-tagline {
    font-size: var(--enriched-font-sm);
    color: var(--enriched-text-lighter);
    margin-bottom: var(--enriched-spacing-md);
    line-height: 1.4;
}

.evep-related-product-price {
    display: flex;
    align-items: baseline;
    gap: var(--enriched-spacing-xs);
}

.evep-related-product-currency {
    font-size: var(--enriched-font-sm);
    color: var(--enriched-text-lighter);
    font-weight: 600;
}

.evep-related-product-price-value {
    font-size: var(--enriched-font-lg);
    font-weight: 700;
    color: var(--enriched-primary);
}

.evep-recently-viewed {
    margin-bottom: var(--enriched-spacing-xxxl);
}

.evep-recently-viewed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--enriched-spacing-xl);
}

.evep-recently-viewed-title {
    font-size: var(--enriched-font-xl);
    font-weight: 800;
    color: var(--enriched-text-dark);
}

.evep-view-all-link {
    color: var(--enriched-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--enriched-spacing-sm);
    transition: var(--enriched-transition-fast);
}

.evep-view-all-link:hover {
    gap: var(--enriched-spacing-md);
}

.evep-recently-viewed-carousel {
    background: var(--enriched-section-bg-soft);
    border: 1px solid var(--enriched-border);
    border-radius: var(--enriched-border-radius-lg);
    padding: var(--enriched-spacing-xxl);
    text-align: center;
}

.evep-recently-viewed-placeholder {
    color: var(--enriched-text-lighter);
}

.evep-product-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--enriched-spacing-xl);
}

.evep-product-zoom-modal.active {
    display: flex;
}

.evep-product-zoom-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.evep-product-zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--enriched-border-radius-o);
    color: white;
    font-size: var(--enriched-font-lg);
    cursor: pointer;
    transition: var(--enriched-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.evep-product-zoom-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.evep-product-zoom-modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.evep-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--enriched-surface-full);
    border-left: 4px solid var(--enriched-primary);
    border-radius: var(--enriched-border-radius-md);
    padding: var(--enriched-spacing-md) var(--enriched-spacing-lg);
    box-shadow: var(--enriched-shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--enriched-spacing-md);
    z-index: 3000;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
}

.evep-notification-success {
    border-left-color: var(--enriched-success);
}

.evep-notification-info {
    border-left-color: var(--enriched-info);
}

.evep-notification i {
    font-size: var(--enriched-font-lg);
}

.evep-notification-success i {
    color: var(--enriched-success);
}

.evep-notification-info i {
    color: var(--enriched-info);
}

.evep-notification button {
    background: none;
    border: none;
    color: var(--enriched-text-lighter);
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width:768px) {
    .evep-product-title {
        font-size: var(--enriched-font-xl);
    }

    .evep-product-tagline {
        font-size: var(--enriched-font-md);
    }

    .evep-product-price {
        font-size: var(--enriched-font-2xl);
    }

    .evep-product-features {
        grid-template-columns: 1fr;
    }

    .evep-product-tabs-nav {
        flex-direction: column;
    }

    .evep-product-tab {
        border-bottom: 1px solid var(--enriched-border);
        border-left: 3px solid transparent;
    }

    .evep-product-tab.active {
        border-left-color: var(--enriched-primary);
        border-bottom-color: var(--enriched-border);
    }
}

@media (max-width:640px) {
    .evep-product-action-buttons {
        flex-direction: column;
    }

    .evep-product-add-to-cart-btn,
    .evep-product-buy-now-btn,
    .evep-product-wishlist-btn {
        min-width: 100%;
    }

    .evep-product-share {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--enriched-spacing-md);
    }
}

.evep-store-review-card.boxed{
    background:var(--enriched-surface-full);
    border:1px solid var(--enriched-border);
    border-radius:var(--enriched-border-radius-lg);
    box-shadow:var(--enriched-shadow-sm);
    transition:var(--enriched-transition-normal);
    overflow:hidden;
}
.evep-store-review-card.boxed:hover{
    box-shadow:var(--enriched-shadow-md);
    border-color:var(--enriched-border-dark);
}
.evep-store-review-card-body{
    padding:clamp(var(--enriched-spacing-lg),2.6vw,var(--enriched-spacing-xl));
}
.evep-store-review-muted{
    font-size:var(--enriched-font-sm);
    color:var(--enriched-text-lighter);
    line-height:1.45;
}
.evep-store-review-review-cta{
    flex-shrink:0;
    min-width:fit-content;
}
.evep-store-review-reviews-list{
    margin-top:var(--enriched-spacing-lg);
    border-top:1px solid var(--enriched-border);
    padding-top:var(--enriched-spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--enriched-spacing-md);
}
.evep-store-review-list-item{
    padding:var(--enriched-spacing-md);
    transition:var(--enriched-transition-fast);
    background: var(--enriched-surface-full);
    border: 1px solid var(--enriched-border);
    border-radius: var(--enriched-border-radius-sm);
}
.evep-store-review-list-item:hover{
    background:var(--enriched-section-bg-soft);
}
.evep-store-review-list-item:hover .evep-store-review-list-inner{
    transform:translateY(-1px);
}
.evep-store-review-list-inner{
    padding:0;
    border-radius:var(--enriched-border-radius-md);
    transition:var(--enriched-transition-fast);
}
.evep-store-review-list-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:var(--enriched-spacing-md);
    margin-bottom:var(--enriched-spacing-xs);
}
.evep-store-review-list-title{
    display:flex;
    align-items:center;
    gap:var(--enriched-spacing-sm);
    min-width:0;
}
.evep-store-review-list-title strong{
    font-size:var(--enriched-font-md);
    font-weight:650;
    color:var(--enriched-text-dark);
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.evep-store-review-score{
    font-size:clamp(var(--enriched-font-lg),2.2vw,var(--enriched-font-xl));
    font-weight:800;
    letter-spacing:-0.02em;
    color:var(--enriched-text-dark);
    line-height:1.1;
}
.evep-store-review-rating-pill{
    display:inline-flex;
    align-items:center;
    gap:var(--enriched-spacing-xs);
    font-size:var(--enriched-font-sm);
    font-weight:750;
    color:var(--enriched-warning);
    background:var(--enriched-section-bg-tint-warning);
    padding:calc(var(--enriched-spacing-xs)*0.9) var(--enriched-spacing-md);
    border-radius:var(--enriched-border-radius-o);
    flex-shrink:0;
    line-height:1.2;
    cursor: default;
}
.evep-store-review-rating-pill i{
    font-size:0.9em;
    line-height:1;
}
@media (max-width:560px){
    .evep-store-review-rating-pill{
        padding:calc(var(--enriched-spacing-xs)*0.8) var(--enriched-spacing-sm);
        font-size:calc(var(--enriched-font-sm)*0.95);
    }
}
.evep-store-review-review-title{
    font-size:var(--enriched-font-sm);
    color:var(--enriched-text-lighter);
    line-height:1.45;
    margin-bottom:var(--enriched-spacing-xs);
    overflow-wrap:anywhere;
}
.evep-store-review-review-body{
    font-size:var(--enriched-font-md);
    color:var(--enriched-text);
    line-height:1.65;
    overflow-wrap:anywhere;
}
.evep-store-review-review-summary-row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:var(--enriched-spacing-lg);
    flex-wrap:wrap;
}
.evep-store-review-review-summary-row>div:first-child{
    min-width:0;
}
.evep-store-review-review-summary-row .enriched-main-button,
.evep-store-review-review-summary-row a.enriched-main-button{
    white-space:nowrap;
}
.evep-store-review-user{
    font-size:var(--enriched-font-md);
    font-weight:650;
    color:var(--enriched-text-dark);
    line-height:1.25;
    max-width:min(70%,34rem);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.evep-store-review-title{
    font-size:var(--enriched-font-sm);
    color:var(--enriched-text-lighter);
    line-height:1.45;
    margin-top:var(--enriched-spacing-xs);
    overflow-wrap:anywhere;
}
.evep-store-review-body{
    font-size:var(--enriched-font-md);
    color:var(--enriched-text);
    line-height:1.65;
    margin-top:var(--enriched-spacing-xs);
    overflow-wrap:anywhere;
}
@media (max-width:900px){
    .evep-store-review-review-summary-row{
        align-items:stretch;
        gap:var(--enriched-spacing-md);
    }
    .evep-store-review-review-cta{
        width:100%;
    }
    .evep-store-review-review-cta .enriched-main-button{
        width:100%;
        justify-content:center;
    }
}
@media (max-width:560px){
    .evep-store-review-card-body{
        padding:var(--enriched-spacing-lg);
    }
    .evep-store-review-list-item{
        padding:var(--enriched-spacing-md) 0;
    }
    .evep-store-review-list-top{
        align-items:center;
    }
    .evep-store-review-rating-pill{
        padding:calc(var(--enriched-spacing-xs)*0.8) var(--enriched-spacing-sm);
    }
    .evep-store-review-user{
        max-width:min(62%,20rem);
        font-size:calc(var(--enriched-font-md)*0.98);
    }
    .evep-store-review-body{
        font-size:calc(var(--enriched-font-md)*0.98);
    }
}

@media (hover:hover){
    .evep-store-review-list-item:hover .evep-store-review-list-inner{
        padding:0 var(--enriched-spacing-md);
    }
}

.evep-store-contact-card{
    background:var(--enriched-surface-full);
    border:1px solid var(--enriched-border);
    border-radius:var(--enriched-border-radius-lg);
    box-shadow:var(--enriched-shadow-sm);
    overflow:hidden;
}
.evep-store-contact-form{
    padding:clamp(var(--enriched-spacing-lg),2.2vw,var(--enriched-spacing-xl));
    display:flex;
    flex-direction:column;
    gap:var(--enriched-spacing-md);
}
.evep-store-contact-note{
    margin-top:var(--enriched-spacing-xs);
    font-size:var(--enriched-font-sm);
    color:var(--enriched-text-lighter);
    line-height:1.5;
}

.evep-store-social-card {
    background: var(--enriched-section-bg-soft);
    border: 1px solid var(--enriched-border);
    border-radius: var(--enriched-border-radius-lg);
    box-shadow: var(--enriched-shadow-sm);
    transition: var(--enriched-transition-normal);
    overflow: hidden;
}

.evep-store-social-card:hover {
    box-shadow: var(--enriched-shadow-md);
    border-color: var(--enriched-border-dark);
}

.evep-store-social-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:var(--enriched-spacing-lg);
    padding:var(--enriched-spacing-xl);
    border-bottom:1px solid var(--enriched-border-light);
}
.evep-store-social-grid>.evep-store-social-card-item:last-child:nth-child(odd){
    grid-column:1/-1;
}
@media (max-width:768px){
    .evep-store-social-grid{
        grid-template-columns:1fr;
        gap:var(--enriched-spacing-md);
        padding:var(--enriched-spacing-lg);
    }
    .evep-store-social-grid>.evep-store-social-card-item:last-child:nth-child(odd){
        grid-column:auto;
    }
}

.evep-store-social-card-item {
    display: flex;
    align-items: flex-start;
    gap: var(--enriched-spacing-md);
    padding: var(--enriched-spacing-md);
    background: var(--enriched-surface-full);
    border-radius: var(--enriched-border-radius-md);
    border: 1px solid var(--enriched-border);
    transition: var(--enriched-transition-fast);
}

.evep-store-social-card-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--enriched-shadow-sm);
    border-color: var(--enriched-primary-light);
    background: var(--enriched-section-bg-tint-primary);
}

.evep-store-social-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--enriched-gradient-primary);
    color: var(--enriched-text-inverse);
    border-radius: var(--enriched-border-radius-md);
    font-size: var(--enriched-font-md);
    box-shadow: var(--enriched-shadow-xs);
}

.evep-store-social-card-content {
    flex: 1;
    min-width: 0;
}

.evep-store-social-card-label {
    font-size: var(--enriched-font-sm);
    font-weight: 600;
    color: var(--enriched-text-lighter);
    margin-bottom: var(--enriched-spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.evep-store-social-card-value {
    font-size: var(--enriched-font-md);
    font-weight: 500;
    color: var(--enriched-text);
    line-height: 1.4;
    word-break: break-word;
}

.evep-store-social-card-link {
    color: var(--enriched-primary);
    text-decoration: none;
    transition: var(--enriched-transition-fast);
    border-bottom: 1px solid transparent;
}

.evep-store-social-card-link:hover {
    color: var(--enriched-primary-dark);
    border-bottom-color: var(--enriched-primary);
}

.evep-store-show-social-card-item {
    padding: var(--enriched-spacing-xl);
    text-align: center;
}

.evep-store-show-social-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto var(--enriched-spacing-md);
    background: linear-gradient(135deg,
            color-mix(in oklab, var(--enriched-primary) 30%, transparent) 0%,
            color-mix(in oklab, var(--enriched-primary-dark) 30%, transparent) 100%);
    color: var(--enriched-primary);
    border-radius: var(--enriched-border-radius-lg);
    font-size: var(--enriched-font-xl);
    border: 2px solid var(--enriched-primary-light);
    backdrop-filter: blur(8px);
}

.evep-store-show-social-card-label {
    font-size: var(--enriched-font-lg);
    font-weight: 700;
    color: var(--enriched-text-dark);
    margin-bottom: var(--enriched-spacing-lg);
    position: relative;
    display: inline-block;
}

.evep-store-show-social-card-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--enriched-gradient-primary);
    border-radius: var(--enriched-border-radius-o);
}

.evep-store-show-social-card-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--enriched-spacing-md);
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.evep-store-show-social-card-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--enriched-border-radius-md);
    background: var(--enriched-surface-full);
    color: var(--enriched-text);
    font-size: var(--enriched-font-lg);
    text-decoration: none;
    border: 1px solid var(--enriched-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--enriched-shadow-xs);
}

.evep-store-show-social-card-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--enriched-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.evep-store-show-social-card-social i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

.evep-store-show-social-card-social:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--enriched-shadow-md);
}

.evep-store-show-social-card-social:hover::before {
    opacity: 1;
}

.evep-store-show-social-card-social:hover i {
    color: var(--enriched-text-inverse);
    transform: scale(1.2);
}

.evep-store-show-social-card-social:nth-child(1):hover {
    background: #1877F2;
}

.evep-store-show-social-card-social:nth-child(2):hover {
    background: #E4405F;
}

.evep-store-show-social-card-social:nth-child(3):hover {
    background: #000000;
}

.evep-store-show-social-card-social:nth-child(4):hover {
    background: #000000;
}

.evep-store-show-social-card-social:nth-child(5):hover {
    background: #FF0000;
}

.evep-store-show-social-card-social.evep-store-show-social-card-social-whatsapp:hover {
    background: #25D366;
}

.evep-store-show-social-card-social:hover::before {
    opacity: 0;
}

@media (max-width:640px) {
    .evep-store-show-social-card-item {
        padding: var(--enriched-spacing-lg);
    }

    .evep-store-show-social-card-icon {
        width: 50px;
        height: 50px;
        font-size: var(--enriched-font-lg);
    }

    .evep-store-show-social-card-socials {
        gap: var(--enriched-spacing-sm);
    }

    .evep-store-show-social-card-social {
        width: 46px;
        height: 46px;
        font-size: var(--enriched-font-md);
    }
}

@keyframes socialIconPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.evep-store-show-social-card-social {
    animation: socialIconPop 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.evep-store-show-social-card-social:nth-child(1) {
    animation-delay: 0.1s;
}

.evep-store-show-social-card-social:nth-child(2) {
    animation-delay: 0.2s;
}

.evep-store-show-social-card-social:nth-child(3) {
    animation-delay: 0.3s;
}

.evep-store-show-social-card-social:nth-child(4) {
    animation-delay: 0.4s;
}

.evep-store-show-social-card-social:nth-child(5) {
    animation-delay: 0.5s;
}

.evep-store-show-social-card-social.evep-store-show-social-card-social-whatsapp {
    animation-delay: 0.6s;
}

.evep-store-social-card-item:hover .evep-store-social-card-icon {
    transform: rotate(15deg);
    box-shadow: var(--enriched-shadow-primary);
}

.evep-store-social-card-item:hover .evep-store-social-card-label {
    color: var(--enriched-primary);
}

.evep-store-show-social-card-social:focus-visible {
    outline: 3px solid var(--enriched-focus-ring);
    outline-offset: 2px;
}

.evep-store-social-card-link:focus-visible {
    outline: 2px solid var(--enriched-focus-ring);
    outline-offset: 2px;
    border-radius: var(--enriched-border-radius-sm);
}
