/**
 * LLA Product Template - LOVABLE IDENTICAL v2.0.1
 * Based on: lovable-exemple le-local-des-artisans-main/src/index.css
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ============================================
   Variables - Lovable EXACTES (HSL converted)
   ============================================ */
:root {
    /* Base - tons naturels et chaleureux */
    --lla-bg: hsl(30, 15%, 98%);
    --lla-foreground: hsl(25, 25%, 15%);
    --lla-card: hsl(30, 20%, 96%);
    --lla-card-foreground: hsl(25, 25%, 15%);
    
    /* Primary - ocre doré */
    --lla-primary: hsl(35, 65%, 55%);
    --lla-primary-hover: hsl(35, 65%, 50%);
    --lla-primary-foreground: hsl(30, 15%, 98%);
    
    /* Secondary - terracotta */
    --lla-secondary: hsl(15, 55%, 65%);
    --lla-secondary-hover: hsl(15, 55%, 60%);
    
    /* Accent - vert forêt */
    --lla-accent: hsl(140, 35%, 35%);
    --lla-accent-foreground: hsl(30, 15%, 98%);
    
    /* Muted */
    --lla-muted: hsl(30, 25%, 90%);
    --lla-muted-foreground: hsl(25, 15%, 45%);
    
    /* Destructive */
    --lla-destructive: hsl(0, 65%, 55%);
    
    /* Border */
    --lla-border: hsl(30, 20%, 88%);
    --lla-input: hsl(30, 20%, 94%);
    --lla-ring: hsl(35, 65%, 55%);
    
    /* Radius */
    --lla-radius: 0.5rem;
    --lla-radius-lg: 0.75rem;
    --lla-radius-xl: 1rem;
    
    /* Shadows */
    --lla-shadow-soft: 0 4px 20px -4px hsla(35, 65%, 55%, 0.15);
    --lla-shadow-card: 0 2px 12px -2px hsla(35, 65%, 55%, 0.1);
    
    /* Fonts */
    --lla-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --lla-font-heading: 'Playfair Display', Georgia, serif;
}

/* ============================================
   Reset & Base
   ============================================ */
.lla-lovable-page,
.lla-lovable-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lla-lovable-page {
    font-family: var(--lla-font-sans);
    background: var(--lla-bg);
    color: var(--lla-foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lla-header-spacer {
    height: 20px;
    background-color: white;

}

.lla-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 60px;
}

@media (min-width: 768px) {
    .lla-container {
        padding: 0 24px 60px;
    }
}

/* ============================================
   Breadcrumb - Lovable Style
   ============================================ */
.lla-breadcrumb-bar {
    border-bottom: 1px solid var(--lla-border);
    background: hsla(30, 25%, 90%, 0.3);
}

.lla-breadcrumb-bar .lla-container {
    padding-bottom: 0;
}

.lla-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--lla-muted-foreground);
    flex-wrap: wrap;
}

.lla-breadcrumb a {
    color: var(--lla-muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.lla-breadcrumb a:hover {
    color: var(--lla-foreground);
}

.lla-breadcrumb svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lla-breadcrumb .current {
    color: var(--lla-foreground);
    font-weight: 500;
}

/* ============================================
   Product Layout - 2 columns
   ============================================ */
.lla-product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .lla-product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* ============================================
   Gallery Column
   ============================================ */
.lla-gallery-column {
    position: relative;
}

.lla-gallery-sticky {
    position: sticky;
    top: 100px;
}

.lla-main-media {
    position: relative;
    aspect-ratio: 1;
    background: var(--lla-muted);
    border-radius: var(--lla-radius-xl);
    overflow: hidden;
    box-shadow: var(--lla-shadow-card);
}

.lla-main-image,
.lla-main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

/* Video Container for iframes (YouTube/Vimeo) */
.lla-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--lla-dark);
}

.lla-main-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--lla-radius-lg);
}

.lla-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.lla-gallery-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--lla-radius);
    overflow: hidden;
    border: 2px solid var(--lla-border);
    cursor: pointer;
    transition: all 0.2s;
    background: none;
    padding: 0;
}

.lla-gallery-thumb:hover {
    border-color: hsla(35, 65%, 55%, 0.5);
}

.lla-gallery-thumb.active {
    border-color: var(--lla-primary);
    box-shadow: var(--lla-shadow-soft);
}

.lla-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lla-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(25, 25%, 15%, 0.2);
}

.lla-play-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: hsla(30, 15%, 98%, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lla-play-icon svg {
    width: 14px;
    height: 14px;
    color: var(--lla-primary);
    margin-left: 2px;
}

/* ============================================
   Info Column
   ============================================ */
.lla-info-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Badges */
.lla-badges-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lla-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 9999px;
}

.lla-badge-category {
    background: var(--lla-muted);
    color: var(--lla-muted-foreground);
}

.lla-badge-discount {
    background: var(--lla-destructive);
    color: var(--lla-primary-foreground);
}

.lla-badge-handmade {
    background: hsla(35, 65%, 55%, 0.15);
    color: hsl(35, 65%, 40%);
    gap: 4px;
}

.lla-badge-handmade svg {
    width: 12px;
    height: 12px;
}

.lla-badge-france {
    background: hsla(220, 70%, 50%, 0.1);
    color: hsl(220, 70%, 40%);
}

.lla-badge-eco {
    background: hsla(140, 35%, 35%, 0.15);
    color: var(--lla-accent);
    gap: 4px;
}

.lla-badge-eco svg {
    width: 12px;
    height: 12px;
}

/* Title */
.lla-product-title {
    font-family: var(--lla-font-heading);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--lla-foreground);
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .lla-product-title {
        font-size: 36px;
    }
}

/* Rating */
.lla-rating-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lla-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.lla-star {
    width: 20px;
    height: 20px;
    fill: transparent;
    stroke: var(--lla-muted);
    stroke-width: 1.5px;
}

.lla-star.filled {
    fill: var(--lla-primary);
    stroke: var(--lla-primary);
}

.lla-rating-value {
    margin-left: 8px;
    font-weight: 600;
    color: var(--lla-foreground);
}

.lla-separator {
    color: var(--lla-border);
}

.lla-review-link {
    font-size: 14px;
    color: var(--lla-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.lla-review-link:hover {
    text-decoration: underline;
}

/* Price */
.lla-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.lla-price-current {
    font-size: 32px;
    font-weight: 700;
    color: var(--lla-foreground);
}

.lla-price-current .woocommerce-Price-currencySymbol {
    font-size: 0.7em;
}

.lla-price-original {
    font-size: 20px;
    color: var(--lla-muted-foreground);
    text-decoration: line-through;
}

/* Prix à l'unité (PAU) - Conformité française */
.lla-unit-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #f0f7ff;
    border-radius: 6px;
    font-size: 14px;
}

.lla-unit-price-value {
    font-weight: 600;
    color: #1e40af;
}

.lla-unit-price-suffix {
    color: #64748b;
}

/* Mention TVA */
.lla-vat-mention {
    margin-top: 6px;
    font-size: 13px;
    color: #64748b;
}

.lla-vat-mention.lla-vat-franchise {
    padding: 6px 10px;
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    border-radius: 4px;
    color: #92400e;
    font-size: 12px;
}

/* Stock */
.lla-stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.lla-stock-status.in-stock {
    color: var(--lla-accent);
}

.lla-stock-status.in-stock svg {
    width: 20px;
    height: 20px;
}

.lla-stock-status.low-stock {
    color: #dc2626;
}

.lla-stock-status.out-of-stock {
    color: var(--lla-destructive);
}

/* Separator */
.lla-separator-line {
    height: 1px;
    background: var(--lla-border);
}

/* Highlights Box */
.lla-highlights-box {
    border-radius: var(--lla-radius-lg);
    padding: 20px;
}

.lla-highlights-box h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--lla-foreground);
    margin-bottom: 12px;
}

.lla-highlights-box h3 svg {
    width: 20px;
    height: 20px;
    color: var(--lla-accent);
}

.lla-highlights-content {
    font-size: 14px;
    color: var(--lla-foreground);
    line-height: 1.7;
}

.lla-highlights-content p {
    margin-bottom: 8px;
}

.lla-highlights-content ul {
    list-style: none;
    padding: 0;
}

.lla-highlights-content li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.lla-highlights-content li::before {
    content: "✓";
    color: var(--lla-accent);
    font-weight: 600;
}

/* Customization Box */
.lla-customization-box {
    border: 1px solid hsla(35, 65%, 55%, 0.2);
    border-radius: var(--lla-radius-lg);
    padding: 20px;
}

.lla-customization-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.lla-customization-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lla-customization-title svg {
    width: 20px;
    height: 20px;
    color: var(--lla-primary);
}

.lla-customization-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--lla-foreground);
    margin: 0;
}

.lla-customization-price {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    background: var(--lla-primary);
    color: var(--lla-primary-foreground);
    border-radius: 9999px;
}

.lla-customization-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lla-customization-field label {
    font-size: 14px;
    font-weight: 500;
    color: var(--lla-foreground);
}

.lla-custom-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--lla-font-sans);
    border: 1px solid var(--lla-border);
    border-radius: var(--lla-radius);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lla-custom-input:focus {
    outline: none;
    border-color: var(--lla-primary);
    box-shadow: 0 0 0 3px hsla(35, 65%, 55%, 0.15);
}

.lla-custom-hint {
    font-size: 12px;
    color: var(--lla-muted-foreground);
    margin: 0;
}

/* Highlight List */
.lla-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lla-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--lla-foreground);
}

.lla-highlight-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: hsla(140, 35%, 35%, 0.15);
    color: var(--lla-accent);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

/* Artisan Card - Premium Design */
.lla-artisan-card {
    background: linear-gradient(135deg, #fefefe 0%, #f8f7f6 100%);
    border: 1px solid var(--lla-border);
    border-radius: var(--lla-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.lla-artisan-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--lla-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lla-artisan-card:hover::before {
    opacity: 1;
}

.lla-artisan-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.lla-artisan-link:hover {
    background: rgba(139, 90, 43, 0.04);
}

.lla-artisan-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lla-artisan-link:hover .lla-artisan-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.lla-artisan-avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lla-primary) 0%, #a06b30 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lla-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 3px 12px rgba(139, 90, 43, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lla-artisan-link:hover .lla-artisan-avatar {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(139, 90, 43, 0.35);
}

.lla-artisan-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.lla-artisan-sublabel {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lla-muted-foreground);
}

.lla-artisan-name {
    font-family: var(--lla-font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--lla-foreground);
    line-height: 1.2;
}

.lla-artisan-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    flex-wrap: wrap;
}

.lla-artisan-craft {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: var(--lla-primary);
    font-weight: 600;
    background: rgba(139, 90, 43, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.lla-artisan-separator {
    display: none;
}

.lla-artisan-region {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--lla-muted-foreground);
    font-weight: 500;
}

.lla-artisan-region svg {
    width: 13px;
    height: 13px;
    opacity: 0.7;
}

/* Badge Premium sur le nom de l'artisan */
.lla-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: 6px;
    padding: 2px 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(245, 158, 11, 0.3);
}

.lla-premium-badge svg {
    width: 10px;
    height: 10px;
}

/* Badge Atelier visitable */
.lla-artisan-workshop {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--lla-primary, #d97706);
    font-weight: 500;
    background: rgba(217, 119, 6, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
}

.lla-artisan-workshop svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
}

.lla-artisan-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lla-muted);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.lla-artisan-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--lla-muted-foreground);
    transition: transform 0.3s ease, color 0.3s ease;
}

.lla-artisan-link:hover .lla-artisan-arrow {
    background: var(--lla-primary);
    transform: translateX(3px);
}

.lla-artisan-link:hover .lla-artisan-arrow svg {
    color: #fff;
}

/* Cart Form */
.lla-cart-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lla-quantity-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lla-qty-label {
    font-weight: 500;
    color: var(--lla-foreground);
}

.lla-qty-wrapper {
    display: flex !important;
    align-items: center !important;
    border: 2px solid var(--lla-border) !important;
    border-color: hsl(30, 20%, 85%) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #fff !important;
}

.lla-qty-btn {
    width: 46px !important;
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--lla-muted) !important;
    background-color: hsl(30, 20%, 96%) !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: var(--lla-foreground) !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.lla-qty-btn:hover {
    background: var(--lla-primary) !important;
    background-color: hsl(35, 65%, 55%) !important;
    color: #fff !important;
}

.lla-qty-btn:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.lla-qty-btn:active {
    transform: scale(0.95) !important;
}

.lla-qty-input {
    width: 60px !important;
    height: 46px !important;
    text-align: center !important;
    border: none !important;
    border-left: 1px solid hsl(30, 20%, 90%) !important;
    border-right: 1px solid hsl(30, 20%, 90%) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: var(--lla-font-sans) !important;
    -moz-appearance: textfield !important;
    background: #fff !important;
    color: var(--lla-foreground) !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.lla-qty-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-left: 1px solid hsl(30, 20%, 90%) !important;
    border-right: 1px solid hsl(30, 20%, 90%) !important;
}

.lla-qty-input::-webkit-outer-spin-button,
.lla-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Buttons - Override Elementor/Theme defaults */
.lla-buttons-row {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.lla-lovable-page .lla-btn,
.lla-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 28px !important;
    height: 52px !important;
    min-height: 52px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: var(--lla-font-sans) !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    line-height: 1 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    box-shadow: none !important;
    position: relative !important;
    overflow: hidden !important;
}

.lla-lovable-page .lla-btn svg,
.lla-btn svg {
    width: 20px !important;
    height: 20px !important;
    fill: none !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
}

.lla-lovable-page .lla-btn-primary,
.lla-btn-primary {
    flex: 1 !important;
    min-width: 180px !important;
    background: linear-gradient(135deg, hsl(35, 65%, 55%) 0%, hsl(30, 60%, 48%) 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 14px hsla(35, 65%, 45%, 0.35) !important;
}

.lla-lovable-page .lla-btn-primary::before,
.lla-btn-primary::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.lla-lovable-page .lla-btn-primary:hover::before,
.lla-btn-primary:hover::before {
    left: 100% !important;
}

.lla-lovable-page .lla-btn-primary:hover,
.lla-btn-primary:hover {
    background: linear-gradient(135deg, hsl(35, 65%, 50%) 0%, hsl(30, 60%, 43%) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px hsla(35, 65%, 45%, 0.45) !important;
}

.lla-lovable-page .lla-btn-primary:hover svg,
.lla-btn-primary:hover svg {
    transform: translateX(3px) !important;
}

.lla-lovable-page .lla-btn-primary:active,
.lla-btn-primary:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px hsla(35, 65%, 45%, 0.3) !important;
}

.lla-lovable-page .lla-btn-primary:disabled,
.lla-btn-primary:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.lla-lovable-page .lla-btn-icon,
.lla-btn-icon {
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    background: #fff !important;
    border: 2px solid var(--lla-border) !important;
    border-color: hsl(30, 20%, 88%) !important;
    color: var(--lla-muted-foreground) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.lla-lovable-page .lla-btn-icon:hover,
.lla-btn-icon:hover {
    background: var(--lla-muted) !important;
    background-color: hsl(30, 25%, 96%) !important;
    border-color: var(--lla-primary) !important;
    color: var(--lla-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.lla-lovable-page .lla-btn-icon.active,
.lla-btn-icon.active {
    color: hsl(0, 65%, 55%) !important;
    border-color: hsl(0, 65%, 55%) !important;
    background: hsl(0, 65%, 97%) !important;
}

.lla-lovable-page .lla-btn-icon.active svg,
.lla-btn-icon.active svg {
    fill: currentColor !important;
    animation: heartBeat 0.3s ease !important;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.lla-lovable-page .lla-btn-outline,
.lla-btn-outline {
    background: #fff !important;
    border: 2px solid var(--lla-border) !important;
    border-color: hsl(30, 20%, 88%) !important;
    color: var(--lla-foreground) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.lla-lovable-page .lla-btn-outline:hover,
.lla-btn-outline:hover {
    background: var(--lla-muted) !important;
    background-color: hsl(30, 25%, 96%) !important;
    border-color: var(--lla-primary) !important;
    color: var(--lla-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* WooCommerce button overrides inside our template */
.lla-lovable-page .single_add_to_cart_button,
.lla-lovable-page button[name="add-to-cart"],
.lla-lovable-page .button.alt {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 0 24px !important;
    height: 48px !important;
    min-height: 48px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    font-family: var(--lla-font-sans) !important;
    border-radius: var(--lla-radius-lg) !important;
    border: none !important;
    background: hsl(35, 65%, 55%) !important;
    color: hsl(30, 15%, 98%) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: all 0.2s ease !important;
}

.lla-lovable-page .single_add_to_cart_button:hover,
.lla-lovable-page button[name="add-to-cart"]:hover,
.lla-lovable-page .button.alt:hover {
    background: hsl(35, 65%, 50%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px hsla(35, 65%, 55%, 0.3) !important;
}

/* Trust Badges */
.lla-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 16px;
}

.lla-trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lla-trust-item svg {
    width: 32px;
    height: 32px;
    color: var(--lla-primary);
}

.lla-trust-item span {
    font-size: 12px;
    color: var(--lla-muted-foreground);
}

/* ============================================
   Tabs Section - Premium Design
   ============================================ */
.lla-tabs-section {
    margin-bottom: 48px;
}

.lla-tabs-nav {
    display: flex;
    gap: 4px;
    padding: 6px;
    background: var(--lla-muted);
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lla-tabs-nav::-webkit-scrollbar {
    display: none;
}

.lla-tab-button {
    position: relative;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lla-muted-foreground);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    font-family: var(--lla-font-sans);
}

.lla-tab-button:hover {
    color: var(--lla-foreground);
    background: rgba(255, 255, 255, 0.5);
}

.lla-tab-button.active {
    color: var(--lla-foreground);
    font-weight: 600;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lla-tab-button.active::after {
    display: none;
}

.lla-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 18px;
    padding: 0 6px;
    margin-left: 6px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.08);
    color: var(--lla-muted-foreground);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.lla-tab-button.active .lla-tab-count {
    background: var(--lla-primary);
    color: #fff;
}

.lla-tab-panels {
    padding-top: 24px;
}

.lla-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.lla-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab: Description */
.lla-description-content {
    max-width: none;
}

.lla-description-content h2 {
    font-family: var(--lla-font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--lla-foreground);
    margin-bottom: 16px;
}

.lla-description-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--lla-foreground);
    margin: 24px 0 12px;
}

.lla-description-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--lla-foreground);
    margin-bottom: 16px;
}

.lla-description-content ul,
.lla-description-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.lla-description-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Tab: Specs */
.lla-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.lla-spec-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    background: hsla(30, 25%, 90%, 0.3);
    border-radius: var(--lla-radius-lg);
}

.lla-spec-label {
    font-weight: 500;
    color: var(--lla-foreground);
}

.lla-spec-value {
    color: var(--lla-muted-foreground);
}

.lla-no-content {
    color: var(--lla-muted-foreground);
    font-style: italic;
}

/* Tab: Entretien & Garantie */
.lla-care-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lla-care-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: hsla(30, 25%, 90%, 0.3);
    border-radius: var(--lla-radius-lg);
}

.lla-care-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--lla-radius-lg);
}

.lla-care-icon svg {
    width: 28px;
    height: 28px;
    color: var(--lla-primary);
}

.lla-care-content {
    flex: 1;
}

.lla-care-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--lla-foreground);
    margin-bottom: 8px;
}

.lla-care-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--lla-muted-foreground);
}

.lla-care-text p {
    margin: 0 0 8px;
}

.lla-care-text p:last-child {
    margin-bottom: 0;
}

/* Tab: Shipping */
.lla-shipping-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lla-shipping-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: hsla(30, 25%, 90%, 0.3);
    border-radius: var(--lla-radius-lg);
}

.lla-shipping-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--lla-radius);
}

.lla-shipping-icon svg {
    width: 24px;
    height: 24px;
    color: var(--lla-primary);
}

.lla-shipping-details h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--lla-foreground);
    margin-bottom: 4px;
}

.lla-shipping-details p {
    font-size: 14px;
    color: var(--lla-muted-foreground);
    margin: 0;
}

/* Tab: Reviews */
.lla-reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: hsla(30, 25%, 90%, 0.3);
    border-radius: var(--lla-radius-xl);
    margin-bottom: 32px;
}

.lla-reviews-score {
    text-align: center;
}

.lla-reviews-score .score {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: var(--lla-foreground);
}

.lla-reviews-score .lla-stars {
    justify-content: center;
    margin: 12px 0;
}

.lla-reviews-score .label {
    font-size: 14px;
    color: var(--lla-muted-foreground);
}

.lla-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lla-review-item {
    padding: 24px;
    background: var(--lla-card);
    border-radius: var(--lla-radius-lg);
    border: 1px solid var(--lla-border);
}

.lla-review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.lla-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsla(35, 65%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--lla-primary);
    flex-shrink: 0;
}

.lla-review-meta {
    flex: 1;
}

.lla-review-meta .name {
    display: block;
    font-weight: 600;
    color: var(--lla-foreground);
}

.lla-review-meta .date {
    display: block;
    font-size: 12px;
    color: var(--lla-muted-foreground);
}

.lla-review-stars {
    display: flex;
    gap: 2px;
}

.lla-review-stars .lla-star {
    width: 16px;
    height: 16px;
}

.lla-review-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--lla-foreground);
}

.lla-review-content p {
    margin: 0;
}

.lla-no-reviews {
    text-align: center;
    padding: 48px 24px;
    color: var(--lla-muted-foreground);
}

.lla-no-reviews svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    opacity: 0.5;
}

.lla-no-reviews p {
    font-size: 15px;
}

/* ============================================
   Related Products
   ============================================ */
.lla-related-section {
    margin-top: 48px;
}

.lla-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.lla-related-header h2 {
    font-family: var(--lla-font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--lla-foreground);
}

.lla-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .lla-related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lla-product-card {
    background: var(--lla-card);
    border-radius: var(--lla-radius-lg);
    overflow: hidden;
    box-shadow: var(--lla-shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lla-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lla-shadow-soft);
}

.lla-card-image {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--lla-muted);
}

.lla-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.lla-product-card:hover .lla-card-image img {
    transform: scale(1.1);
}

.lla-card-content {
    padding: 16px;
}

.lla-card-content h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--lla-foreground);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lla-card-content h3 a {
    color: inherit;
    text-decoration: none;
}

.lla-card-content h3 a:hover {
    color: var(--lla-primary);
}

.lla-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.lla-star-sm {
    width: 12px;
    height: 12px;
    fill: transparent;
    stroke: var(--lla-muted);
}

.lla-star-sm.filled {
    fill: var(--lla-primary);
    stroke: var(--lla-primary);
}

.lla-card-rating span {
    font-size: 11px;
    color: var(--lla-muted-foreground);
    margin-left: 4px;
}

.lla-card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--lla-foreground);
}

/* ============================================
   Modal
   ============================================ */
.lla-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: hsla(25, 25%, 15%, 0.9);
    padding: 24px;
}

.lla-modal.active {
    display: flex;
}

.lla-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    color: var(--lla-foreground);
}

.lla-modal img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--lla-radius);
}

/* ============================================
   Page Background - ONLY for LLA content
   Ne pas affecter le header/footer Elementor
   ============================================ */

/* Fond uniquement sur notre container, pas sur les parents */
.lla-lovable-page {
    background: var(--lla-bg) !important;
}

/* NE PAS forcer les styles sur main/site-content pour éviter d'affecter le footer */
/* Ces styles sont retirés car ils causent des problèmes avec Elementor */

/* WooCommerce Overrides */
.lla-lovable-page .woocommerce-message,
.lla-lovable-page .woocommerce-info,
.lla-lovable-page .woocommerce-error {
    border-radius: var(--lla-radius);
    font-family: var(--lla-font-sans);
}

/* Hide WC defaults we don't need */
.lla-lovable-page .woocommerce-product-rating,
.lla-lovable-page .product_meta {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Tabs mobile */
    .lla-tabs-nav {
        padding: 4px;
        gap: 2px;
        justify-content: flex-start;
    }
    
    .lla-tab-button {
        padding: 10px 14px;
        font-size: 13px;
        flex: 0 0 auto;
    }
    
    .lla-tab-count {
        min-width: 18px;
        height: 16px;
        padding: 0 4px;
        font-size: 10px;
        margin-left: 4px;
    }
    
    /* Buttons mobile */
    .lla-buttons-row {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .lla-lovable-page .lla-btn,
    .lla-btn {
        height: 50px !important;
        min-height: 50px !important;
        font-size: 14px !important;
    }
    
    .lla-btn-primary {
        order: 1 !important;
        flex: 1 1 100% !important;
        width: 100% !important;
    }
    
    .lla-btn-icon {
        width: 50px !important;
        min-width: 50px !important;
        height: 50px !important;
    }
    
    /* Icon buttons in a row on mobile */
    .lla-buttons-row .lla-btn-icon {
        order: 2 !important;
    }
    
    /* Artisan card mobile */
    .lla-artisan-card {
        margin: 0 -4px;
        border-radius: 10px;
    }
    
    .lla-artisan-link {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .lla-artisan-logo,
    .lla-artisan-avatar {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        font-size: 18px;
    }
    
    .lla-artisan-name {
        font-size: 15px;
    }
    
    .lla-artisan-craft {
        font-size: 11px;
        padding: 2px 8px;
    }
    
    .lla-artisan-region {
        font-size: 11px;
    }
    
    .lla-artisan-arrow {
        width: 32px;
        height: 32px;
    }
    
    .lla-artisan-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .lla-trust-badges {
        gap: 8px;
    }
    
    .lla-trust-item svg {
        width: 24px;
        height: 24px;
    }
    
    .lla-trust-item span {
        font-size: 11px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .lla-tabs-nav {
        margin: 0 -16px;
        padding: 4px 16px;
        border-radius: 0;
    }
    
    .lla-tab-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .lla-artisan-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .lla-artisan-separator {
        display: none;
    }
}

/* ============================================
   WooCommerce Quantity Buttons Override
   ============================================ */
.lla-lovable-page .quantity,
.lla-lovable-page .woocommerce .quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--lla-border);
    border-radius: var(--lla-radius-lg);
    overflow: hidden;
    background: #fff;
}

.lla-lovable-page .quantity .qty,
.lla-lovable-page .woocommerce .quantity .qty {
    width: 60px;
    height: 44px;
    text-align: center;
    border: none !important;
    border-left: 1px solid var(--lla-border) !important;
    border-right: 1px solid var(--lla-border) !important;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--lla-font-sans);
    -moz-appearance: textfield;
    background: #fff;
    color: var(--lla-foreground);
}

.lla-lovable-page .quantity .qty::-webkit-outer-spin-button,
.lla-lovable-page .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Boutons - et + WooCommerce (si présents via plugin) */
.lla-lovable-page .quantity button,
.lla-lovable-page .quantity .minus,
.lla-lovable-page .quantity .plus,
.lla-lovable-page .woocommerce .quantity .minus,
.lla-lovable-page .woocommerce .quantity .plus {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lla-muted) !important;
    border: none !important;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    color: var(--lla-foreground) !important;
    transition: background 0.2s;
    padding: 0;
    line-height: 1;
}

.lla-lovable-page .quantity button:hover,
.lla-lovable-page .quantity .minus:hover,
.lla-lovable-page .quantity .plus:hover {
    background: var(--lla-primary) !important;
    color: #fff !important;
}

/* Style Elementor quantity override */
.lla-lovable-page .e-loop-add-to-cart-form-container .quantity,
.lla-lovable-page .elementor-button-wrapper .quantity {
    border: 1px solid var(--lla-border);
    border-radius: var(--lla-radius-lg);
}

/* ============================================
   Toast Simple (for Wishlist & Share)
   ============================================ */
.lla-toast-simple {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 14px 24px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.lla-toast-simple.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.lla-toast-simple--success {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.lla-toast-simple--error {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.lla-toast-simple--info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* ============================================
   Share Modal
   ============================================ */
.lla-share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lla-share-modal.active {
    opacity: 1;
    visibility: visible;
}

.lla-share-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lla-share-modal.active .lla-share-modal-content {
    transform: scale(1) translateY(0);
}

.lla-share-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--lla-muted);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lla-muted-foreground);
    transition: all 0.2s ease;
}

.lla-share-modal-close:hover {
    background: var(--lla-primary);
    color: #fff;
}

.lla-share-modal h3 {
    margin: 0 0 24px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--lla-foreground);
    text-align: center;
}

.lla-share-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.lla-share-btn-social {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.lla-share-btn-social svg {
    width: 24px;
    height: 24px;
}

.lla-share-btn-social:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lla-share-facebook {
    background: #1877f2;
}

.lla-share-twitter {
    background: #000;
}

.lla-share-whatsapp {
    background: #25d366;
}

.lla-share-pinterest {
    background: #e60023;
}

.lla-share-copy {
    background: var(--lla-primary);
    background-color: hsl(35, 65%, 55%);
}

.lla-share-url {
    background: var(--lla-muted);
    border-radius: 12px;
    padding: 4px;
}

.lla-share-url-input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 13px;
    color: var(--lla-muted-foreground);
    outline: none;
}

/* ============================================
   Wishlist Button Active State
   ============================================ */
.lla-wishlist-btn.active svg {
    fill: #ef4444 !important;
    stroke: #ef4444 !important;
}

.lla-wishlist-btn {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ============================================
   Mobile Responsive - Toast & Share
   ============================================ */
@media (max-width: 480px) {
    .lla-toast-simple {
        left: 16px;
        right: 16px;
        transform: translateX(0) translateY(100px);
        text-align: center;
    }
    
    .lla-toast-simple.active {
        transform: translateX(0) translateY(0);
    }
    
    .lla-share-modal-content {
        padding: 24px 20px;
        border-radius: 20px 20px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(100%);
    }
    
    .lla-share-modal.active .lla-share-modal-content {
        transform: translateY(0);
    }
    
    .lla-share-btn-social {
        width: 48px;
        height: 48px;
    }
    
    .lla-share-btn-social svg {
        width: 22px;
        height: 22px;
    }
}
