/* ===================================
   Canvas E-Ticaret - Minimalist Design
   Based on theposterclub.com
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --secondary-color: #000;
    --accent-color: #000;
    --text-color: #202020;
    --text-light: #666;
    --text-lighter: #999;
    --border-color: #efefef;
    --bg-light: #f9f9f9;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --white: #fff;
    --shadow: 0 1px 2px rgba(0,0,0,0.05);
    --transition: all 0.25s ease;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background: var(--white);
    font-size: 13px;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--text-color);
    color: var(--white);
    font-size: 11px;
    letter-spacing: 0.5px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.top-bar-left span {
    font-weight: 400;
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar-right a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.top-bar-right a:hover {
    opacity: 1;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    flex: 1;
    text-align: center;
}

.logo h1 {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo a:hover h1 {
    opacity: 0.6;
}

/* Navigation */
.main-nav {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
}

.main-nav a:hover {
    opacity: 0.6;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    opacity: 1;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.search-toggle,
.user-icon,
.cart-icon {
    color: var(--text-color);
    transition: var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
}

.user-icon .user-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.user-icon .dropdown-arrow {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* User Avatar */
.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-dropdown .user-icon {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.user-dropdown .user-icon:hover {
    background: var(--bg-light);
    opacity: 1;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    min-width: 260px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-dropdown:hover .user-dropdown-menu,
.user-dropdown .dropdown-toggle:focus + .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* User Menu Header */
.user-menu-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px 8px 0 0;
}

.user-menu-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.user-menu-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.user-menu-info strong {
    font-size: 14px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-menu-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-menu li {
    margin: 0;
}

.user-dropdown-menu li.divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-color);
    transition: all 0.2s ease;
    text-decoration: none;
}

.user-dropdown-menu a svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.user-dropdown-menu a:hover {
    background: var(--bg-light);
    padding-left: 20px;
}

.user-dropdown-menu a:hover svg {
    opacity: 1;
}

.user-dropdown-menu a.logout-link {
    color: #dc3545;
}

.user-dropdown-menu a.logout-link:hover {
    background: #fff5f5;
}

.search-toggle:hover,
.user-icon:hover,
.cart-icon:hover {
    opacity: 0.6;
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--text-color);
    color: var(--white);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Search Bar */
.search-bar {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: none;
}

.search-bar.active {
    display: block;
}

.search-bar form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-bar .search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 13px;
    background: var(--white);
}

.search-bar .search-input:focus {
    outline: none;
    border-color: var(--text-color);
}

.search-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 5px;
}

.search-close:hover {
    opacity: 0.6;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    font-size: 24px;
    padding: 5px;
}

.mobile-nav ul {
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    display: block;
    padding: 10px;
    color: var(--text-color);
}

.mobile-dropdown {
    padding-left: 20px;
    display: none;
}

.mobile-dropdown.active {
    display: block;
}

/* Flash Messages */
.flash-message {
    padding: 15px 0;
    margin-bottom: 20px;
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid var(--success-color);
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--error-color);
}

.flash-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid var(--warning-color);
}

.flash-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid var(--accent-color);
}

.flash-message .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-close {
    font-size: 20px;
    padding: 5px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 400px);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

/* Grid System */
.grid {
    display: grid;
    gap: 20px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Product Card - Minimalist Style */
.product-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-image {
    position: relative;
    display: block;
    padding-top: 140%;
    overflow: hidden;
    background: var(--bg-light);
    margin-bottom: 10px;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-info {
    padding: 0;
}

.product-title {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
    line-height: 1.6;
    min-height: 42px;
}

.product-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    height: 21px;
    line-height: 21px;
}

.product-price .discount-price {
    color: #e74c3c;
    margin-right: 8px;
}

.product-price .original-price {
    font-size: 12px;
    color: var(--text-lighter);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-actions .btn-add-to-cart {
    width: 100%;
    padding: 12px;
    background: #ff6b00;
    color: var(--white);
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.product-actions .btn-add-to-cart:hover {
    background: #e55d00;
}

.product-actions .shipping-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #ffd700;
    color: var(--text-color);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.product-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: var(--white);
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

/* Buttons - Minimalist Style */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 400;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--text-color);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--text-color);
}

.btn-primary:active {
    background: #333;
}

.btn-secondary {
    background: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background: var(--text-color);
    color: var(--white);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 11px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    cursor: pointer;
}

.form-error {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
}

/* Footer - Minimalist Style */
.newsletter-section {
    background: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 13px;
    background: var(--white);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--text-color);
}

.newsletter-form button {
    padding: 12px 30px;
    white-space: nowrap;
}

.footer {
    background: var(--white);
    color: var(--text-color);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-section p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--text-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 12px;
}

.contact-info svg {
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--text-lighter);
    letter-spacing: 0.5px;
}

.payment-methods {
    /*display: flex;*/
    align-items: center;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-lighter);
}

.payment-methods svg {
    opacity: 0.7;
    transition: var(--transition);
}

.payment-methods svg:hover {
    opacity: 1;
}

.payment-methods svg:hover {
    opacity: 1;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    font-size: 12px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--text-color);
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--text-lighter);
}

/* Product Detail */
.product-detail {
    padding: 40px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    margin-bottom: 80px;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: var(--bg-light);
    margin-bottom: 20px;
    overflow: hidden;
}

.product-main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
}

.thumbnail {
    padding-top: 100%;
    position: relative;
    background: var(--bg-light);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--text-color);
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info Detail */
.product-info-detail {
    padding: 0;
}

.product-title-detail {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.stars {
    color: #ffa500;
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-light);
}

.product-price-detail {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.current-price {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.original-price {
    font-size: 22px;
    color: var(--text-lighter);
    text-decoration: line-through;
}

.discount-price {
    font-size: 32px;
    font-weight: 400;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.discount-badge {
    background: #e74c3c;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Options */
.product-option {
    margin-bottom: 25px;
}

.product-option label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    transition: border 0.3s ease;
}

.size-option {
    cursor: pointer;
}

.size-option input[type="radio"] {
    display: none;
}

.size-option span {
    display: block;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    background: var(--white);
    transition: var(--transition);
    font-size: 13px;
}

.size-option input[type="radio"]:checked + span {
    border-color: var(--text-color);
    background: var(--text-color);
    color: var(--white);
}

.size-option:hover span {
    border-color: var(--text-color);
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    margin-right: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--white);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--bg-light);
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.stock-info {
    font-size: 12px;
}

.in-stock {
    color: #27ae60;
}

.out-of-stock {
    color: #e74c3c;
}

.btn-large {
    padding: 15px 40px;
    font-size: 13px;
}

.product-actions-detail {
    margin-bottom: 30px;
}

/* Product Features */
.product-features {
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-light);
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--text-color);
}

/* Product Description Section */
.product-description-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 0;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-color);
}

.tab-btn.active {
    color: var(--text-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.description-content,
.shipping-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

.shipping-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 25px 0 15px;
    color: var(--text-color);
}

.shipping-content h3:first-child {
    margin-top: 0;
}

/* Similar Products */
.similar-products,
.trending-products,
.complete-look {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

.similar-products h2,
.trending-products h2,
.complete-look h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
}

.trending-products {
    margin-top: 80px;
}

.complete-look {
    margin-top: 80px;
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 8px 0;
}

.mobile-bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 10px;
    padding: 5px 10px;
    position: relative;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    min-width: 60px;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

.mobile-nav-item svg {
    margin-bottom: 4px;
    transition: var(--transition);
}

.mobile-nav-item span {
    font-weight: 400;
    letter-spacing: 0.3px;
}

.mobile-nav-item.active {
    color: var(--primary-color);
}

.mobile-nav-item.active svg {
    stroke: var(--primary-color);
}

.mobile-nav-badge {
    position: absolute;
    top: 0;
    right: 8px;
    background: #e74c3c;
    color: var(--white);
    border-radius: 10px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    padding: 0 4px;
}

/* Sticky Add to Cart Bar (Product Detail Mobile) */
.mobile-sticky-cart {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 12px 15px;
}

.mobile-sticky-cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.mobile-sticky-price {
    display: flex;
    flex-direction: column;
}

.mobile-sticky-price-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-sticky-price-amount {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.mobile-sticky-price-amount.discount {
    color: #e74c3c;
}

.mobile-sticky-price-original {
    font-size: 14px;
    color: var(--text-lighter);
    text-decoration: line-through;
    margin-left: 8px;
}

.mobile-sticky-cart-btn {
    flex: 1;
    max-width: 200px;
    padding: 14px 20px;
    background: #ff6b00;
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.mobile-sticky-cart-btn:active {
    transform: scale(0.98);
    background: #e55d00;
}

.mobile-sticky-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Mobile Bottom Navigation - Göster */
    .mobile-bottom-nav {
        display: block;
    }
    
    /* Body padding for bottom nav */
    body {
        padding-bottom: 60px;
    }
    
    /* Top Bar - Mobilde daha kompakt */
    .top-bar {
        font-size: 10px;
        padding: 5px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 5px 0;
    }
    
    .top-bar-right {
        gap: 15px;
    }

    /* Header - Mobil optimize */
    .header-main {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
    }

    .main-nav {
        display: none;
    }

    .logo {
        flex: 1;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 14px;
        letter-spacing: 2px;
        margin-left: 25px;
    }

    .header-actions {
        position: static;
        transform: none;
        gap: 15px;
    }
    
    /* Mobilde kullanıcı adını gizle ama avatar'ı göster */
    .user-icon .user-name {
        display: none;
    }
    
    .user-icon .dropdown-arrow {
        display: none;
    }
    
    .user-dropdown .user-icon {
        padding: 5px;
    }
    
    /* Mobilde dropdown menü tam genişlik */
    .user-dropdown-menu {
        right: -10px;
        left: auto;
        min-width: 280px;
        max-width: calc(100vw - 20px);
    }
    
    .user-menu-header {
        padding: 14px;
    }
    
    .user-menu-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .user-menu-info strong {
        font-size: 13px;
    }
    
    .user-menu-info span {
        font-size: 10px;
    }
    
    .user-dropdown-menu a {
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .user-dropdown-menu a:hover {
        padding-left: 18px;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Hero - Mobil optimize */
    .hero {
        height: 400px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .hero-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-text .btn {
        padding: 12px 25px;
        font-size: 11px;
    }

    /* Grid - Mobilde 2 sütun */
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Product Card - Mobil optimize */
    .product-card {
        margin-bottom: 10px;
    }
    
    .product-image {
        margin-bottom: 8px;
    }
    
    .product-title {
        font-size: 12px;
        min-height: 36px;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .product-price {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .product-actions .btn-add-to-cart {
        padding: 10px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .product-actions .shipping-badge {
        padding: 5px 8px;
        font-size: 9px;
    }
    
    .product-actions .shipping-badge svg {
        width: 12px;
        height: 12px;
    }

    /* Footer - Mobil optimize */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Product Detail - Mobil optimize */
    .product-detail {
        padding: 20px 0;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-images {
        position: static;
    }
    
    .product-main-image {
        padding-top: 100%;
        margin-bottom: 15px;
    }
    
    .product-thumbnails {
        gap: 10px;
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
    
    .product-info-detail {
        padding: 0;
    }
    
    .product-title-detail {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .product-rating {
        margin-bottom: 20px;
    }
    
    .product-price-detail {
        flex-wrap: wrap;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .current-price,
    .discount-price {
        font-size: 24px;
    }
    
    .original-price {
        font-size: 18px;
    }
    
    .product-option {
        margin-bottom: 20px;
    }
    
    .size-options {
        gap: 8px;
    }
    
    .size-option span {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .quantity-selector {
        margin-right: 10px;
    }
    
    .qty-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .quantity-selector input {
        width: 50px;
        height: 35px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 12px;
    }
    
    .product-features {
        padding: 20px 0;
    }
    
    .feature-item {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .product-description-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .tabs {
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        padding: 12px 0;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .description-content,
    .shipping-content {
        font-size: 13px;
    }
    
    .similar-products,
    .trending-products,
    .complete-look {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .similar-products h2,
    .trending-products h2,
    .complete-look h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    /* Cart Page - Mobil optimize */
    .cart-page {
        padding: 30px 0 !important;
    }
    
    .cart-page h1 {
        font-size: 22px !important;
        margin-bottom: 30px !important;
    }
    
    .cart-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr !important;
        gap: 15px !important;
        padding: 15px 0 !important;
    }
    
    .cart-item-image {
        width: 80px;
    }
    
    .cart-item-info h3 {
        font-size: 14px !important;
    }
    
    .cart-item-info p {
        font-size: 12px !important;
    }
    
    .cart-item-total {
        grid-column: 2;
        text-align: left !important;
        margin-top: 10px;
    }
    
    .cart-quantity {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .cart-summary {
        position: static !important;
        padding: 20px !important;
    }
    
    .cart-summary h3 {
        font-size: 14px !important;
        margin-bottom: 20px !important;
        padding-bottom: 15px !important;
    }
    
    .summary-row {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }
    
    .summary-row:last-of-type {
        font-size: 16px !important;
    }
    
    .free-shipping-notice {
        font-size: 11px !important;
        padding: 10px !important;
    }
    
    /* Breadcrumb - Mobil */
    .breadcrumb {
        padding: 10px 0;
        font-size: 11px;
    }
    
    .breadcrumb span {
        margin: 0 5px;
    }
    
    /* Buttons - Mobil optimize */
    .btn {
        padding: 10px 20px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    /* Empty Cart - Mobil */
    .empty-cart {
        padding: 60px 20px !important;
    }
    
    .empty-cart svg {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 20px !important;
    }
    
    .empty-cart h2 {
        font-size: 18px !important;
    }
    
    .empty-cart p {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    /* Grid - Mobilde tek sütun (çok küçük ekranlar) */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header-actions {
        gap: 12px;
    }
    
    .header-actions svg {
        width: 16px;
        height: 16px;
    }
    
    .cart-badge {
        width: 12px;
        height: 12px;
        font-size: 8px;
    }
    
    /* Hero - Çok küçük ekranlar */
    .hero {
        height: 300px;
    }
    
    .hero-text h1 {
        font-size: 22px;
    }
    
    .hero-text p {
        font-size: 12px;
    }
    
    /* Product Card - Tek sütun */
    .product-title {
        font-size: 13px;
        min-height: auto;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .product-actions .btn-add-to-cart {
        padding: 12px;
        font-size: 12px;
    }

    /* Footer - Tek sütun */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 12px;
    }
    
    /* Cart - Tek sütun optimize */
    .cart-item {
        grid-template-columns: 70px 1fr !important;
    }
    
    .cart-item-image {
        width: 70px;
    }
    
    .quantity-selector button {
        width: 30px !important;
        height: 30px !important;
    }
    
    .quantity-selector input {
        width: 40px !important;
        height: 30px !important;
        font-size: 12px !important;
    }
}

/* Mini Cart (Slide-in from Right) */
.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mini-cart.active {
    right: 0;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
}

.mini-cart-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
}

.mini-cart-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
    line-height: 1;
}

.mini-cart-close:hover {
    opacity: 0.6;
}

.mini-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.mini-cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.mini-cart-empty svg {
    margin: 0 auto 20px;
    opacity: 0.2;
}

.mini-cart-empty p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.mini-cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.mini-cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--bg-light);
    overflow: hidden;
}

.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mini-cart-item-title {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-cart-item-size {
    font-size: 11px;
    color: var(--text-light);
}

.mini-cart-item-quantity {
    font-size: 11px;
    color: var(--text-light);
}

.mini-cart-item-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-top: auto;
}

.mini-cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
    align-self: flex-start;
}

.mini-cart-item-remove:hover {
    color: var(--error-color);
}

.mini-cart-footer {
    border-top: 1px solid var(--border-color);
    padding: 25px 30px;
    background: var(--white);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mini-cart-subtotal-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.mini-cart-subtotal-amount {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.mini-cart-shipping-notice {
    background: #e8f5e9;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 11px;
    color: #2e7d32;
    text-align: center;
    border-radius: 3px;
}

.mini-cart-shipping-notice.warning {
    background: #fff3cd;
    color: #856404;
}

.mini-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-cart-actions .btn {
    width: 100%;
    padding: 14px;
    font-size: 12px;
}

.mini-cart-actions .btn-primary {
    background: #ff6b00;
    border-color: #ff6b00;
}

.mini-cart-actions .btn-primary:hover {
    background: #e55d00;
    border-color: #e55d00;
}

/* Mini Cart Mobile Responsive */
@media (max-width: 768px) {
    .mini-cart {
        max-width: 100%;
        right: -100%;
    }
    
    .mini-cart-header,
    .mini-cart-body,
    .mini-cart-footer {
        padding: 20px;
    }
    
    .mini-cart-title {
        font-size: 14px;
    }
    
    .mini-cart-item {
        gap: 12px;
    }
    
    .mini-cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .mini-cart-item-title {
        font-size: 12px;
    }
}

/* Animation for mini cart success */
@keyframes miniCartSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mini-cart.active {
    animation: miniCartSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===================================
   Image Lightbox
   =================================== */

.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        font-size: 32px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-content img {
        max-height: 85vh;
    }
}


/* ===================================
   Favorite Button
   =================================== */

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.favorite-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.favorite-btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.favorite-btn.active svg {
    fill: #e74c3c;
    stroke: #e74c3c;
}

.favorite-btn:not(.active) svg {
    fill: none;
    stroke: var(--text-color);
}

.favorite-btn:hover svg {
    transform: scale(1.1);
}

/* Product Card için relative position */
.product-card {
    position: relative;
}


/* ===================================
   Share Buttons
   =================================== */

.share-section {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.share-section h4 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
}

.share-btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.share-btn.whatsapp:hover {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.share-btn.facebook:hover {
    background: #1877F2;
    color: var(--white);
    border-color: #1877F2;
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    color: var(--white);
    border-color: #1DA1F2;
}

.share-btn.pinterest:hover {
    background: #E60023;
    color: var(--white);
    border-color: #E60023;
}

.share-btn.copy:hover {
    background: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
}

@media (max-width: 768px) {
    .share-buttons {
        gap: 8px;
    }
    
    .share-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}
