/* CSS Variables - İlk sitedeki index.css'ten birebir */
:root {
    /* Renk Sistemi */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 9%);
    --border: hsl(0, 0%, 89%);
    
    --card: hsl(0, 0%, 98%);
    --card-foreground: hsl(0, 0%, 9%);
    --card-border: hsl(0, 0%, 93%);
    
    --primary: hsl(220, 89%, 48%);
    --primary-foreground: hsl(0, 0%, 98%);
    
    --secondary: hsl(220, 14%, 89%);
    --secondary-foreground: hsl(220, 9%, 15%);
    
    --muted: hsl(220, 14%, 92%);
    --muted-foreground: hsl(220, 9%, 35%);
    
    --destructive: hsl(0, 84%, 42%);
    --destructive-foreground: hsl(0, 0%, 98%);
    
    /* Elevation System */
    --elevate-1: rgba(0,0,0, .03);
    --elevate-2: rgba(0,0,0, .08);
    
    /* Shadows */
    --shadow: 0px 4px 6px -1px hsl(0 0% 0% / 0.08), 0px 2px 4px -1px hsl(0 0% 0% / 0.06);
    --shadow-lg: 0px 10px 20px -4px hsl(0 0% 0% / 0.12), 0px 4px 8px -2px hsl(0 0% 0% / 0.08);
    
    /* Border Radius */
    --radius: 0.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Elevation System - İlk sitedeki gibi */
.hover-elevate,
.active-elevate-2 {
    position: relative;
}

.hover-elevate::after,
.active-elevate-2::after {
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 0px;
    border-radius: inherit;
    z-index: 999;
}

.hover-elevate:hover::after {
    background-color: var(--elevate-1);
}

.active-elevate-2:active::after {
    background-color: var(--elevate-2);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 16px;
}

@media (min-width: 768px) {
    .header-container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 32px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    padding: 4px 8px;
    margin-left: -8px;
    border-radius: var(--radius);
}

.logo-primary {
    color: var(--primary);
}

.logo-secondary {
    color: hsl(220, 63%, 24%);
}

/* Search */
.search-desktop {
    position: relative;
    flex: 1;
    max-width: 600px;
    margin: 0 32px;
    display: none;
}

@media (min-width: 1024px) {
    .search-desktop {
        display: block;
    }
}

.search-desktop input,
.search-mobile input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid hsl(0, 0%, 82%);
    border-radius: var(--radius);
    font-size: 14px;
    outline: none;
    background: var(--background);
}

.search-desktop input:focus,
.search-mobile input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px hsl(220, 89%, 48%, 0.1);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
}

/* Navigation */
.nav-desktop {
    display: none;
    gap: 6px;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    text-decoration: none;
    color: hsl(0, 0%, 29%);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: var(--radius);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    position: relative;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn svg {
    color: hsl(0, 0%, 29%);
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.mobile-menu-btn {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Sheet (Drawer/Modal) */
.sheet {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 100;
    transition: right 0.3s ease;
}

.sheet.open {
    right: 0;
}

/* Sepet açıkken floating ikonları gizle */
body.cart-open .floating-social-icons {
    display: none;
}

.sheet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.sheet-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 12px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.cart-sheet-content { max-width: 400px; }

@media (max-width: 768px) {
    .sheet-content { max-width: 90%; }
    .cart-sheet-content { max-width: 90%; }
}

.sheet-padding {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.search-mobile {
    position: relative;
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-mobile a {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    text-decoration: none;
    color: hsl(0, 0%, 29%);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius);
}

.sheet-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.sheet-header h3 {
    font-size: 24px;
    font-weight: 600;
}

.sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.sheet-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
}

/* Mobilde footer butonları her zaman görünür olsun */
@media (max-width: 768px) {
    #cart-footer { display: block !important; }
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-banner {
        height: 70vh;
    }
}

@media (min-width: 1024px) {
    .hero-banner {
        height: 80vh;
    }
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), transparent);
}

.hero-container {
    position: relative;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 32px;
    }
}

.hero-content {
    max-width: 672px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 60px;
    }
}

.hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .hero-content p {
        font-size: 20px;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 18px;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--foreground);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.link-button {
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}

.link-button:hover {
    color: var(--foreground);
}

/* Main Content */
.main-content {
    flex: 1;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

/* Products Section */
.products-section {
    padding: 48px 0;
}

@media (min-width: 768px) {
    .products-section {
        padding: 80px 0;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    gap: 16px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 16px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
.product-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 0;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--muted);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 12px;
    overflow: hidden;
    min-width: 0;
}

@media (min-width: 768px) {
    .product-info {
        padding: 16px;
    }
}

.product-badges {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .product-badges {
        justify-content: space-between;
        gap: 8px;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    flex-grow: 0;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .badge {
        padding: 4px 10px;
        font-size: 11px;
    }
}

.badge-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

/* Mobilde badge'lerin taşmasını önle - alt satıra geçmelerini sağla */
@media (max-width: 767px) {
    .badge-secondary,
    .badge-outline:not(.stock-badge),
    .badge.stock-badge {
        flex-shrink: 0;
        flex-grow: 0;
    }
}

.badge-destructive {
    background: var(--destructive);
    color: var(--destructive-foreground);
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* Stock Badge Styles */
.badge.stock-badge {
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    font-size: 10px;
    padding: 5px 8px;
}

@media (min-width: 768px) {
    .badge.stock-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
}

.stock-badge .stock-low {
    color: #dc2626;
    font-weight: 600;
}

.stock-badge .stock-medium {
    color: #16a34a;
    font-weight: 600;
}

.stock-badge .stock-high {
    color: #f59e0b;
    font-weight: 600;
}


.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
}

.icon-btn-primary {
    padding: 10px;
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.empty-products {
    text-align: center;
    padding: 80px 0;
}

.empty-products p {
    color: var(--muted-foreground);
    font-size: 18px;
}

/* Features Section */
.features-section {
    background: var(--muted);
    padding: 48px 0;
}

@media (min-width: 768px) {
    .features-section {
        padding: 80px 0;
    }
}

.features-section h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .features-section h2 {
        font-size: 36px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    padding: 12px;
}

.feature-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background: hsl(220, 13%, 18%);
    color: white;
    padding: 64px 0 24px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: hsl(0, 0%, 82%);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
    font-size: 14px;
    color: hsl(0, 0%, 82%);
}

.footer-section a {
    color: hsl(0, 0%, 82%);
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 0;
    display: inline-block;
    border-radius: 4px;
}

.footer-section a:hover {
    color: white;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-list svg {
    margin-top: 2px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(220, 9%, 26%);
    border-radius: var(--radius);
    padding: 0;
}

.footer-bottom {
    border-top: 1px solid hsl(220, 9%, 26%);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: hsl(0, 0%, 61%);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-tags {
    display: flex;
    gap: 8px;
    font-size: 12px;
}

/* Cart Items */
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--muted);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-weight: 500;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-meta {
    font-size: 12px;
    color: var(--muted-foreground);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.quantity-value {
    min-width: 32px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.remove-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn svg {
    width: 16px;
    height: 16px;
    color: var(--muted-foreground);
}

.cart-item-price {
    font-weight: 600;
    font-size: 16px;
}

.empty-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.empty-cart p {
    color: var(--muted-foreground);
}

/* Cart Summary */
.cart-summary {
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.summary-row span:first-child {
    color: var(--muted-foreground);
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    margin-top: 12px;
}

.separator {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

/* Product Detail Page */
.product-detail-section {
    padding: 48px 0;
}

@media (min-width: 768px) {
    .product-detail-section {
        padding: 80px 0;
    }
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 32px;
    padding: 8px 12px;
    border-radius: var(--radius);
}

.back-link:hover {
    color: var(--foreground);
    background: var(--muted);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.product-detail-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--muted);
    border: 1px solid var(--card-border);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--muted);
    border: 1px solid var(--card-border);
    position: relative;
    user-select: none;
    cursor: default;
    isolation: isolate;
}

.gallery-slider {
    display: flex;
    height: 100%;
    transition: transform 0.3s ease;
    will-change: transform;
    /* Width will be set dynamically via inline style */
}

.gallery-slide {
    height: 100%;
    flex: 0 0 calc(100% / var(--slide-count, 1));
    width: calc(100% / var(--slide-count, 1));
    min-width: 0;
    max-width: calc(100% / var(--slide-count, 1));
    box-sizing: border-box;
}

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

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-nav svg {
    width: 20px;
    height: 20px;
    color: var(--foreground);
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

@media (max-width: 768px) {
    .gallery-nav {
        width: 36px;
        height: 36px;
    }
    
    .gallery-nav svg {
        width: 16px;
        height: 16px;
    }
    
    .gallery-prev {
        left: 8px;
    }
    
    .gallery-next {
        right: 8px;
    }
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
}

.gallery-thumb {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: var(--muted);
    transition: all 0.2s;
}

.gallery-thumb:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px hsl(220, 89%, 48%, 0.2);
}

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

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-detail-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-detail-name {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .product-detail-name {
        font-size: 48px;
    }
}

.product-detail-brand {
    font-size: 18px;
    color: var(--muted-foreground);
    margin: 0;
}

.product-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.product-description {
    margin: 32px 0;
    padding: 24px;
    background: var(--muted);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
}

.product-description h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--foreground);
}

.product-description p {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 15px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--muted);
    border-radius: var(--radius);
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-item strong {
    font-weight: 600;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stock-warning {
    color: var(--destructive);
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.loading-state,
.error-state {
    text-align: center;
    padding: 80px 0;
}

.loading-state p,
.error-state p {
    color: var(--muted-foreground);
    font-size: 18px;
    margin-bottom: 24px;
}

/* Floating Social Icons */
.floating-social-icons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
}

.floating-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-icon:active {
    transform: translateY(-2px);
}

.whatsapp-icon {
    background: #25D366;
}

.whatsapp-icon:hover {
    background: #20BA5A;
}

.instagram-icon {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

.instagram-icon:hover {
    background: linear-gradient(135deg, #6B2F9A 0%, #E01A1A 50%, #E89D3C 100%);
}

@media (max-width: 768px) {
    .floating-social-icons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon svg {
        width: 22px;
        height: 22px;
    }
}
