/**
 * ADR Market - Sayfa Ozel CSS
 * Urun listeleme, detay, sepet, odeme, uyelik sayfalari
 */

/* ==================== PRODUCT LISTING PAGE ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 2rem 5% 2rem;
    margin-top: 82px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2%;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Exo', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
}

.page-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* Product Filters */
.products-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    max-width: 1800px;
    margin: 0 auto;
    padding: 3rem 2%;
}

.filters-sidebar {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-200);
    overflow: hidden;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.sidebar-header h2 {
    font-family: 'Exo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.sidebar-header h2 i {
    font-size: 0.9rem;
}

.clear-filters {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Exo', sans-serif;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.clear-filters:hover {
    background: rgba(255,255,255,0.3);
}

.filters-sidebar form {
    padding: 1rem 1.5rem 1.5rem;
}

.filter-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-200);
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-title {
    font-family: 'Exo', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-title i {
    color: var(--accent);
    font-size: 0.75rem;
}

.price-separator {
    color: var(--navy-400);
    font-weight: 600;
}

.filter-apply-btn {
    margin-top: 0.5rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: 'Exo', sans-serif;
    color: var(--navy-700);
    transition: all 0.2s ease;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
    background: var(--light-100);
    border: 1px solid transparent;
}

.filter-option:hover {
    background: var(--light-200);
    border-color: var(--light-300);
    color: var(--primary);
}

.filter-option:has(input:checked) {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--accent);
    color: var(--primary);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.filter-option span:first-of-type {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.filter-count {
    color: var(--navy-500);
    font-size: 0.7rem;
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--light-200);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    margin-left: auto;
    font-weight: 600;
}

/* Price Range */
.price-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.price-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 0.7rem 0.5rem;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    text-align: center;
    background: var(--light-100);
    transition: all 0.2s ease;
}

.price-input:focus {
    background: var(--white);
    border-color: var(--accent);
}

.price-input:focus {
    border-color: var(--accent);
    outline: none;
}

/* Sort & View Options */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.products-count {
    color: var(--navy-600);
    font-size: 0.95rem;
}

.products-count strong {
    color: var(--navy-900);
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-select {
    padding: 0.7rem 2.5rem 0.7rem 1rem;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    color: var(--navy-700);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23475569' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--navy-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(30, 58, 95, 0.05);
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.8rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-main-image:hover img {
    transform: scale(1.1);
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.product-thumb:hover,
.product-thumb.active {
    border-color: var(--primary);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info */
.product-info {
    padding-top: 1rem;
}

.product-info .product-category {
    margin-bottom: 1rem;
}

.product-info .product-name {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
    color: #FBBF24;
}

.rating-count {
    color: var(--navy-500);
    font-size: 0.9rem;
}

.product-info .product-price {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.product-sku {
    color: var(--navy-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.product-description {
    color: var(--navy-600);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-200);
}

.product-specs-table {
    margin-bottom: 2rem;
}

.spec-row {
    display: flex;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-200);
}

.spec-label {
    width: 150px;
    font-weight: 600;
    color: var(--navy-800);
}

.spec-value {
    flex: 1;
    color: var(--navy-600);
}

/* Quantity Selector */
.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quantity-label {
    font-weight: 600;
    color: var(--navy-800);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--light-100);
    color: var(--navy-700);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--light-200);
    color: var(--primary);
}

.qty-input {
    width: 60px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-800);
}

.qty-input:focus {
    outline: none;
}

/* Add to Cart Section */
.add-to-cart-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.add-to-cart-section .add-cart-btn {
    flex: 1;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

.buy-now-btn {
    padding: 1.2rem 2rem;
    background: var(--success);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
}

.buy-now-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--light-100);
    border-radius: var(--radius-md);
}

.product-feature i {
    font-size: 1.2rem;
    color: var(--success);
}

.product-feature span {
    font-size: 0.85rem;
    color: var(--navy-700);
}

/* Product Tabs */
.product-tabs {
    margin-top: 4rem;
}

.tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--light-200);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-500);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Exo', sans-serif;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.tab-content {
    display: none;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.tab-content.active {
    display: block;
}

/* ==================== NEW PRODUCT DETAIL STYLES ==================== */

/* Specs Grid - Below Image */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.spec-box {
    background: var(--white);
    border: 1px solid var(--light-200);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-box:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.spec-box-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--navy-500);
    margin-bottom: 0.3rem;
}

.spec-box-value {
    font-family: 'Exo', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-800);
}

/* Info Boxes */
.info-box {
    background: var(--white);
    border: 1px solid var(--light-200);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--light-300);
    box-shadow: var(--shadow-sm);
}

.info-box-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy-500);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.info-box-value {
    font-family: 'Exo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-800);
}

.info-box.price-box {
    background: linear-gradient(135deg, var(--light-100), var(--white));
    border-color: var(--accent);
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-box .product-price {
    font-family: 'Exo', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.info-box .product-price-old {
    font-size: 1.2rem;
    color: var(--navy-400);
    text-decoration: line-through;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.stock-badge.out-stock {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.desc-text {
    font-weight: 400;
    line-height: 1.7;
    color: var(--navy-600);
    text-align: justify;
}

/* Compact Quantity Selector */
.quantity-box .info-box-value {
    display: flex;
    align-items: center;
}

.quantity-selector-compact {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-selector-compact .qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--light-100);
    color: var(--navy-700);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-selector-compact .qty-btn:hover {
    background: var(--primary);
    color: white;
}

.quantity-selector-compact .qty-input {
    width: 50px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-800);
    background: var(--white);
}

.quantity-selector-compact .qty-input:focus {
    outline: none;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.add-cart-btn-detail {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-cart-btn-detail:disabled,
.buy-now-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.buy-now-btn {
    padding: 1rem 1.5rem;
    background: var(--success);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.buy-now-btn:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-2px);
}

/* Product Features Row */
.product-features-row {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--light-100);
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.product-feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy-700);
}

.product-feature-item i {
    color: var(--success);
    font-size: 1rem;
}

/* Modern Tabs */
.product-tabs-modern {
    margin-top: 3rem;
}

.tabs-header-modern {
    display: flex;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.tab-btn-modern {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-500);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn-modern i {
    font-size: 0.85rem;
}

.tab-btn-modern:hover {
    background: var(--light-100);
    color: var(--primary);
}

.tab-btn-modern.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-content-modern {
    display: none;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.tab-content-modern.active {
    display: block;
}

.tab-content-modern h3 {
    font-family: 'Exo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1.5rem;
}

.tab-content-modern h4 {
    font-family: 'Exo', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-content-modern h4 i {
    color: var(--accent);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    color: var(--navy-600);
    border-bottom: 1px solid var(--light-100);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--success);
    font-size: 0.9rem;
}

/* Specs Table in Tab */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--light-200);
}

.specs-table td {
    padding: 1rem;
}

.specs-table .spec-label {
    width: 40%;
    font-weight: 600;
    color: var(--navy-800);
    background: var(--light-100);
}

.specs-table .spec-value {
    color: var(--navy-600);
}

/* Shipping Section */
.shipping-section {
    margin-bottom: 2rem;
}

.shipping-section:last-child {
    margin-bottom: 0;
}

/* Reviews */
.reviews-summary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.rating-big {
    text-align: center;
    color: white;
}

.rating-number {
    font-family: 'Exo', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.reviews-summary .rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    font-size: 1.3rem;
    color: #FBBF24;
    margin-bottom: 0.5rem;
}

.reviews-summary .rating-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    background: var(--light-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--navy-500);
}

.review-stars {
    color: #FBBF24;
    font-size: 0.85rem;
}

.review-text {
    color: var(--navy-600);
    line-height: 1.6;
    margin: 0;
}

/* Zoom Hint */
.product-main-image {
    position: relative;
    cursor: zoom-in;
}

.zoom-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(30, 58, 95, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-main-image:hover .zoom-hint {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10002;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.lightbox-img {
    z-index: 10001;
}

/* Product SKU Tag */
.product-sku-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-family: 'Exo', sans-serif;
    letter-spacing: 0.3px;
}

.product-sku-tag i {
    font-size: 0.55rem;
    color: var(--accent);
}

/* Product Title Row */
.product-title-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-detail-title {
    font-family: 'Exo', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 0;
    line-height: 1.3;
}

/* Stock Indicator */
.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.stock-indicator.in-stock {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.stock-indicator.out-stock {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.stock-indicator i {
    font-size: 0.7rem;
}

/* Price Display - Modern Card */
.price-display {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid var(--light-200);
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.price-display .price-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy-500);
    margin-bottom: 0.5rem;
}

.price-display .price-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 0.8rem;
}

.price-display .current-price {
    font-family: 'Exo', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-display .old-price {
    font-size: 1.2rem;
    color: var(--navy-400);
    text-decoration: line-through;
    font-weight: 500;
}

.price-display .discount-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    animation: pulse-discount 2s ease-in-out infinite;
}

@keyframes pulse-discount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.price-display .price-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    padding-bottom: 0.2rem;
    border-top: 1px dashed var(--light-300);
    font-size: 0.8rem;
    color: var(--navy-500);
}

.price-display .price-info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.price-display .price-info i {
    color: var(--success);
    font-size: 0.85rem;
}

/* Product Description - Modern Card */
.product-description {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid var(--light-200);
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-description .desc-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy-500);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-description .desc-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--navy-600);
    text-align: justify;
}

/* Action Row - Quantity, Cart, WhatsApp */
.action-row {
    display: flex;
    gap: 0.8rem;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.action-row .quantity-selector-compact {
    flex-shrink: 0;
    height: 48px;
}

.action-row .quantity-selector-compact .qty-btn {
    width: 42px;
    height: 48px;
}

.action-row .quantity-selector-compact .qty-input {
    width: 50px;
    height: 48px;
}

.action-row .add-cart-btn-detail {
    flex: 1;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    padding: 0 1.5rem;
    height: 48px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.1rem;
}

/* Related Products - Compact Design */
.related-products {
    margin-top: 4rem;
}

.related-products h2 {
    font-family: 'Exo', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 2rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.related-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-200);
    transition: all 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-product-image {
    display: block;
    position: relative;
    height: 120px;
    background: var(--light-100);
    padding: 0;
}

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

.related-product-image .product-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.4rem;
    top: 0.5rem;
    left: 0.5rem;
}

.related-product-body {
    padding: 0.8rem;
}

.related-product-title {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-product-category {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.related-product-title h3 {
    font-family: 'Exo', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy-800);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-title:hover h3 {
    color: var(--primary);
}

.related-product-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--light-200);
}

.related-product-price {
    font-family: 'Exo', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.related-cart-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.related-cart-btn i {
    font-size: 0.85rem;
}

.related-cart-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.related-cart-btn:disabled {
    background: var(--light-300);
    color: var(--navy-400);
    cursor: not-allowed;
}

/* ==================== CART PAGE ==================== */
.cart-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.cart-items {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr auto;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--light-100);
    font-weight: 600;
    color: var(--navy-800);
    font-size: 0.9rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr auto;
    gap: 1rem;
    padding: 1.5rem 2rem;
    align-items: center;
    border-bottom: 1px solid var(--light-200);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-product-image {
    width: 100px;
    height: 100px;
    background: var(--light-100);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-product-info h3 {
    font-family: 'Exo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.3rem;
}

.cart-product-info p {
    font-size: 0.85rem;
    color: var(--navy-500);
}

.cart-price {
    font-weight: 600;
    color: var(--navy-800);
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--light-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--navy-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-qty-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cart-qty-input {
    width: 50px;
    height: 32px;
    border: 1px solid var(--light-300);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
}

.cart-total {
    font-family: 'Exo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.cart-remove {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: var(--navy-500);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.cart-remove:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-family: 'Exo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-200);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    color: var(--navy-600);
}

.summary-row.total {
    font-family: 'Exo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    border-top: 2px solid var(--light-200);
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.summary-row.total span:last-child {
    color: var(--primary);
}

.coupon-form {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.coupon-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.coupon-btn {
    padding: 0.8rem 1.2rem;
    background: var(--light-200);
    border: none;
    border-radius: var(--radius-md);
    color: var(--navy-700);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-btn:hover {
    background: var(--light-300);
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    margin-top: 1.5rem;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-200);
}

.cart-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border: none;
    background: none;
    color: var(--navy-600);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-action-btn:hover {
    color: var(--primary);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: var(--light-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--navy-400);
}

.empty-cart h2 {
    font-family: 'Exo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--navy-500);
    margin-bottom: 2rem;
}

/* ==================== CHECKOUT PAGE ==================== */
.checkout-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
}

.checkout-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.checkout-section h2 {
    font-family: 'Exo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkout-section h2 .step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.address-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.address-card {
    border: 2px solid var(--light-300);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.address-card:hover {
    border-color: var(--accent);
}

.address-card.selected {
    border-color: var(--primary);
    background: rgba(30, 58, 95, 0.02);
}

.address-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.address-card h4 {
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.address-card p {
    font-size: 0.9rem;
    color: var(--navy-600);
    line-height: 1.6;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method {
    border: 2px solid var(--light-300);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method:hover {
    border-color: var(--accent);
}

.payment-method.selected {
    border-color: var(--primary);
    background: rgba(30, 58, 95, 0.02);
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.payment-icon {
    width: 50px;
    height: 35px;
    background: var(--light-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy-600);
}

.payment-info h4 {
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.2rem;
}

.payment-info p {
    font-size: 0.85rem;
    color: var(--navy-500);
}

/* Credit Card Form */
.credit-card-form {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-200);
    display: none;
}

.credit-card-form.active {
    display: block;
}

.card-preview {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.card-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.card-number-preview {
    font-family: 'Exo', monospace;
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.card-details-preview {
    display: flex;
    justify-content: space-between;
}

.card-details-preview span {
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Order Summary in Checkout */
.order-summary {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-family: 'Exo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1.5rem;
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 0.5rem;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-200);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    background: var(--light-100);
    border-radius: var(--radius-sm);
    padding: 0.3rem;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.2rem;
}

.order-item-info p {
    font-size: 0.8rem;
    color: var(--navy-500);
}

.order-item-price {
    font-weight: 600;
    color: var(--navy-800);
    white-space: nowrap;
}

.place-order-btn {
    width: 100%;
    padding: 1.2rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--navy-500);
    font-size: 0.85rem;
}

.secure-badge i {
    color: var(--success);
}

/* ==================== AUTH PAGES ==================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-100) 0%, var(--white) 100%);
    margin-top: 82px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .logo {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.auth-header h1 {
    font-family: 'Exo', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--navy-500);
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-input,
.auth-form input,
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
    padding: 1rem 1rem 1rem 3rem;
    font-family: 'Exo', sans-serif !important;
}

.auth-form .form-input::placeholder,
.auth-form input::placeholder {
    font-family: 'Exo', sans-serif !important;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy-500);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--navy-500);
    cursor: pointer;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--navy-600);
    cursor: pointer;
}

.remember-me input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.forgot-link {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    color: var(--navy-500);
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--light-300);
}

.social-login {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border: 2px solid var(--light-300);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--navy-700);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--navy-300);
    background: var(--light-100);
}

.social-btn i {
    font-size: 1.2rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--navy-500);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ==================== ACCOUNT PAGE ==================== */
.account-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.account-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.account-sidebar {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: fit-content;
    box-shadow: var(--shadow-md);
}

.account-user {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-200);
    margin-bottom: 1.5rem;
}

.account-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.account-user h3 {
    font-family: 'Exo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.3rem;
}

.account-user p {
    font-size: 0.9rem;
    color: var(--navy-500);
}

.account-menu {
    list-style: none;
}

.account-menu li {
    margin-bottom: 0.5rem;
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    color: var(--navy-600);
    font-weight: 500;
    transition: all 0.3s ease;
}

.account-menu a:hover {
    background: var(--light-100);
    color: var(--primary);
}

.account-menu a.active {
    background: rgba(30, 58, 95, 0.08);
    color: var(--primary);
}

.account-menu a i {
    width: 20px;
    text-align: center;
}

.account-menu .logout {
    color: var(--danger);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-200);
}

.account-menu .logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

.account-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.account-content h2 {
    font-family: 'Exo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-200);
}

/* Orders Table */
.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th {
    text-align: left;
    padding: 1rem;
    background: var(--light-100);
    font-weight: 600;
    color: var(--navy-800);
    font-size: 0.9rem;
}

.orders-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-200);
    color: var(--navy-600);
}

.orders-table tr:hover {
    background: var(--light-100);
}

.order-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.order-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.order-status.processing {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
}

.order-status.shipped {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

.order-status.delivered {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.order-status.cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* ==================== RESPONSIVE FOR PAGES ==================== */
@media (max-width: 1024px) {
    .products-wrapper {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
        display: none;
    }

    .filters-sidebar.mobile-active {
        display: block;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .cart-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .order-summary {
        position: static;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cart-product {
        flex-direction: column;
        text-align: center;
    }

    .address-cards {
        grid-template-columns: 1fr;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .products-toolbar {
        flex-direction: column;
        gap: 1rem;
    }

    /* Product Detail Responsive */
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-title {
        font-size: 1.4rem;
    }

    .price-display .current-price {
        font-size: 2rem;
    }

    .price-display .price-info {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .action-row {
        flex-wrap: wrap;
    }

    .action-row .quantity-selector-compact {
        flex: 0 0 auto;
    }

    .action-row .add-cart-btn-detail {
        flex: 1 1 auto;
        min-width: 140px;
    }

    .btn-whatsapp {
        flex: 1 1 auto;
        min-width: 120px;
        justify-content: center;
    }

    .product-features-row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .product-feature-item {
        justify-content: flex-start;
    }

    .tabs-header-modern {
        flex-direction: column;
        gap: 0.3rem;
    }

    .tab-btn-modern {
        justify-content: flex-start;
        padding: 0.8rem 1rem;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .related-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .related-product-image {
        height: 100px;
    }

    .price-display {
        flex-wrap: wrap;
    }

    .price-display .current-price {
        font-size: 1.6rem;
    }

    .action-row {
        flex-direction: column;
    }

    .action-row .quantity-selector-compact,
    .action-row .add-cart-btn-detail,
    .action-row .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .product-detail-title {
        font-size: 1.3rem;
    }
}

/* ==================== ACCOUNT PAGE - MOBILE RESPONSIVE ==================== */

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--light-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.stat-value {
    font-family: 'Exo', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--navy-500);
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-100);
    border-radius: var(--radius-lg);
}

.empty-state i {
    font-size: 3rem;
    color: var(--light-300);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--navy-500);
    margin-bottom: 1.5rem;
}

/* Profile Form */
.profile-form {
    max-width: 500px;
}

.profile-form .form-group {
    margin-bottom: 1.25rem;
}

/* Account Page Responsive */
@media (max-width: 1024px) {
    .account-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .account-sidebar {
        order: -1;
    }

    .account-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .account-menu li {
        margin-bottom: 0;
    }

    .account-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .account-menu .logout {
        margin-top: 0;
        padding-top: 0.6rem;
        border-top: none;
    }
}

@media (max-width: 768px) {
    .account-page {
        padding: 1rem 3%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .account-sidebar {
        padding: 1rem;
    }

    .account-user {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding-bottom: 1rem;
    }

    .account-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0;
    }

    .account-user h3 {
        font-size: 1rem;
        margin-bottom: 0.15rem;
    }

    .account-user p {
        font-size: 0.8rem;
    }

    .account-menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .account-menu a {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.75rem 0.5rem;
        font-size: 0.7rem;
        text-align: center;
        background: var(--light-100);
        border-radius: var(--radius-md);
    }

    .account-menu a i {
        font-size: 1rem;
    }

    .account-menu .logout {
        background: rgba(239, 68, 68, 0.08);
    }

    .account-content {
        padding: 1rem;
    }

    .account-content h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .account-content h3 {
        font-size: 1rem;
        margin: 1.5rem 0 0.75rem;
    }

    /* Orders Table - Mobile Card Style */
    .orders-table {
        display: block;
    }

    .orders-table thead {
        display: none;
    }

    .orders-table tbody {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .orders-table tr {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
        background: var(--light-100);
        border-radius: var(--radius-md);
        border: 1px solid var(--light-200);
        align-items: center;
    }

    .orders-table tr:hover {
        background: var(--light-100);
        border-color: var(--accent);
    }

    .orders-table td {
        padding: 0;
        border: none;
    }

    .orders-table td:first-child {
        flex: 0 0 100%;
        font-size: 0.95rem;
    }

    .orders-table td:first-child strong {
        color: var(--primary);
    }

    .orders-table td:nth-child(2),
    .orders-table td:nth-child(3) {
        font-size: 0.8rem;
        color: var(--navy-500);
    }

    .orders-table td:nth-child(4) {
        margin-left: auto;
    }

    .orders-table td:last-child {
        flex: 0 0 100%;
        display: flex;
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px dashed var(--light-300);
    }

    .orders-table td:last-child .btn {
        flex: 1;
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .order-status {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }

    /* Address Cards */
    .address-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .address-item {
        padding: 1rem;
    }

    /* Wishlist Grid */
    .wishlist-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .wishlist-item {
        padding: 0.75rem;
    }

    .wishlist-item img {
        height: 100px;
    }

    /* Profile Form Mobile */
    .profile-form {
        max-width: 100%;
    }

    .profile-form .form-group {
        margin-bottom: 1rem;
    }

    .profile-form .form-label {
        font-size: 0.85rem;
    }

    .profile-form .form-input {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .account-page {
        padding: 0.75rem 2%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .stat-card {
        padding: 0.75rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .account-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .account-menu a {
        padding: 0.6rem 0.4rem;
        font-size: 0.65rem;
    }

    .orders-table td:nth-child(2),
    .orders-table td:nth-child(3) {
        font-size: 0.75rem;
    }

    .orders-table td:last-child .btn {
        padding: 0.4rem;
        font-size: 0.7rem;
    }

    .wishlist-grid {
        grid-template-columns: 1fr;
    }

    .empty-state {
        padding: 2rem 1rem;
    }

    .empty-state i {
        font-size: 2rem;
    }
}

/* ==================== CART PAGE - MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .cart-page {
        padding: 1rem 3%;
    }

    .cart-items {
        border-radius: var(--radius-lg);
    }

    .cart-item {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }

    .cart-product {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .cart-product-image {
        width: 70px;
        height: 70px;
        padding: 0.25rem;
    }

    .cart-product-info h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .cart-product-info p {
        font-size: 0.75rem;
    }

    .cart-item-details {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px dashed var(--light-300);
    }

    .cart-quantity {
        gap: 0.25rem;
    }

    .cart-qty-btn {
        width: 28px;
        height: 28px;
    }

    .cart-qty-input {
        width: 40px;
        height: 28px;
        font-size: 0.85rem;
    }

    .cart-total {
        font-size: 1rem;
    }

    .cart-remove {
        width: 32px;
        height: 32px;
    }

    .cart-summary {
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }

    .cart-summary h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .summary-row {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    .summary-row.total {
        font-size: 1.1rem;
        padding-top: 1rem;
        margin-top: 0.75rem;
    }

    .coupon-form {
        flex-direction: column;
        margin: 1rem 0;
    }

    .coupon-input {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .coupon-btn {
        padding: 0.7rem;
    }

    .checkout-btn {
        padding: 1rem;
        margin-top: 1rem;
        font-size: 0.95rem;
    }

    .empty-cart {
        padding: 2rem 1rem;
    }

    .empty-cart-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .empty-cart h2 {
        font-size: 1.2rem;
    }
}

/* ==================== CHECKOUT PAGE - MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .checkout-page {
        padding: 1rem 3%;
    }

    .checkout-section {
        padding: 1.25rem;
        margin-bottom: 1rem;
        border-radius: var(--radius-lg);
    }

    .checkout-section h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .checkout-section h2 .step-number {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    .address-cards {
        gap: 0.75rem;
    }

    .address-card {
        padding: 1rem;
    }

    .address-card h4 {
        font-size: 0.95rem;
    }

    .address-card p {
        font-size: 0.8rem;
    }

    .address-card.selected::after {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .payment-method {
        padding: 1rem;
    }

    .payment-icon {
        width: 40px;
        height: 30px;
        font-size: 1rem;
    }

    .payment-info h4 {
        font-size: 0.9rem;
    }

    .payment-info p {
        font-size: 0.75rem;
    }

    .order-summary {
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }

    .order-summary h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .order-items {
        max-height: 200px;
        margin-bottom: 1rem;
    }

    .order-item {
        padding: 0.75rem 0;
    }

    .order-item-image {
        width: 50px;
        height: 50px;
    }

    .order-item-info h4 {
        font-size: 0.85rem;
    }

    .order-item-info p {
        font-size: 0.7rem;
    }

    .order-item-price {
        font-size: 0.85rem;
    }

    .place-order-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .secure-badge {
        font-size: 0.75rem;
    }

    /* Credit Card Preview Mobile */
    .card-preview {
        padding: 1.25rem;
    }

    .card-chip {
        width: 40px;
        height: 32px;
        margin-bottom: 1rem;
    }

    .card-number-preview {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .card-details-preview span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .checkout-section {
        padding: 1rem;
    }

    .address-card {
        padding: 0.75rem;
    }

    .payment-method {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .order-item-image {
        width: 45px;
        height: 45px;
    }

    .card-number-preview {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
}

/* ==================== BACK TO CART BUTTON ==================== */
.back-to-cart-wrapper {
    max-width: 1800px;
    margin: 0 auto;
    padding: 1rem 2% 0;
}

.back-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-cart-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(-3px);
}

.back-to-cart-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.back-to-cart-btn:hover i {
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .back-to-cart-wrapper {
        padding: 0.75rem 4% 0;
    }

    .back-to-cart-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* ==================== SHIPPING SELECTION ==================== */
.shipping-selection {
    margin: 1rem 0 1.25rem;
    padding: 1rem;
    background: var(--light-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-200);
}

.shipping-selection h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-selection h4 i {
    color: var(--primary);
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border: 2px solid var(--light-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.shipping-option:hover {
    border-color: var(--primary-light);
    background: rgba(30, 58, 95, 0.02);
}

.shipping-option.selected {
    border-color: var(--primary);
    background: rgba(30, 58, 95, 0.05);
}

.shipping-option input[type="radio"] {
    display: none;
}

.shipping-option-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-600);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.shipping-option.selected .shipping-option-icon {
    background: var(--primary);
    color: white;
}

.shipping-option-info {
    flex: 1;
    min-width: 0;
}

.shipping-option-name {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy-800);
}

.shipping-option-delivery {
    display: block;
    font-size: 0.75rem;
    color: var(--navy-500);
    margin-top: 0.1rem;
}

.shipping-option-price {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    white-space: nowrap;
}

.shipping-option.selected .shipping-option-price {
    color: var(--success);
}

@media (max-width: 480px) {
    .shipping-selection {
        padding: 0.75rem;
    }

    .shipping-option {
        padding: 0.6rem;
        gap: 0.5rem;
    }

    .shipping-option-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .shipping-option-name {
        font-size: 0.8rem;
    }

    .shipping-option-delivery {
        font-size: 0.7rem;
    }

    .shipping-option-price {
        font-size: 0.8rem;
    }
}

/* ====================================
   YORUM SİSTEMİ - Reviews System
   ==================================== */

/* Yorum Özeti */
.reviews-summary {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.rating-big {
    text-align: center;
    min-width: 150px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1;
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.rating-count {
    color: var(--navy-500);
    font-size: 0.9rem;
}

/* Puan Dağılımı */
.rating-distribution {
    flex: 1;
    min-width: 200px;
}

.dist-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.dist-stars {
    width: 45px;
    font-size: 0.85rem;
    color: var(--navy-600);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.dist-stars i {
    color: #f59e0b;
    font-size: 0.75rem;
}

.dist-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.dist-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.dist-count {
    width: 30px;
    text-align: right;
    font-size: 0.8rem;
    color: var(--navy-500);
}

/* Yorum Yaz Bölümü */
.write-review-section {
    margin-bottom: 1.5rem;
}

.write-review-section .btn-primary {
    background: linear-gradient(135deg, #1e3a5f, #0f2744) !important;
    color: #fff !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.write-review-section .btn-primary:hover {
    background: linear-gradient(135deg, #2a4a73, #1e3a5f) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* Yorum Formu */
.review-form-container {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-form-container h4 {
    margin: 0 0 1.5rem;
    color: var(--navy-800);
    font-size: 1.1rem;
}

/* Yıldız Rating Input */
.star-rating-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-rating-input i {
    font-size: 1.8rem;
    cursor: pointer;
    color: #9ca3af;
    transition: all 0.2s ease;
}

.star-rating-input i:hover {
    transform: scale(1.15);
}

.star-rating-input i.fas {
    color: #f59e0b;
}

.rating-text {
    margin-left: 0.5rem;
    color: var(--navy-600);
    font-size: 0.9rem;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Karakter Sayacı */
.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: var(--navy-400);
    margin-top: 0.25rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Yorumlar Listesi */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reviews-loading {
    text-align: center;
    padding: 2rem;
    color: var(--navy-500);
}

.no-reviews {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    color: var(--navy-500);
}

.no-reviews i {
    font-size: 3rem;
    opacity: 0.5;
    margin-bottom: 1rem;
    display: block;
}

.no-reviews p {
    margin: 0;
}

/* Yorum Kartı */
.review-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    color: var(--navy-800);
    font-size: 0.95rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 500;
    margin-top: 0.1rem;
}

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

.review-date {
    color: var(--navy-400);
    font-size: 0.8rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-rating i {
    color: #f59e0b;
    font-size: 0.9rem;
}

.review-title {
    font-weight: 600;
    color: var(--navy-800);
    font-size: 1rem;
}

.review-content {
    color: var(--navy-600);
    line-height: 1.6;
}

.review-content p {
    margin: 0 0 0.75rem;
}

.review-pros,
.review-cons {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
}

.review-pros {
    background: #f0fdf4;
    color: #166534;
}

.review-pros i {
    color: #22c55e;
}

.review-cons {
    background: #fef2f2;
    color: #991b1b;
}

.review-cons i {
    color: #ef4444;
}

/* Admin Yanıtı */
.admin-reply {
    margin-top: 1rem;
    padding: 1rem;
    background: #f1f5f9;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.admin-reply-header {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.admin-reply p {
    margin: 0;
    color: var(--navy-600);
    font-size: 0.9rem;
}

/* Yorum Footer */
.review-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

.helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    color: var(--navy-500);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.helpful-btn:hover:not(:disabled) {
    background: #f1f5f9;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.helpful-btn:disabled {
    background: #f1f5f9;
    color: var(--primary-color);
    cursor: default;
}

.helpful-btn i.fas {
    color: var(--primary-color);
}

/* Daha Fazla Yorum Butonu */
.load-more-reviews {
    text-align: center;
    margin-top: 1.5rem;
}

.load-more-reviews .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Zaten Yorum Yapıldı */
.already-reviewed {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f0fdf4;
    color: #166534;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.already-reviewed i {
    color: #22c55e;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 2rem;
    color: #ef4444;
    background: #fef2f2;
    border-radius: var(--radius-md);
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-summary {
        flex-direction: column;
        gap: 1.5rem;
    }

    .rating-big {
        min-width: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .star-rating-input i {
        font-size: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}
