/**
 * Single Product Page - TRULY JAW-DROPPING VERSION 🚀
 * Premium effects, holographic shimmer, 3D transforms, magnetic interactions
 * 100% Responsive & Device-Safe
 * 
 * @package Commerce_Elite
 */

/* ============================================
   ADVANCED KEYFRAME ANIMATIONS
   ============================================ */

@keyframes shimmer-holographic {
    0% {
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
        opacity: 0;
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(74, 14, 14, 0.4), 0 0 40px rgba(74, 14, 14, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(74, 14, 14, 0.6), 0 0 60px rgba(74, 14, 14, 0.3);
    }
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes icon-bounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(-5deg);
    }
    75% {
        transform: scale(1.2) rotate(5deg);
    }
}

@keyframes cart-icon-wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@keyframes shimmer-text {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(-10px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-30px) translateX(5px) rotate(270deg);
        opacity: 0.6;
    }
}

@keyframes scale-in {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   LAYOUT - FULL WIDTH
   ============================================ */

.single-product-wrapper {
    max-width: 100%;
    width: 100%;
}

.single-product-wrapper .product-main-content {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    max-width: 1600px;
    margin: 0 auto;
    background: #fff;
}

/* ============================================
   PRODUCT IMAGES - LEFT SIDE
   ============================================ */

.single-product-wrapper .product-images-wrapper {
    width: 100%;
    padding: 2rem;
    background: #f8f9fa;
}

.single-product-wrapper .woocommerce-product-gallery {
    width: 100%;
    position: relative;
}

.single-product-wrapper .woocommerce-product-gallery__wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.single-product-wrapper .woocommerce-product-gallery__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.single-product-wrapper .woocommerce-product-gallery__image a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.single-product-wrapper .woocommerce-product-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: zoom-in;
}

.single-product-wrapper .woocommerce-product-gallery__image:hover img {
    transform: scale(1.15);
}

.single-product-wrapper .flex-control-thumbs,
.single-product-wrapper .woocommerce-product-gallery__thumbnails {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.single-product-wrapper .flex-control-thumbs li {
    flex: 0 0 calc(16.666% - 0.833rem);
    position: relative;
}

.single-product-wrapper .flex-control-thumbs li img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.single-product-wrapper .flex-control-thumbs li img:hover {
    opacity: 1;
    border-color: #e5e7eb;
    transform: scale(1.08) translateY(-2px);
}

.single-product-wrapper .flex-control-thumbs li img.flex-active {
    opacity: 1;
    border-color: #4a0e0e;
    box-shadow: 0 4px 20px rgba(74, 14, 14, 0.4);
    transform: scale(1.05);
}

/* ============================================
   PRODUCT INFO - RIGHT SIDE
   ============================================ */

.single-product-wrapper .summary.entry-summary {
    width: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: scale-in 0.6s ease-out;
}

/* HOLOGRAPHIC BRAND BADGE */
.single-product-wrapper .product-brand-display {
    margin: -0.5rem 0 0 0;
    position: relative;
}

.single-product-wrapper .product-brand-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(
        90deg,
        #4a0e0e 0%,
        #2c2222 25%,
        #f6e4e4 50%,
        #4a0e0e 75%,
        #2c2222 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 3s linear infinite;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(74, 14, 14, 0.3);
}

.single-product-wrapper .product-brand-name::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        #4a0e0e,
        #2c2222,
        #f6e4e4,
        #4a0e0e
    );
    background-size: 200% auto;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: shimmer-text 3s linear infinite;
    z-index: -1;
}

.single-product-wrapper .product-brand-name::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.9) 50%,
        transparent 100%
    );
    transform: translateX(-100%) skewX(-15deg);
    animation: shimmer-holographic 2s ease-in-out infinite;
    z-index: 1;
    border-radius: 20px;
}

.single-product-wrapper .product_title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #111827;
}

.single-product-wrapper .woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.single-product-wrapper .star-rating {
    color: #fbbf24;
}

.single-product-wrapper .woocommerce-review-link {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.single-product-wrapper .woocommerce-review-link:hover {
    color: #4a0e0e;
}

/* ANIMATED GRADIENT PRICE */
.single-product-wrapper .summary .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.single-product-wrapper .summary .price del {
    font-size: 1.5rem;
    color: #9ca3af;
    font-weight: 500;
}

.single-product-wrapper .summary .price ins {
    text-decoration: none;
    background: linear-gradient(
        90deg,
        #dc2626 0%,
        #ef4444 25%,
        #f87171 50%,
        #ef4444 75%,
        #dc2626 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.single-product-wrapper .woocommerce-product-details__short-description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

.single-product-wrapper .variations {
    margin: 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.single-product-wrapper .variations td {
    padding: 0.5rem 0;
    vertical-align: middle;
}

.single-product-wrapper .variations label {
    font-weight: 600;
    color: #374151;
    padding-right: 1rem;
}

.single-product-wrapper .variations select {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    color: #111827;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.single-product-wrapper .variations select:hover {
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.single-product-wrapper .variations select:focus {
    outline: none;
    border-color: #4a0e0e;
    box-shadow: 0 0 0 3px rgba(74, 14, 14, 0.1);
    transform: translateY(-1px);
}

.single-product-wrapper .cart {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.single-product-wrapper .quantity {
    flex: 0 0 120px;
}

.single-product-wrapper .quantity .qty {
    width: 100%;
    height: 56px;
    text-align: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-product-wrapper .quantity .qty:hover {
    border-color: #cbd5e1;
    transform: scale(1.02);
}

.single-product-wrapper .quantity .qty:focus {
    outline: none;
    border-color: #4a0e0e;
    box-shadow: 0 0 0 3px rgba(74, 14, 14, 0.1);
    transform: scale(1.02);
}

/* ULTIMATE 3D ADD TO CART BUTTON */
.single-product-wrapper .single_add_to_cart_button {
    flex: 1;
    height: 56px;
    background: linear-gradient(
        135deg,
        #4a0e0e 0%,
        #2c2222 50%,
        #4a0e0e 100%
    ) !important;
    background-size: 200% auto;
    color: #fff !important;
    border: none !important;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: gradient-shift 4s ease infinite;
}

.single-product-wrapper .single_add_to_cart_button:focus {
    outline: none !important;
    border: none !important;
    box-shadow: 
        0 10px 25px rgba(74, 14, 14, 0.4),
        0 5px 15px rgba(44, 34, 34, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1),
        inset 0 2px 5px rgba(255, 255, 255, 0.2) !important;
}

.single-product-wrapper .single_add_to_cart_button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%
    );
    transform: translateX(-100%) skewX(-15deg);
    animation: shimmer-holographic 2s ease-in-out infinite;
    z-index: 2;
}

.single-product-wrapper .single_add_to_cart_button::after {
    content: '🧺️️ ';
    position: absolute;
    font-size: 1.5rem;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.single-product-wrapper .single_add_to_cart_button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(74, 14, 14, 0.5),
        0 10px 25px rgba(44, 34, 34, 0.4),
        inset 0 -2px 5px rgba(0, 0, 0, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
    animation: gradient-shift 2s ease infinite, pulse-glow 2s ease-in-out infinite;
}

.single-product-wrapper .single_add_to_cart_button:hover::after {
    opacity: 1;
    animation: particle-float 1.5s ease-in-out infinite;
}

.single-product-wrapper .single_add_to_cart_button:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 
        0 5px 15px rgba(74, 14, 14, 0.4),
        inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.single-product-wrapper .single_add_to_cart_button > span::before {
    content: "🛒 ";
    display: inline-block;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.single-product-wrapper .single_add_to_cart_button:hover > span::before {
    animation: cart-icon-wiggle 0.5s ease infinite;
}

.single-product-wrapper .product_meta {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
}

.single-product-wrapper .product_meta > span {
    display: block;
    margin-bottom: 0.75rem;
    color: #6b7280;
}

.single-product-wrapper .product_meta > span:last-child {
    margin-bottom: 0;
}

.single-product-wrapper .product_meta a {
    color: #4a0e0e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.single-product-wrapper .product_meta a:hover {
    color: #2c2222;
}

/* ============================================
   GLASSMORPHISM TRUST BADGES WITH FLOATING ANIMATION
   ============================================ */

.single-product-wrapper .product-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
}

.single-product-wrapper .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    cursor: default;
    animation: float-badge 3s ease-in-out infinite;
}

.single-product-wrapper .trust-badge:nth-child(1) {
    animation-delay: 0s;
}

.single-product-wrapper .trust-badge:nth-child(2) {
    animation-delay: 0.2s;
}

.single-product-wrapper .trust-badge:nth-child(3) {
    animation-delay: 0.4s;
}

.single-product-wrapper .trust-badge:nth-child(4) {
    animation-delay: 0.6s;
}

.single-product-wrapper .trust-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%
    );
    transform: translateX(-100%) skewX(-15deg);
    animation: shimmer-holographic 3s ease-in-out infinite;
    z-index: 1;
}

.single-product-wrapper .trust-badge::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, #4a0e0e, #2c2222, #f6e4e4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.single-product-wrapper .trust-badge:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 15px 35px rgba(74, 14, 14, 0.3),
        0 8px 20px rgba(44, 34, 34, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.9);
    border-color: rgba(74, 14, 14, 0.5);
}

.single-product-wrapper .trust-badge:hover::after {
    opacity: 0.3;
}

.single-product-wrapper .trust-badge svg {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.single-product-wrapper .trust-badge:hover svg {
    animation: icon-bounce 0.6s ease infinite;
    filter: drop-shadow(0 4px 8px rgba(74, 14, 14, 0.4));
}

.single-product-wrapper .trust-badge:nth-child(1) svg {
    color: #10b981;
}

.single-product-wrapper .trust-badge:nth-child(2) svg {
    color: #3b82f6;
}

.single-product-wrapper .trust-badge:nth-child(3) svg {
    color: #f59e0b;
}

.single-product-wrapper .trust-badge:nth-child(4) svg {
    color: #ef4444;
}

.single-product-wrapper .trust-badge span {
    position: relative;
    z-index: 2;
}

/* ============================================
   PREMIUM STOCK BADGE
   ============================================ */

.single-product-wrapper .stock {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(
        135deg,
        #10b981 0%,
        #059669 100%
    );
    background-size: 200% auto;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(16, 185, 129, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: gradient-shift 3s ease infinite;
}

.single-product-wrapper .stock::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.7) 50%,
        transparent 100%
    );
    transform: translateX(-100%) skewX(-15deg);
    animation: shimmer-holographic 2.5s ease-in-out infinite;
    z-index: 1;
}

.single-product-wrapper .stock::after {
    content: '✓';
    font-size: 1rem;
    font-weight: 900;
    margin-left: 0.25rem;
}

.single-product-wrapper .stock.out-of-stock {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 
        0 4px 15px rgba(239, 68, 68, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.single-product-wrapper .stock.out-of-stock::after {
    content: '✕';
}

.single-product-wrapper .stock.available-on-backorder {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 
        0 4px 15px rgba(245, 158, 11, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.single-product-wrapper .stock.available-on-backorder::after {
    content: '⏱';
}

/* ============================================
   PRODUCT TABS
   ============================================ */

.single-product-wrapper .woocommerce-tabs {
    grid-column: 1 / -1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* ============================================
   RESPONSIVE - 100% DEVICE SAFE
   ============================================ */

@media (max-width: 1200px) {
    .single-product-wrapper .product-main-content {
        grid-template-columns: 55% 45%;
    }
}

@media (max-width: 1024px) {
    .single-product-wrapper .product-main-content {
        grid-template-columns: 1fr;
    }
    
    .single-product-wrapper .product-images-wrapper,
    .single-product-wrapper .summary.entry-summary {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .single-product-wrapper .product_title {
        font-size: 1.875rem;
    }
    
    .single-product-wrapper .summary .price {
        font-size: 2rem;
    }
    
    .single-product-wrapper .product-images-wrapper {
        padding: 1rem;
        background: #fff;
    }
    
    .single-product-wrapper .summary.entry-summary {
        padding: 1.5rem;
    }
    
    .single-product-wrapper .flex-control-thumbs li {
        flex: 0 0 calc(25% - 0.75rem);
    }
    
    .single-product-wrapper .woocommerce-product-gallery__image {
        aspect-ratio: 4 / 5;
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .single-product-wrapper .product-trust-badges {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .single-product-wrapper .trust-badge {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .single-product-wrapper .product-images-wrapper {
        padding: 0.5rem;
    }
    
    .single-product-wrapper .summary.entry-summary {
        padding: 1rem;
        gap: 1rem;
    }
    
    .single-product-wrapper .product_title {
        font-size: 1.5rem;
    }
    
    .single-product-wrapper .summary .price {
        font-size: 1.75rem;
    }
    
    .single-product-wrapper .cart {
        flex-direction: column;
    }
    
    .single-product-wrapper .quantity {
        flex: 1;
    }
    
    .single-product-wrapper .woocommerce-product-gallery__image {
        aspect-ratio: 1 / 1;
        border-radius: 8px;
    }
    
    .single-product-wrapper .flex-control-thumbs {
        gap: 0.5rem;
    }
    
    .single-product-wrapper .flex-control-thumbs li {
        flex: 0 0 calc(20% - 0.4rem);
    }
    
    .single-product-wrapper .flex-control-thumbs li img {
        border-radius: 6px;
    }
    
    .single-product-wrapper .product-brand-name {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .single-product-wrapper .single_add_to_cart_button {
        font-size: 1rem;
    }
}

/* ============================================
   DARK MODE
   ============================================ */

.dark .single-product-wrapper .product_title,
.dark .single-product-wrapper .summary .price {
    color: #fff;
}

.dark .single-product-wrapper .woocommerce-product-details__short-description {
    color: #d1d5db;
}

.dark .single-product-wrapper .product_meta {
    background: #111827;
}

.dark .single-product-wrapper .trust-badge {
    background: rgba(31, 41, 55, 0.9);
    border-color: rgba(75, 85, 99, 0.5);
    color: #f9fafb;
}

.dark .single-product-wrapper .trust-badge:hover {
    background: rgba(31, 41, 55, 0.95);
    border-color: rgba(74, 14, 14, 0.6);
}

/* ============================================
   PERFORMANCE & ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .single-product-wrapper *,
    .single-product-wrapper *::before,
    .single-product-wrapper *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .single-product-wrapper .trust-badge {
        border: 2px solid currentColor;
    }
    
    .single-product-wrapper .single_add_to_cart_button {
        border: 2px solid #fff;
    }
}

.single-product-wrapper *:focus-visible {
    outline: 3px solid #4a0e0e;
    outline-offset: 3px;
}

.single-product-wrapper .single_add_to_cart_button,
.single-product-wrapper .trust-badge,
.single-product-wrapper .product-brand-name {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
} .product-main-content {
    background: #1f2937;
}

.dark .single-product-wrapper .product-images-wrapper {
    background: #111827;
}

.dark .single-product-wrapper .woocommerce-product-gallery__image {
    background: #1f2937;
}