/* =====================================================
   SOHUM PRODUCT DISPLAY PRO - LUXURY REDESIGN
   Version: 3.0.0
   Aesthetic: Warm Artisanal Luxury
   ===================================================== */

/* ===== CUSTOM FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ===== ROOT VARIABLES - REFINED PALETTE ===== */
:root {
    /* Primary Colors */
    --sohum-ink: #1a1a2e;
    --sohum-ink-soft: #2d2d44;
    --sohum-sage: #7a9e7e;
    --sohum-sage-light: #9cb99f;
    --sohum-sage-dark: #5c7a5f;
    --sohum-terracotta: #c17f59;
    --sohum-terracotta-light: #d9a384;
    --sohum-gold: #c9a962;
    --sohum-gold-light: #e8d5a3;
    
    /* Backgrounds */
    --sohum-cream: #faf8f5;
    --sohum-linen: #f5f2ed;
    --sohum-warm-white: #fffcf8;
    --sohum-cloud: #f0ede8;
    
    /* Text */
    --sohum-text-dark: #1a1a2e;
    --sohum-text-body: #4a4a5a;
    --sohum-text-muted: #8a8a9a;
    --sohum-text-light: #b8b8c8;
    
    /* Fonts */
    --sohum-font-display: 'Cormorant Garamond', Georgia, serif;
    --sohum-font-body: 'DM Sans', -apple-system, sans-serif;
    
    /* Spacing */
    --sohum-space-xs: 0.5rem;
    --sohum-space-sm: 1rem;
    --sohum-space-md: 1.5rem;
    --sohum-space-lg: 2.5rem;
    --sohum-space-xl: 4rem;
    --sohum-space-2xl: 6rem;
    
    /* Shadows */
    --sohum-shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.04);
    --sohum-shadow-md: 0 8px 30px rgba(26, 26, 46, 0.08);
    --sohum-shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.12);
    --sohum-shadow-glow: 0 0 40px rgba(122, 158, 126, 0.15);
    
    /* Borders */
    --sohum-radius-sm: 8px;
    --sohum-radius-md: 16px;
    --sohum-radius-lg: 24px;
    --sohum-radius-xl: 32px;
    
    /* Transitions */
    --sohum-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --sohum-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== GLOBAL RESETS FOR PRODUCT PAGE ===== */
.sohum-product-wrapper * {
    box-sizing: border-box;
}

.sohum-product-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: var(--sohum-space-xl) var(--sohum-space-lg);
    font-family: var(--sohum-font-body);
    background: var(--sohum-warm-white);
    color: var(--sohum-text-body);
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

/* Subtle background texture */
.sohum-product-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(122, 158, 126, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(193, 127, 89, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 0;
}

.sohum-product-wrapper > * {
    position: relative;
    z-index: 1;
}

/* ===== ENTRANCE ANIMATIONS ===== */
@keyframes sohum-fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sohum-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sohum-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes sohum-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes sohum-pulse-soft {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

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

/* ===== BREADCRUMB - REFINED ===== */
.sohum-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--sohum-space-xs);
    margin-bottom: var(--sohum-space-xl);
    font-family: var(--sohum-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    animation: sohum-fadeIn 0.6s var(--sohum-ease-out);
}

.sohum-breadcrumb a {
    color: var(--sohum-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.sohum-breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sohum-sage);
    transition: width 0.3s var(--sohum-ease-out);
}

.sohum-breadcrumb a:hover {
    color: var(--sohum-sage);
}

.sohum-breadcrumb a:hover::after {
    width: 100%;
}

.sohum-breadcrumb span:last-child {
    color: var(--sohum-text-dark);
    font-weight: 600;
}

/* ===== MAIN PRODUCT LAYOUT ===== */
.sohum-product-main {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--sohum-space-2xl);
    margin-bottom: var(--sohum-space-2xl);
    align-items: start;
}

/* ===== PRODUCT IMAGES SECTION ===== */
.sohum-product-images {
    position: relative;
    animation: sohum-slideInLeft 0.8s var(--sohum-ease-out);
}

.sohum-sticky-images {
    position: sticky;
    top: 100px;
}

.sohum-main-image-wrapper {
    position: relative;
    border-radius: var(--sohum-radius-xl);
    overflow: hidden;
    background: var(--sohum-linen);
    box-shadow: var(--sohum-shadow-lg);
    margin-bottom: var(--sohum-space-md);
}

/* Artistic frame effect */
.sohum-main-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: calc(var(--sohum-radius-xl) - 8px);
    pointer-events: none;
    z-index: 3;
}

.sohum-main-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.sohum-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--sohum-ease-out);
}

.sohum-main-image-wrapper:hover .sohum-product-image {
    transform: scale(1.05);
}

/* Sale Badge - Elegant */
.sohum-product-badge {
    position: absolute;
    top: var(--sohum-space-md);
    left: var(--sohum-space-md);
    background: var(--sohum-terracotta);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-family: var(--sohum-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(193, 127, 89, 0.3);
}

.sohum-product-badge i {
    font-size: 0.7rem;
}

/* Thumbnails Gallery */
.sohum-thumbnails {
    display: flex;
    gap: var(--sohum-space-sm);
    padding: 0 var(--sohum-space-xs);
}

.sohum-thumbnail {
    flex: 1;
    aspect-ratio: 1;
    border-radius: var(--sohum-radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s var(--sohum-ease-out);
    background: var(--sohum-linen);
    box-shadow: var(--sohum-shadow-sm);
    position: relative;
}

.sohum-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0);
    transition: background 0.3s ease;
}

.sohum-thumbnail:hover::after {
    background: rgba(26, 26, 46, 0.05);
}

.sohum-thumbnail:hover,
.sohum-thumbnail.active {
    border-color: var(--sohum-sage);
    transform: translateY(-4px);
    box-shadow: var(--sohum-shadow-md), var(--sohum-shadow-glow);
}

.sohum-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--sohum-ease-out);
}

.sohum-thumbnail:hover img {
    transform: scale(1.1);
}

/* ===== PRODUCT INFO SECTION ===== */
.sohum-product-info {
    animation: sohum-fadeUp 0.8s var(--sohum-ease-out) 0.2s both;
    padding-top: var(--sohum-space-sm);
}

/* Handcrafted Label - Premium Badge */
.sohum-handcrafted-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--sohum-linen), var(--sohum-cloud));
    color: var(--sohum-sage-dark);
    padding: 12px 24px;
    border-radius: 100px;
    font-family: var(--sohum-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--sohum-space-md);
    border: 1px solid var(--sohum-sage-light);
    box-shadow: var(--sohum-shadow-sm);
}

.sohum-handcrafted-label i {
    color: var(--sohum-terracotta);
    font-size: 1rem;
    animation: sohum-pulse-soft 2s ease-in-out infinite;
}

/* Product Title - Elegant Typography */
.sohum-product-info .sohum-product-title {
    font-family: var(--sohum-font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--sohum-text-dark);
    line-height: 1.15;
    margin-bottom: var(--sohum-space-md);
    letter-spacing: -0.02em;
}

/* Product Meta Row */
.sohum-product-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sohum-space-md);
    margin-bottom: var(--sohum-space-lg);
    padding-bottom: var(--sohum-space-lg);
    border-bottom: 1px solid var(--sohum-cloud);
}

.sohum-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sohum-star-rating {
    display: flex;
    gap: 2px;
}

.sohum-star-rating i {
    color: var(--sohum-gold);
    font-size: 1rem;
}

.sohum-rating-count {
    font-size: 0.9rem;
    color: var(--sohum-text-muted);
    font-weight: 500;
}

.sohum-sku {
    font-size: 0.85rem;
    color: var(--sohum-text-muted);
    font-weight: 500;
    padding-left: var(--sohum-space-md);
    border-left: 1px solid var(--sohum-cloud);
}

.sohum-stock {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: var(--sohum-space-md);
    border-left: 1px solid var(--sohum-cloud);
}

.sohum-in-stock {
    color: var(--sohum-sage);
}

.sohum-out-of-stock {
    color: var(--sohum-terracotta);
}

/* Price Section - Bold & Clear */
.sohum-price-section {
    margin-bottom: var(--sohum-space-lg);
}

.sohum-price,
.sohum-product-wrapper .price,
.sohum-product-wrapper .woocommerce-Price-amount {
    font-family: var(--sohum-font-display);
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--sohum-text-dark);
    margin-bottom: 8px;
    background: transparent;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.sohum-price del,
.sohum-product-wrapper .price del {
    color: var(--sohum-text-light);
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.7;
}

.sohum-price ins,
.sohum-product-wrapper .price ins {
    text-decoration: none;
    color: var(--sohum-terracotta);
}

.sohum-tax-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--sohum-text-muted);
    font-weight: 500;
}

.sohum-tax-info i {
    color: var(--sohum-sage);
}

/* Short Description */
.sohum-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--sohum-text-body);
    margin-bottom: var(--sohum-space-lg);
    font-family: var(--sohum-font-body);
}

.sohum-description p {
    margin-bottom: var(--sohum-space-sm);
}

/* ===== MAKER INFO CARD - SIGNATURE ELEMENT ===== */
.sohum-maker-info-card {
    background: linear-gradient(145deg, var(--sohum-cream) 0%, var(--sohum-linen) 100%);
    border: none;
    border-radius: var(--sohum-radius-lg);
    padding: var(--sohum-space-lg);
    margin-bottom: var(--sohum-space-lg);
    display: flex;
    align-items: center;
    gap: var(--sohum-space-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--sohum-shadow-md);
}

/* Decorative corner accent */
.sohum-maker-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--sohum-sage-light) 0%, transparent 60%);
    opacity: 0.2;
    border-radius: 0 var(--sohum-radius-lg) 0 100%;
}

/* Decorative leaf pattern */
.sohum-maker-info-card::after {
    content: '❋';
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    color: var(--sohum-sage);
    opacity: 0.3;
}

.sohum-maker-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: 
        0 4px 20px rgba(26, 26, 46, 0.1),
        0 0 0 2px var(--sohum-sage-light);
    position: relative;
    z-index: 1;
}

.sohum-maker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sohum-maker-details {
    flex: 1;
    position: relative;
    z-index: 1;
}

.sohum-maker-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sohum-sage);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sohum-maker-badge i {
    font-size: 0.7rem;
}

.sohum-maker-details h4 {
    font-family: var(--sohum-font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sohum-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 6px 0;
}

.sohum-maker-name {
    font-family: var(--sohum-font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sohum-text-dark);
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.sohum-maker-condition {
    font-family: var(--sohum-font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--sohum-text-muted);
    margin: 0;
    font-style: italic;
}

/* ===== CART SECTION ===== */
.sohum-cart-section {
    display: flex;
    gap: var(--sohum-space-sm);
    margin-bottom: var(--sohum-space-md);
}

/* Quantity Selector - Refined */
.sohum-quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--sohum-cloud);
    border-radius: var(--sohum-radius-md);
    overflow: hidden;
    background: white;
    transition: border-color 0.3s ease;
}

.sohum-quantity-selector:hover,
.sohum-quantity-selector:focus-within {
    border-color: var(--sohum-sage-light);
}

.sohum-qty-btn {
    width: 52px;
    height: 56px;
    border: none;
    background: transparent;
    color: var(--sohum-text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sohum-qty-btn:hover {
    background: var(--sohum-sage);
    color: white;
}

.sohum-qty-input {
    width: 60px;
    text-align: center;
    border: none;
    padding: 16px 0;
    font-family: var(--sohum-font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sohum-text-dark);
    outline: none;
    background: transparent;
    -moz-appearance: textfield;
}

.sohum-qty-input::-webkit-outer-spin-button,
.sohum-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart Button - Premium */
.sohum-add-to-cart-btn {
    flex: 1;
    padding: 18px 40px;
    background: var(--sohum-ink);
    color: white;
    border: none;
    border-radius: var(--sohum-radius-md);
    font-family: var(--sohum-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--sohum-ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.sohum-add-to-cart-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sohum-sage) 0%, var(--sohum-sage-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sohum-add-to-cart-btn:hover::before {
    opacity: 1;
}

.sohum-add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.25);
}

.sohum-add-to-cart-btn i,
.sohum-add-to-cart-btn span {
    position: relative;
    z-index: 1;
}

.sohum-add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Secondary Actions */
.sohum-secondary-actions {
    display: flex;
    gap: var(--sohum-space-sm);
    margin-bottom: var(--sohum-space-lg);
}

.sohum-action-btn {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid var(--sohum-cloud);
    border-radius: var(--sohum-radius-md);
    font-family: var(--sohum-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sohum-text-body);
    cursor: pointer;
    transition: all 0.3s var(--sohum-ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sohum-action-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.sohum-action-btn:hover {
    border-color: var(--sohum-sage);
    color: var(--sohum-sage);
    background: rgba(122, 158, 126, 0.05);
}

.sohum-action-btn:hover i {
    transform: scale(1.15);
}

.sohum-wishlist-btn:hover i {
    color: var(--sohum-terracotta);
}

/* ===== PRODUCT DETAILS SECTION ===== */
.sohum-product-details {
    margin-top: var(--sohum-space-2xl);
    animation: sohum-fadeUp 0.8s var(--sohum-ease-out);
}

.sohum-section-title {
    font-family: var(--sohum-font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--sohum-text-dark);
    margin-bottom: var(--sohum-space-lg);
    text-align: center;
    position: relative;
    letter-spacing: -0.01em;
}

.sohum-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--sohum-sage), var(--sohum-terracotta));
    margin: var(--sohum-space-sm) auto 0;
    border-radius: 2px;
}

.sohum-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sohum-space-md);
}

.sohum-detail-item {
    background: white;
    border-radius: var(--sohum-radius-lg);
    padding: var(--sohum-space-lg);
    text-align: center;
    transition: all 0.4s var(--sohum-ease-out);
    box-shadow: var(--sohum-shadow-sm);
    border: 1px solid var(--sohum-cloud);
}

.sohum-detail-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--sohum-shadow-lg);
    border-color: var(--sohum-sage-light);
}

.sohum-detail-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--sohum-space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sohum-cream), var(--sohum-linen));
    border-radius: 50%;
    transition: all 0.4s var(--sohum-ease-out);
}

.sohum-detail-icon i {
    font-size: 1.75rem;
    color: var(--sohum-sage);
    transition: transform 0.4s var(--sohum-ease-bounce);
}

.sohum-detail-item:hover .sohum-detail-icon {
    background: var(--sohum-sage);
}

.sohum-detail-item:hover .sohum-detail-icon i {
    color: white;
    transform: scale(1.1);
}

.sohum-detail-item h4 {
    font-family: var(--sohum-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sohum-text-dark);
    margin: 0 0 8px 0;
}

.sohum-detail-item p {
    font-size: 0.9rem;
    color: var(--sohum-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== PRODUCT TABS / FULL DESCRIPTION ===== */
.sohum-product-tabs {
    margin-top: var(--sohum-space-2xl);
    background: white;
    border-radius: var(--sohum-radius-xl);
    padding: var(--sohum-space-xl);
    box-shadow: var(--sohum-shadow-md);
}

.sohum-tab-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--sohum-text-body);
}

.sohum-tab-content p {
    margin-bottom: var(--sohum-space-md);
}

/* ===== GUARANTEE SECTION ===== */
.sohum-guarantee-section {
    margin-top: var(--sohum-space-2xl);
    background: linear-gradient(145deg, var(--sohum-linen) 0%, var(--sohum-cream) 100%);
    border-radius: var(--sohum-radius-xl);
    padding: var(--sohum-space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.sohum-guarantee-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--sohum-sage-light) 0%, transparent 70%);
    opacity: 0.2;
}

.sohum-guarantee-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--sohum-terracotta-light) 0%, transparent 70%);
    opacity: 0.15;
}

.sohum-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sohum-space-lg);
    position: relative;
    z-index: 1;
}

.sohum-guarantee-item {
    padding: var(--sohum-space-md);
}

.sohum-guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--sohum-space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--sohum-shadow-md);
    transition: all 0.4s var(--sohum-ease-out);
}

.sohum-guarantee-icon i {
    font-size: 2rem;
    color: var(--sohum-sage);
    transition: transform 0.4s var(--sohum-ease-bounce);
}

.sohum-guarantee-item:hover .sohum-guarantee-icon {
    transform: translateY(-6px);
    box-shadow: var(--sohum-shadow-lg), var(--sohum-shadow-glow);
}

.sohum-guarantee-item:hover .sohum-guarantee-icon i {
    transform: scale(1.1);
}

.sohum-guarantee-item h4 {
    font-family: var(--sohum-font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sohum-text-dark);
    margin: 0 0 8px 0;
}

.sohum-guarantee-item p {
    font-size: 0.9rem;
    color: var(--sohum-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== RELATED PRODUCTS ===== */
.sohum-related-products {
    margin-top: var(--sohum-space-2xl);
    padding-top: var(--sohum-space-xl);
}

.sohum-related-title {
    font-family: var(--sohum-font-display);
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    color: var(--sohum-text-dark);
    margin-bottom: var(--sohum-space-xl);
    position: relative;
    letter-spacing: -0.02em;
}

.sohum-related-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--sohum-sage), var(--sohum-terracotta));
    margin: var(--sohum-space-sm) auto 0;
    border-radius: 2px;
}

.sohum-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sohum-space-lg);
}

.sohum-related-card {
    background: white;
    border-radius: var(--sohum-radius-lg);
    overflow: hidden;
    box-shadow: var(--sohum-shadow-sm);
    transition: all 0.5s var(--sohum-ease-out);
    text-decoration: none;
    display: block;
    border: 1px solid var(--sohum-cloud);
}

.sohum-related-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--sohum-shadow-lg);
    border-color: transparent;
}

.sohum-related-image {
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}

.sohum-related-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sohum-related-card:hover .sohum-related-image::after {
    opacity: 1;
}

.sohum-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--sohum-ease-out);
}

.sohum-related-card:hover .sohum-related-image img {
    transform: scale(1.08);
}

.sohum-related-info {
    padding: var(--sohum-space-md);
}

.sohum-related-info h3 {
    font-family: var(--sohum-font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sohum-text-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.sohum-related-card:hover .sohum-related-info h3 {
    color: var(--sohum-sage);
}

.sohum-related-price {
    font-family: var(--sohum-font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sohum-text-dark);
}

/* ===== PRODUCTS GRID ===== */
.sohum-products-grid {
    display: grid;
    gap: var(--sohum-space-lg);
    margin: var(--sohum-space-xl) 0;
}

.sohum-products-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.sohum-products-grid[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr);
}

.sohum-products-grid[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
}

/* Product Card - Refined */
.sohum-product-card {
    background: white;
    border-radius: var(--sohum-radius-lg);
    overflow: hidden;
    box-shadow: var(--sohum-shadow-sm);
    transition: all 0.5s var(--sohum-ease-out);
    border: 1px solid var(--sohum-cloud);
    position: relative;
}

.sohum-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sohum-sage), var(--sohum-terracotta));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sohum-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sohum-shadow-lg);
    border-color: transparent;
}

.sohum-product-card:hover::before {
    opacity: 1;
}

.sohum-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--sohum-linen);
}

.sohum-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--sohum-ease-out);
}

.sohum-product-card:hover .sohum-product-image img {
    transform: scale(1.06);
}

.sohum-sale-badge {
    position: absolute;
    top: var(--sohum-space-sm);
    right: var(--sohum-space-sm);
    background: var(--sohum-terracotta);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--sohum-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(193, 127, 89, 0.3);
}

.sohum-product-content {
    padding: var(--sohum-space-md);
}

.sohum-product-card .sohum-product-title {
    font-family: var(--sohum-font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sohum-text-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.sohum-product-card .sohum-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sohum-product-card .sohum-product-title a:hover {
    color: var(--sohum-sage);
}

.sohum-product-price {
    font-family: var(--sohum-font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--sohum-text-dark);
    margin-bottom: var(--sohum-space-md);
}

.sohum-product-price del {
    font-size: 1rem;
    color: var(--sohum-text-light);
    margin-right: 8px;
}

.sohum-product-price ins {
    text-decoration: none;
    color: var(--sohum-terracotta);
}

/* Maker Info in Card */
.sohum-product-maker {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--sohum-space-sm);
    background: var(--sohum-linen);
    border-radius: var(--sohum-radius-sm);
    margin-bottom: var(--sohum-space-md);
}

.sohum-product-maker-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(26, 26, 46, 0.1);
}

.sohum-product-maker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sohum-product-maker-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sohum-product-maker-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--sohum-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sohum-product-maker-name {
    font-family: var(--sohum-font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sohum-text-dark);
}

.sohum-product-maker-condition {
    font-size: 0.8rem;
    color: var(--sohum-text-muted);
    font-style: italic;
}

/* Add to Cart in Card */
.sohum-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--sohum-ink);
    color: white;
    text-align: center;
    border-radius: var(--sohum-radius-sm);
    font-family: var(--sohum-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s var(--sohum-ease-out);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sohum-add-to-cart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sohum-sage);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sohum-add-to-cart:hover::before {
    opacity: 1;
}

.sohum-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 158, 126, 0.3);
}

.sohum-add-to-cart i,
.sohum-add-to-cart span {
    position: relative;
    z-index: 1;
}

/* ===== PRODUCTS SLIDER ===== */
.sohum-products-slider {
    position: relative;
    margin: var(--sohum-space-xl) 0;
    padding: 0 70px;
}

.sohum-slider-wrapper {
    overflow: hidden;
    border-radius: var(--sohum-radius-lg);
}

.sohum-slider-container {
    display: flex;
    gap: var(--sohum-space-lg);
    transition: transform 0.5s var(--sohum-ease-out);
}

.sohum-products-slider .sohum-product-card {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
}

.sohum-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--sohum-cloud);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--sohum-ease-out);
    z-index: 10;
    box-shadow: var(--sohum-shadow-md);
    color: var(--sohum-text-body);
    font-size: 1.1rem;
}

.sohum-slider-btn:hover {
    background: var(--sohum-sage);
    border-color: var(--sohum-sage);
    color: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--sohum-shadow-lg), var(--sohum-shadow-glow);
}

.sohum-slider-prev {
    left: 0;
}

.sohum-slider-next {
    right: 0;
}

/* ===== WOOCOMMERCE OVERRIDES ===== */
.sohum-product-wrapper .woocommerce-Price-amount,
.sohum-product-wrapper .woocommerce-Price-currencySymbol,
.sohum-product-wrapper .price,
.sohum-product-wrapper .amount,
.sohum-product-wrapper bdi {
    background: transparent;
    font-family: var(--sohum-font-display);
}

.sohum-product-wrapper .woocommerce-breadcrumb {
    display: none;
}

.sohum-product-wrapper .product {
    margin: 0;
}

.sohum-product-wrapper form.cart {
    background: transparent;
}

.sohum-product-wrapper .variations {
    background: transparent;
}

.sohum-product-wrapper .variations tr,
.sohum-product-wrapper .variations td,
.sohum-product-wrapper .variations th {
    background: transparent;
    padding: 10px 0;
}

.sohum-product-wrapper .stock {
    background: transparent;
}

.sohum-product-wrapper .star-rating,
.sohum-product-wrapper .star-rating span {
    color: var(--sohum-gold);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .sohum-product-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--sohum-space-xl);
    }
    
    .sohum-details-grid,
    .sohum-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sohum-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sohum-products-grid[data-columns="4"] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .sohum-product-main {
        grid-template-columns: 1fr;
        gap: var(--sohum-space-xl);
    }
    
    .sohum-sticky-images {
        position: relative;
        top: 0;
    }
    
    .sohum-main-image {
        aspect-ratio: 4/3;
    }
    
    .sohum-products-slider .sohum-product-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .sohum-product-wrapper {
        padding: var(--sohum-space-lg) var(--sohum-space-md);
    }
    
    .sohum-product-info .sohum-product-title {
        font-size: 2rem;
    }
    
    .sohum-price,
    .sohum-product-wrapper .price {
        font-size: 2rem;
    }
    
    .sohum-thumbnails {
        gap: var(--sohum-space-xs);
    }
    
    .sohum-cart-section {
        flex-direction: column;
    }
    
    .sohum-quantity-selector {
        width: 100%;
        justify-content: center;
    }
    
    .sohum-secondary-actions {
        flex-direction: column;
    }
    
    .sohum-details-grid,
    .sohum-guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .sohum-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sohum-products-grid[data-columns="3"],
    .sohum-products-grid[data-columns="4"] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sohum-products-slider {
        padding: 0 50px;
    }
    
    .sohum-products-slider .sohum-product-card {
        min-width: 100%;
    }
    
    .sohum-product-tabs {
        padding: var(--sohum-space-lg);
    }
    
    .sohum-guarantee-section {
        padding: var(--sohum-space-xl) var(--sohum-space-md);
    }
    
    .sohum-maker-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .sohum-maker-details {
        text-align: center;
    }
    
    .sohum-maker-badge {
        margin: 0 auto var(--sohum-space-xs);
    }
}

@media (max-width: 600px) {
    .sohum-related-grid,
    .sohum-products-grid[data-columns="2"],
    .sohum-products-grid[data-columns="3"],
    .sohum-products-grid[data-columns="4"] {
        grid-template-columns: 1fr;
    }
    
    .sohum-related-title,
    .sohum-section-title {
        font-size: 1.75rem;
    }
    
    .sohum-breadcrumb {
        font-size: 0.75rem;
    }
    
    .sohum-product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sohum-space-sm);
    }
    
    .sohum-sku,
    .sohum-stock {
        padding-left: 0;
        border-left: none;
    }
}

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

/* Focus states */
.sohum-add-to-cart-btn:focus-visible,
.sohum-action-btn:focus-visible,
.sohum-qty-btn:focus-visible,
.sohum-thumbnail:focus-visible,
.sohum-slider-btn:focus-visible {
    outline: 2px solid var(--sohum-sage);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .sohum-product-wrapper {
        background: white;
    }
    
    .sohum-product-wrapper::before,
    .sohum-secondary-actions,
    .sohum-cart-section,
    .sohum-slider-btn,
    .sohum-add-to-cart {
        display: none !important;
    }
}
