/* ============================================
   Dikiş Durağı - Ana Stil Dosyası
   Butik Terzilik & Özel Dikim
   Mobile-First, Light Theme
   ============================================ */

/* === CSS Custom Properties === */
:root {
    --primary: #e6007e;
    --primary-light: #ff54b4;
    --primary-dark: #b80065;
    --primary-rgb: 230, 0, 126;
    --secondary: #fef0f6;
    --accent: #cca675;
    --bg: #fffcfd;
    --bg-white: #ffffff;
    --text: #38202b;
    --text-light: #705562;
    --text-muted: #a18a95;
    --border: #fce3ee;
    --border-light: #fdf0f5;
    --shadow: 0 2px 15px rgba(56, 32, 43, 0.08);
    --shadow-md: 0 4px 20px rgba(56, 32, 43, 0.1);
    --shadow-lg: 0 10px 40px rgba(56, 32, 43, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: rgba(var(--primary-rgb), 0.2);
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* === Layout === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 50px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.section-title::after {
    display: none;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: 1.6rem; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

/* === Navigation === */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(56, 32, 43, 0.10);
    border-bottom-color: var(--border-light);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary) !important;
    text-decoration: none;
}

.brand-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    text-decoration: none;
    letter-spacing: 0.01em;
}

/* btn-primary inside nav should stay white */
.nav-links .btn-primary,
.nav-links .btn-primary:hover,
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
    color: #ffffff !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Prevent underline decoration on btn links inside nav */
.nav-links .btn::after {
    display: none !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger: hidden on desktop, shown on mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1050;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* Mobile-only auth links — hidden on desktop */
.nav-mobile-auth {
    display: none;
}

.nav-cart {
    position: relative;
    color: var(--text);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-cart:hover {
    color: var(--primary);
    background: var(--secondary);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.user-dropdown {
    position: relative;
}

.user-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    background: var(--secondary);
    border-radius: var(--radius-full);
    cursor: pointer;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.user-dropdown-btn:hover {
    background: var(--border);
}

.user-name-short {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.dropdown-menu hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 4px 0;
}

.dropdown-menu .admin-link {
    color: var(--primary);
    font-weight: 500;
}

.nav-login-btn {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 6px 12px !important;
    text-decoration: none !important;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-sm) !important;
}

.nav-login-btn:hover {
    color: var(--primary-dark) !important;
    background: rgba(230, 0, 126, 0.06) !important;
}

/* Hamburger bars animation */
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Touch active feedback */
.touch-active {
    opacity: 0.85;
    transform: scale(0.98);
}

/* Field error state */
.field-error {
    border-color: var(--error) !important;
}

.form-group.focused .form-label {
    color: var(--primary);
}


/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 48px;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

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

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

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    min-height: 38px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-danger {
    background: var(--error);
    color: white;
    border-color: var(--error);
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.btn:active {
    transform: translateY(0) !important;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* === Cards === */
.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-body {
    padding: 20px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.card-title a {
    color: inherit;
}

.card-title a:hover {
    color: var(--primary);
}

.card-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.card-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.card-price .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    margin-left: 8px;
}

.card-footer {
    padding: 0 20px 20px;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* === Product Grid === */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.88), rgba(142, 79, 89, 0.92)), url('../images/hero-bg.jpg') center/cover;
    color: white;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 20px;
    max-width: 760px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    line-height: 1.25;
}

.hero p {
    font-size: 1.05rem;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.10) 0%, transparent 55%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.07) 0%, transparent 40%),
                      radial-gradient(circle at 60% 80%, rgba(255,255,255,0.04) 0%, transparent 35%);
    z-index: 1;
}

/* === Forms === */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--bg-white);
    transition: var(--transition);
    -webkit-appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-error {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-help {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* === Flash Messages / Alerts === */
.flash-container {
    position: relative;
    z-index: 999;
}

.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin: 12px 0;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease;
    border: 1px solid transparent;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.alert-warning {
    background: #fffbeb;
    color: #92400e;
    border-color: #fde68a;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    padding: 4px 8px;
    color: inherit;
}

.alert-close:hover {
    opacity: 1;
}

/* === Badges === */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

/* === Product Detail === */
.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 0;
}

.product-image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(56, 32, 43, 0.14);
    position: relative;
}

.product-image-container img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.5s ease;
}

.product-image-container:hover img {
    transform: scale(1.02);
}

.product-info {
    padding: 12px 0;
}

.product-info h1 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    line-height: 1.25;
    color: var(--text);
}

.product-price-display {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.product-price-display .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1rem;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.measurement-form {
    background: linear-gradient(135deg, #fef6fb, var(--secondary));
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(230, 0, 126, 0.05);
}

.measurement-form h3 {
    margin-bottom: 16px;
    font-size: 1.15rem;
    color: var(--text);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.quantity-btn {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text);
}

.quantity-btn:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.quantity-btn:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

.quantity-input {
    width: 60px;
    height: 48px;
    border: 1.5px solid var(--border);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1rem;
    font-family: var(--font-body);
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* === Reviews === */
.reviews-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.average-rating .rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.stars .empty {
    color: var(--border);
}

.review-card {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.review-card:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.review-author {
    font-weight: 600;
    color: var(--text);
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.review-comment {
    color: var(--text-light);
    line-height: 1.6;
}

.review-form {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}

.star-rating-input {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    direction: rtl;
    justify-content: flex-end;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--border);
    transition: color 0.2s;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #f59e0b;
}

/* === Cart === */
.cart-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 0;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty svg {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cart-empty h2 {
    margin-bottom: 8px;
    color: var(--text-light);
}

.cart-empty p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-measurements {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: var(--error);
}

.cart-summary {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    position: sticky;
    top: 90px;
}

.cart-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.cart-summary-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    border-top: 2px solid var(--border);
    margin-top: 12px;
    padding-top: 12px;
}

/* === Checkout === */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 20px 0;
}

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

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

.step.active .step-number {
    background: var(--primary);
}

.step.completed .step-number {
    background: var(--success);
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--border);
    margin: 0 8px;
}

.step.completed + .step-connector,
.step-connector.active {
    background: var(--primary);
}

.checkout-form {
    max-width: 700px;
    margin: 0 auto;
}

/* === Account Page === */
.account-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0;
}

.account-tabs {
    display: flex;
    overflow-x: auto;
    gap: 4px;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 6px;
    box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
}

.account-tab {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.account-tab:hover {
    background: var(--secondary);
    color: var(--text);
}

.account-tab.active {
    background: var(--primary);
    color: white;
}

.account-content {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.order-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    transition: var(--transition);
    flex-wrap: wrap;
    gap: 12px;
}

.order-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.order-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.order-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* === Order Detail === */
.order-timeline {
    position: relative;
    padding-left: 30px;
    margin: 24px 0;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid white;
    box-shadow: var(--shadow);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.timeline-status {
    font-weight: 600;
}

/* === Breadcrumb === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
}

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

.breadcrumb .separator {
    color: var(--border);
}

.breadcrumb .current {
    color: var(--text);
    font-weight: 500;
}

/* === Footer === */
.footer {
    background: #3d3232;
    color: #d4c8c8;
    padding: 50px 0 0;
    margin-top: 60px;
}

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

.footer-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d4c8c8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #d4c8c8;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* === WhatsApp Button === */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 998;
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
    color: white;
}

.whatsapp-btn::before {
    content: 'Yardım?';
    position: absolute;
    right: 68px;
    background: #25d366;
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover::before {
    opacity: 1;
}


/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 92px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* === About Section === */
.about-section {
    background: var(--bg-white);
}

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

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

/* === Features / Why Us === */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 22px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    box-shadow: 0 4px 16px rgba(56, 32, 43, 0.03);
    transition: var(--transition);
    border: 1px solid #f0e6ed;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(56, 32, 43, 0.08);
    border-color: #e5d3df;
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(230, 0, 126, 0.06);
    line-height: 1;
}

.feature-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* === Contact Section === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.contact-info-list {
    display: grid;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 50px 20px;
    border-radius: var(--radius-lg);
    margin: 0 20px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 12px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
    border-color: white;
}

.cta-section .btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* === Auth Pages === */
.auth-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    width: 100%;
    max-width: 450px;
}

.auth-card h1 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.password-toggle {
    position: relative;
}

.password-toggle .toggle-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
}

/* === Pagination === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 30px 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* === Lightbox === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Spinner === */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}

/* === Sort Bar === */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.sort-bar .result-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sort-bar select {
    padding: 8px 36px 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--bg-white);
    cursor: pointer;
}

/* === Empty State === */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state h3 {
    color: var(--text-light);
    margin-bottom: 8px;
}

/* === PayTR iframe === */
.payment-iframe-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.payment-iframe-container iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: var(--radius);
}

/* === Testimonial === */
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(56, 32, 43, 0.04);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid #f0e6ed;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(56, 32, 43, 0.08);
}

.testimonial-card .stars {
    margin-bottom: 14px;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }
.fw-bold { font-weight: 700; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden { display: none !important; }

/* === Animations === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Desktop hero height */
@media (min-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 180px;
        max-height: 280px;
        padding: 10px 0;
    }
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet (640px+) */
@media (min-width: 640px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.55rem; }
    .section { padding: 56px 0; }
    .section-title { font-size: 1.7rem; }

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

    .hero { min-height: 65vh; }
    .hero h1 { font-size: 2.2rem; }

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

    .user-name-short { display: inline; }

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

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    .section { padding: 72px 0; }
    .section-title { font-size: 1.9rem; }

    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(4, 1fr); }

    .hero { min-height: 68vh; }
    .hero h1 { font-size: 2.6rem; }

    .product-detail { grid-template-columns: 1.1fr 1fr; gap: 56px; }

    .cart-page { grid-template-columns: 1fr 350px; }

    .account-layout { grid-template-columns: 240px 1fr; }
    .account-tabs {
        flex-direction: column;
        position: sticky;
        top: 108px;
        align-self: start;
    }

    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }

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

/* Mobile Only (< 768px) */
@media (max-width: 767px) {

    /* WhatsApp Floating Button: elevate above mobile sticky bar */
    .whatsapp-btn {
        bottom: 85px !important;
        right: 16px !important;
        width: 52px !important;
        height: 52px !important;
        z-index: 1050 !important;
    }
    .whatsapp-btn::before {
        display: none !important;
    }
    .back-to-top {
        bottom: 85px !important;
        right: 76px !important;
        z-index: 1050 !important;
    }

    /* Disable backdrop-filter on mobile to prevent containing block bug on position:fixed descendants */
    .navbar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: #ffffff !important;
    }

    /* ===== HAMBURGER ===== */
    .hamburger {
        display: flex;  /* show on mobile */
        z-index: 1060;
    }

    /* === Product Detail — remove sticky on mobile === */
    .pd-sticky-panel {
        position: static !important;
    }

    /* === Product Detail grid — single column, tighter gap === */
    .product-detail {
        gap: 24px !important;
        padding: 20px 0 !important;
    }

    /* === Product image shorter on mobile === */
    .product-image-container img {
        aspect-ratio: 1 / 1 !important;
    }

    /* === Product info headings === */
    .product-info h1 {
        font-size: 1.25rem !important;
        margin-bottom: 10px !important;
    }

    /* === Price display smaller on mobile === */
    .product-price-display {
        font-size: 1.3rem !important;
        margin-bottom: 14px !important;
    }

    /* === Trust bar below image: wrap to 2 per row === */
    .pd-trust-mini-bar {
        grid-template-columns: 1fr 1fr !important;
    }
    .pd-trust-mini-bar > div:last-child {
        grid-column: 1 / -1;
    }

    /* === Measurement form padding === */
    .measurement-form {
        padding: 18px 16px !important;
    }

    /* === Hero section: compact banner on mobile === */
    .hero-slider {
        height: auto !important;
        min-height: 130px !important;
        max-height: none !important;
        padding: 12px 0 !important;
    }

    .hero-content-inner {
        padding: 14px 16px !important;
    }

    /* === hero-slider inner slide abs positioning === */
    .hero-slider .slide-bg {
        min-height: 130px;
    }

    /* === Hero heading === */
    .hero-heading {
        font-size: 1.12rem !important;
        margin-bottom: 6px !important;
    }

    /* === Hero subtitle === */
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 0 !important;
    }

    /* === Hero buttons stack vertically === */
    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: stretch !important;
        width: 100%;
    }
    .hero-buttons a {
        text-align: center !important;
        justify-content: center !important;
        min-height: 50px !important;
        font-size: 0.92rem !important;
        padding: 13px 20px !important;
    }

    /* === Trust mini bar on mobile: 3 col stays but smaller === */
    .pd-trust-mini-bar {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
    .pd-trust-mini-bar > div {
        padding: 10px 8px !important;
    }
    .pd-trust-mini-bar span {
        font-size: 1rem !important;
    }

    /* === Section title smaller === */
    .section-title {
        font-size: 1.35rem !important;
    }

    /* === Showcase section: image max-width === */
    .product-showcase-wrapper {
        padding: 20px !important;
        gap: 28px !important;
    }

    /* === Product detail video section === */
    .product-video-section {
        padding: 20px 16px !important;
        margin-top: 28px !important;
    }

    /* === Reviews header === */
    .reviews-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    /* === Review form padding === */
    .review-form {
        padding: 18px 16px !important;
    }

    /* ===== MOBILE SLIDE-DOWN MENU ===== */
    .nav-links {
        /* Reset desktop inline-flex layout */
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;   /* items always start from top — no clipping */
        gap: 2px;
        list-style: none;
        margin: 0;
        padding: 16px 16px 32px;

        /* Position: full-width panel below the navbar */
        position: fixed;
        top: 68px;           /* navbar height */
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;

        background: #ffffff;
        z-index: 1050;
        border-top: 1px solid #f0f0f0;

        /* Hidden off-screen (upwards, behind navbar) */
        transform: translateY(-110%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity   0.3s ease,
                    visibility 0.3s ease;
    }

    /* Open state */
    .nav-links.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    }

    /* Each list item full-width */
    .nav-links li {
        width: 100%;
    }

    /* Links large touch targets */
    .nav-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text);
        padding: 14px 16px;
        border-radius: 10px;
        text-decoration: none;
        transition: background 0.15s, color 0.15s;
        width: 100%;
    }

    .nav-links a:not(.btn):hover,
    .nav-links a:not(.btn):active {
        background: #fef0f7;
        color: var(--primary);
    }

    /* No underline animation inside mobile menu */
    .nav-links a::after {
        display: none !important;
    }

    /* Divider before auth buttons */
    .nav-mobile-auth {
        display: block;
        width: 100%;
        margin-top: 8px;
    }

    .nav-mobile-auth:first-of-type {
        border-top: 1px solid #f0f0f0;
        padding-top: 8px;
        margin-top: 8px;
    }

    /* btn-primary colour fix inside mobile menu */
    .nav-links a.btn-primary,
    .nav-links .btn-primary,
    .nav-links a.btn-primary:hover,
    .nav-links .btn-primary:hover {
        color: #ffffff !important;
        justify-content: center;
    }

    .nav-links .btn-outline {
        justify-content: center;
    }



    /* === Forms === */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-control {
        font-size: 16px !important; /* prevents iOS zoom */
        padding: 14px 16px;
        min-height: 52px;
    }

    .form-label {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 6px;
    }

    /* === Auth pages === */
    .auth-card {
        padding: 28px 20px;
        margin: 12px;
        border-radius: var(--radius-lg);
    }

    /* === Checkout steps === */
    .step-indicator {
        font-size: 0;
    }

    .step-label {
        display: none;
    }

    /* === Buttons - bigger touch targets === */
    .btn {
        min-height: 52px;
        font-size: 1rem;
        padding: 14px 24px;
    }

    .btn-lg {
        min-height: 58px;
        font-size: 1.05rem;
        padding: 16px 24px;
    }

    .btn-sm {
        min-height: 44px;
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    /* === CTA section === */
    .cta-section {
        margin: 0;
        border-radius: 0;
    }

    /* === Order cards === */
    .order-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-actions {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* === Account layout === */
    .account-tabs {
        gap: 4px;
    }

    .account-tab {
        font-size: 0.85rem;
        padding: 10px 12px;
        min-height: 44px;
    }

    /* === Bank details === */
    .bank-value-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .btn-copy {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .bank-value {
        font-size: 0.95rem;
    }

    /* === Receipt upload === */
    .receipt-upload-box {
        padding: 24px 16px;
    }

    /* === Payment method cards === */
    .payment-method-card {
        padding: 16px;
    }

    /* === Navbar height on mobile === */
    .navbar-inner {
        height: 68px;
    }

    /* === Container padding === */
    .container {
        padding: 0 16px;
    }

    /* === Product grid === */
    .products-grid {
        gap: 12px;
    }

    /* === Hero === */
    .hero {
        padding: 40px 0;
    }

    /* === Section === */
    .section {
        padding: 40px 0;
    }

    /* === Footer === */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* === Payment Method Selection Styles === */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.payment-method-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.payment-method-card:hover:not(.disabled) {
    border-color: var(--primary-light);
    background: var(--secondary);
}

.payment-method-card.active {
    border-color: var(--primary);
    background: var(--secondary);
    box-shadow: var(--shadow-md);
}

.payment-method-card.disabled {
    opacity: 0.65;
    cursor: not-allowed;
    background: #fafafb;
    border-color: #eee;
}

.payment-method-radio {
    margin-top: 4px;
}

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

.payment-method-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-method-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.payment-method-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.payment-method-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.payment-method-badge.badge-soon {
    background-color: #e2e8f0;
    color: #64748b;
}

.payment-method-badge.badge-active {
    background-color: #dcfce7;
    color: #15803d;
}

/* === Bank Account & Copy Details Styles === */
.bank-details-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 24px;
    margin-bottom: 24px;
}

.bank-details-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.bank-details-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--primary);
}

.bank-row-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bank-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (min-width: 768px) {
    .bank-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.bank-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    min-width: 140px;
}

.bank-value-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    flex-grow: 1;
    justify-content: space-between;
    max-width: 100%;
}

.bank-value {
    font-family: monospace;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    word-break: break-all;
}

.btn-copy {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    user-select: none;
    white-space: nowrap;
}

.btn-copy:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.btn-copy.copied {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

/* === Receipt Upload UI Styles === */
.receipt-upload-box {
    border: 2px dashed var(--border);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    margin-bottom: 24px;
}

.receipt-upload-box:hover, .receipt-upload-box.dragover {
    border-color: var(--primary);
    background: var(--secondary);
}

.receipt-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: inline-block;
    color: var(--primary);
}

.upload-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.upload-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.receipt-preview-container {
    margin-top: 15px;
    padding: 12px;
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px dashed var(--primary-light);
    display: none;
    align-items: center;
    justify-content: space-between;
}

.receipt-filename {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    word-break: break-all;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Single Product Showcase Responsive Grid */
@media (min-width: 768px) {
    .product-showcase-wrapper {
        grid-template-columns: 1.1fr 1fr !important;
        padding: 48px !important;
        gap: 56px !important;
    }
}

/* === Additional Polish === */

/* Section title underline thicker and longer */
.section-title::after {
    width: 72px;
    height: 4px;
    border-radius: 4px;
    margin-top: 14px;
}

/* Smooth scroll anchor offset for sticky header */
:target {
    scroll-margin-top: 100px;
}

/* Mobile logo size cap */
@media (max-width: 767px) {
    .navbar-brand img {
        height: 52px !important;
    }
    /* Hero trust indicators wrap nicely on mobile */
    .hero-slider [style*="flex-wrap: wrap"][style*="gap: 28px"] {
        gap: 16px !important;
    }
}

/* Nav login button subtle link style */
.nav-login-btn {
    font-size: 0.88rem !important;
    padding: 6px 10px !important;
    background: transparent !important;
    color: var(--primary) !important;
    box-shadow: none !important;
    border: none !important;
    font-weight: 600 !important;
}

/* cart-summary sticky top accounts for taller header */
.cart-summary {
    top: 108px;
}

/* Quantity control rounded */
.quantity-control {
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}
.quantity-btn:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.quantity-btn:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Contact item more pronounced */
.contact-item {
    transition: var(--transition);
}
.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer logo area */
.footer-title {
    font-size: 1.05rem;
}

/* ============================================
   HERO SLIDER — Yeni CSS sınıfları
   ============================================ */

.hero-slider {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    background: #1a0a10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(160deg, rgba(184,0,101,0.82) 0%, rgba(100,20,50,0.72) 50%, rgba(20,5,15,0.65) 100%),
        url('../../img/banner.png');
    background-size: cover;
    background-position: center;
}

.hero-pattern-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
        radial-gradient(circle at 85% 30%, rgba(255,180,220,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 860px;
    padding: 24px 20px;
    width: 100%;
    animation: slideUp 0.8s ease;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 3px 16px rgba(0,0,0,0.35);
    color: white;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: clamp(0.8rem, 1.4vw, 0.92rem);
    line-height: 1.5;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: rgba(255,255,255,0.92);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.hero-cta-btn {
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: var(--radius-full);
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 50px;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: var(--primary);
}

.hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    min-height: 50px;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-cta-ghost:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.82);
    font-size: 0.82rem;
    font-weight: 500;
}

/* ============================================
   ABOUT SECTION — Mini Cards
   ============================================ */

.about-mini-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 24px 0;
}

.about-mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    flex: 1;
    min-width: 130px;
    border: 1px solid #f0e6ed;
    box-shadow: 0 2px 8px rgba(56, 32, 43, 0.03);
}

.about-mini-card--primary,
.about-mini-card--accent {
    border-left: none;
}

.about-mini-card-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.about-mini-card-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text);
}

.about-mini-card-title--primary {
    color: var(--primary);
}

.about-mini-card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-fade-slider {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(56, 32, 43, 0.09);
    border: 1px solid #f0e6ed;
    background: #faf7f9;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.about-fade-slider:active {
    cursor: grabbing;
}

.about-fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
    -webkit-user-drag: none;
    user-select: none;
}

.about-fade-slide.is-active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.about-fade-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.about-fade-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.about-fade-dot.is-active {
    background: #fff;
    width: 20px;
    border-radius: 4px;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(56,32,43,0.14);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */

.section-bg-gradient {
    background: linear-gradient(180deg, var(--secondary) 0%, #fef8fc 100%);
}

.section-bg-white {
    background: #fffcfd;
}

.section-bg-secondary {
    background: var(--secondary);
}

/* ============================================
   FEATURED PRODUCT SHOWCASE
   ============================================ */

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-top: 32px;
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(56,32,43,0.09);
    border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1.1fr 1fr;
        padding: 40px;
        gap: 48px;
    }
}

.showcase-img-col {
    text-align: center;
    position: relative;
}

.showcase-img-inner {
    position: relative;
    display: inline-block;
    width: 100%;
}

.showcase-img {
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 0 12px 36px rgba(56,32,43,0.13);
}

.showcase-campaign-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--error);
    color: white;
    padding: 6px 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(239,68,68,0.35);
}

.showcase-img-placeholder {
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.showcase-info {
    padding: 4px 0;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    border: 1px solid var(--border);
}

.showcase-title {
    font-size: clamp(1.15rem, 2.5vw, 1.6rem);
    color: var(--text);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    line-height: 1.25;
}

.showcase-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.showcase-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.showcase-price-old {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
}

.showcase-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #faf8fa;
    border-radius: 12px;
    border: 1px solid #f0e6ed;
}

.showcase-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #4a3f45;
    font-weight: 500;
}

.showcase-trust-check {
    color: #059669;
    font-size: 0.95rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.showcase-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.97rem;
    border-radius: var(--radius-full);
    padding: 15px 28px;
    min-height: 52px;
}

/* Card badge variants */
.card-badge--sale {
    background: var(--error);
    color: white;
}

.card-badge--custom {
    background: var(--primary);
    color: white;
}

/* Review product name */
.review-product-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================
   HEADER — Logo & Nav mobile links
   ============================================ */

.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.nav-mobile-auth-btn {
    margin-top: 8px !important;
    width: 100% !important;
    justify-content: center !important;
}

.nav-mobile-link--account {
    color: var(--primary);
    font-weight: 700;
}

.nav-mobile-link--logout {
    color: var(--error);
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    text-align: left;
    opacity: 0.95;
}

.footer-bottom-copy {
    margin: 0;
}

.footer-paytr {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-paytr-label {
    font-size: 0.78rem;
    color: #d4c8c8;
}

.footer-paytr-img {
    height: 22px;
    width: auto;
    vertical-align: middle;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */

.checkout-title {
    margin-top: 20px;
}

.checkout-info-box {
    background: linear-gradient(135deg, var(--secondary), #fff0f8);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.checkout-info-box-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1.3;
}

.checkout-info-box-title {
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
    font-size: 0.95rem;
}

.checkout-info-box-text {
    font-size: 0.86rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.checkout-paytr-container {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.checkout-paytr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.checkout-paytr-title {
    margin: 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.checkout-customer-card {
    border: 2px solid var(--primary);
    border-radius: var(--radius);
}

.checkout-customer-header {
    background: linear-gradient(135deg, var(--primary), #ff54b4);
    padding: 16px 20px;
    border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
    margin-bottom: 20px;
}

.checkout-customer-title {
    color: white;
    margin: 0;
    font-size: 1.05rem;
}

.checkout-customer-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    margin: 4px 0 0;
}

.checkout-customer-body {
    padding: 0 20px 20px;
}

.checkout-login-hint {
    background: #fff8f0;
    border: 1px solid #f5c48a;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.checkout-login-hint-text {
    flex: 1;
    min-width: 200px;
    font-size: 0.83rem;
    color: #92400e;
    margin: 0;
    line-height: 1.5;
}

.checkout-login-hint-btn {
    background: #f59e0b;
    color: white;
    font-size: 0.83rem;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: var(--transition);
    min-height: 38px;
    display: inline-flex;
    align-items: center;
}

.checkout-login-hint-btn:hover {
    background: #d97706;
    color: white;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    color: var(--text-light);
    padding: 6px 0;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    padding-top: 16px;
    border-top: 2px solid var(--border);
    margin-top: 12px;
}

.checkout-security-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.checkout-security-item {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkout-terms-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.checkout-terms-label {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    cursor: pointer;
    user-select: none;
}

.checkout-terms-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.checkout-success-box {
    margin-top: 14px;
    padding: 12px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.checkout-success-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.checkout-success-text {
    font-size: 0.8rem;
    color: #166534;
    margin: 0;
    line-height: 1.5;
}

.checkout-terms-check {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.products-page-title {
    margin-top: 10px;
}

/* ============================================
   PRODUCT DETAIL — PDP inline styles
   ============================================ */

.pdp-color-stock-notice {
    display: none;
    margin-top: 10px;
    padding: 10px 14px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 8px;
    color: #be123c;
    font-size: 0.83rem;
    font-weight: 600;
}

.pdp-optional-label {
    font-weight: 400;
    color: #aaa;
}

.pdp-note-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: 5px;
}

.pdp-count-label {
    font-weight: 400;
    color: #aaa;
    text-transform: none;
    font-size: 0.7rem;
}

.pdp-empty-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f0f2;
    font-size: 1.8rem;
}

.pdp-highlight-color {
    color: var(--primary);
    font-weight: 600;
}

.pdp-muted-help {
    margin-top: 16px;
    font-size: 0.83rem;
    color: #888;
}

.pdp-review-submit {
    height: 40px;
    padding: 0 20px;
    font-size: 0.86rem;
}

.pdp-login-prompt {
    font-size: 0.83rem;
    color: #888;
}

.pdp-measure-warning {
    color: var(--primary);
    font-weight: 600;
}

.pdp-colors-container {
    margin-bottom: 18px;
}

.pdp-star-input-wrap,
.pdp-comment-wrap {
    margin-bottom: 10px;
}

.text-underline {
    text-decoration: underline !important;
}

.empty-state-fullscreen {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.empty-state-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ============================================
   POLICY / LEGAL PAGES (Gizlilik, İptal, İade vb.)
   ============================================ */

.policy-container {
    margin-top: 30px;
    margin-bottom: 50px;
    max-width: 800px;
}

.policy-breadcrumb {
    margin-bottom: 20px;
}

.policy-card {
    padding: 30px;
    line-height: 1.8;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.policy-title {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    text-align: center;
    border-bottom: 2px solid var(--border);
    padding-bottom: 12px;
}

.policy-content {
    color: var(--text);
    font-size: 0.85rem;
    white-space: pre-line;
}

/* ============================================
   AUTH PAGES (Giriş, Kayıt, Ödeme Sonuç)
   ============================================ */

.auth-card-wide {
    max-width: 500px;
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-header-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.auth-header-title {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.auth-steps-card {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.auth-steps-title {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0 0 10px;
    font-weight: 600;
}

.auth-steps-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.auth-step-num {
    background: var(--primary);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.auth-divider {
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.auth-divider hr {
    border: none;
    border-top: 1px solid var(--border);
}

.auth-divider-text {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.auth-tip-box {
    margin-top: 20px;
    padding: 14px 18px;
    background: #fdf8fb;
    border-radius: 10px;
    border: 1px solid #f2e2ec;
}

.auth-tip-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.auth-forgot-wrap {
    text-align: right;
    margin-bottom: 20px;
}

.auth-forgot-link {
    font-size: 0.9rem;
    color: var(--primary);
}

.auth-status-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.auth-help-text {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 4px;
    display: block;
}

/* ============================================
   CART & ORDER SUMMARY
   ============================================ */

.cart-item-placeholder {
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: var(--radius-sm);
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.cart-guest-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin: 8px 0 0;
    line-height: 1.4;
}

.cart-guest-link {
    color: var(--primary);
    font-size: 0.82rem;
}

/* ============================================
   SIPARIS TAKIP / TRACKING
   ============================================ */

.tracking-hero {
    background: linear-gradient(135deg, #e6007e 0%, #ff54b4 50%, #c2006a 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.tracking-hero-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.tracking-hero h1 {
    font-size: 1.8rem;
    margin: 0 0 8px;
    font-weight: 700;
}

.tracking-hero p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.tracking-container {
    max-width: 700px;
    padding-top: 0;
}

.tracking-form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(230,0,126,0.12);
    padding: 28px 24px;
    margin: -24px auto 24px;
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.tracking-error-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    color: #dc2626;
    font-size: 0.9rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

.tracking-intro-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 18px;
    text-align: center;
    line-height: 1.5;
}

.tracking-input-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tracking-input-wrap {
    position: relative;
}

.tracking-input-wrap .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
}

.tracking-input-wrap input {
    width: 100%;
    padding: 16px 16px 16px 42px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.tracking-input-wrap input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230,0,126,0.1);
}

.tracking-input-wrap input::placeholder {
    color: #bbb;
    font-size: 0.92rem;
}

.tracking-order-input {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-search {
    background: linear-gradient(135deg, #e6007e, #ff54b4);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    transition: opacity 0.2s, transform 0.1s;
    margin-top: 4px;
}

.btn-search:active { transform: scale(0.98); }
.btn-search:hover { opacity: 0.9; }

.tracking-help-box {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tracking-help-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
}

.tracking-help-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.tracking-help-link {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.status-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.status-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 20px;
}

.status-step:last-child { padding-bottom: 0; }

.status-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}

.status-step.completed .status-step-icon {
    background: linear-gradient(135deg, #e6007e, #ff54b4);
    border-color: #e6007e;
    color: white;
}

.status-step-line {
    position: absolute;
    left: 17px;
    top: 38px;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.status-step.completed .status-step-line {
    background: linear-gradient(to bottom, #e6007e, #ff54b4);
}

.status-step-content {
    flex: 1;
    padding-top: 4px;
}

.status-step-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.status-step.completed .status-step-label { color: var(--primary); }

.status-step-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.status-step-note {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 2px;
}

.order-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
}

.result-section {
    animation: slideUp 0.3s ease;
}

.tracking-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    padding: 16px;
    background: var(--secondary);
    border-radius: 10px;
}

.tracking-empty-box {
    text-align: center;
    padding: 32px 16px;
}

.tracking-faq-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}

/* ============================================
   ORDER DETAIL PAGE
   ============================================ */

.order-tracking-banner {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #7dd3fc;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.order-tracking-banner-info {
    flex: 1;
    min-width: 200px;
}

.order-tracking-banner-title {
    font-weight: 700;
    color: #0369a1;
    margin: 0 0 4px;
    font-size: 0.95rem;
}

.order-tracking-banner-text {
    font-size: 0.8rem;
    color: #075985;
    margin: 0;
    line-height: 1.4;
}

.order-tracking-banner-btn {
    background: #0369a1;
    color: white;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.order-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.order-detail-h1 {
    font-size: 1.4rem;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.order-total-val {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.order-instruction-box {
    background: #fbf9f7;
    border: 1px solid #eee5de;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.order-instruction-title {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.order-instruction-list {
    margin-left: 20px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.receipt-status-info {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 16px 18px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.receipt-status-info-title {
    font-weight: 700;
    color: #0369a1;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.receipt-status-info-text {
    color: #075985;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.receipt-status-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 16px 18px;
    border-radius: 10px;
    text-align: left;
}

.receipt-status-success-title {
    font-weight: 700;
    color: #15803d;
    font-size: 1rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.receipt-status-success-text {
    color: #166534;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.receipt-view-btn {
    background: white;
    border-color: #bae6fd;
    color: #0369a1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.measure-chip {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.measure-chips-wrap {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.order-card-flex {
    flex-wrap: wrap;
}

.order-actions-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

/* ============================================
   STATUS BADGES
   ============================================ */

.badge-pending {
    background-color: rgba(245, 158, 11, 0.12);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-paid {
    background-color: rgba(16, 185, 129, 0.12);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-preparing {
    background-color: rgba(59, 130, 246, 0.12);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.badge-shipped {
    background-color: rgba(139, 92, 246, 0.12);
    color: #7c3aed;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.badge-delivered {
    background-color: rgba(16, 185, 129, 0.15);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-cancelled {
    background-color: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.badge-refunded {
    background-color: rgba(107, 114, 128, 0.12);
    color: #4b5563;
    border: 1px solid rgba(107, 114, 128, 0.25);
}

/* ============================================
   IFRAMES & EMBEDS
   ============================================ */

.paytr-iframe {
    width: 100%;
    min-height: 650px;
    border: none;
}

.fs-sm {
    font-size: 0.85rem;
}

.border-primary {
    border: 2px solid var(--primary) !important;
}

.justify-center {
    justify-content: center;
}

.d-flex {
    display: flex;
}

.gap-2 {
    gap: 10px;
}

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

.m-0 {
    margin: 0 !important;
}

.mb-1 {
    margin-bottom: 4px !important;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.my-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
}

.cart-free-shipping-notice {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.82rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.cart-free-shipping-notice.active {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.receipt-actions-wrap {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(3, 105, 161, 0.15);
}

.map-iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    z-index: 99999;
    font-family: inherit;
    display: none;
    animation: cookieSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cookieSlideUp {
    from { transform: translateY(25px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cookie-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.cookie-text {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #334155;
}

.cookie-link {
    color: var(--primary, #e6007e);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.btn-cookie-reject {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #64748b;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
}

.btn-cookie-reject:hover {
    background: #f1f5f9;
    color: #334155;
    border-color: #94a3b8;
}

.btn-cookie-accept {
    background: var(--primary, #e6007e);
    border: 1px solid var(--primary, #e6007e);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s ease;
}

.btn-cookie-accept:hover {
    filter: brightness(0.92);
    box-shadow: 0 2px 6px rgba(230, 0, 126, 0.25);
}

/* Cookie Banner Mobile Layout */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        padding: 9px 12px;
        border-radius: 10px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    .cookie-banner-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .cookie-icon {
        display: none;
    }
    .cookie-text {
        font-size: 0.72rem;
        line-height: 1.35;
        flex: 1;
    }
    .cookie-banner-actions {
        flex-shrink: 0;
        gap: 6px;
    }
    .btn-cookie-reject, .btn-cookie-accept {
        padding: 4px 8px;
        font-size: 0.72rem;
        white-space: nowrap;
    }
}


/* ============================================================
   PRODUCT DETAIL PAGE STYLES
   ============================================================ */

/* ============================================================
   PRODUCT DETAIL — Birebir Tasarım
   ============================================================ */

.pdp-page { background: #f7f7f7; }

/* ── Duyuru Çubuğu ── */
.pdp-announce {
    background: #fff8f0;
    border-bottom: 1px solid #f0e0cc;
    padding: 10px 20px;
    text-align: center;
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
}
.pdp-announce a { color: var(--primary); font-weight: 700; }

/* ── Breadcrumb ── */
.pdp-bc {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 9px 0;
    font-size: 0.75rem;
    color: #999;
}
.pdp-bc-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.pdp-bc a { color: #999; text-decoration: none; }
.pdp-bc a:hover { color: var(--primary); }

/* ── Main wrapper ── */
.pdp-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 20px 0;
}

/* ── Main grid ── */
.pdp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
@media (min-width: 768px) {
    .pdp-grid {
        grid-template-columns: 500px 1fr;
    }
}

/* ── LEFT: Image Column ── */
.pdp-img-col {
    background: #fff;
    padding: 20px;
    border-right: 1px solid #f0f0f0;
}
@media (max-width: 767px) {
    .pdp-img-col { padding: 0; border-right: none; border-bottom: 1px solid #f0f0f0; }
}

.pdp-main-img-box {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f9f9f9;
    cursor: zoom-in;
}
.pdp-main-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, opacity 0.2s ease;
}
.pdp-main-img-box:hover img { transform: scale(1.04); }

/* Image nav arrows */
.pdp-img-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.88);
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 0.95rem; color: #444;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background 0.2s;
}
.pdp-img-arrow:hover { background: #fff; }
.pdp-img-arrow.prev { left: 10px; }
.pdp-img-arrow.next { right: 10px; }

/* Thumbnail strip */
.pdp-thumbs {
    display: none;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.pdp-thumbs::-webkit-scrollbar { display: none; }
.pdp-thumb-item {
    width: 72px; height: 72px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2.5px solid #e5e5e5;
    cursor: pointer;
    transition: border-color 0.18s;
    background: #f5f5f5;
}
.pdp-thumb-item.active { border-color: var(--primary); }
.pdp-thumb-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 767px) {
    .pdp-thumbs { padding: 0 12px 12px; }
    .pdp-main-img-box { border-radius: 0; }
}

/* ── RIGHT: Info Column ── */
.pdp-info-col {
    padding: 28px 28px 24px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0;
}
@media (max-width: 767px) {
    .pdp-info-col { padding: 16px 16px 80px; }
}

/* Product title */
.pdp-name {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

/* Rating */
.pdp-rating-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #888;
}
.pdp-rating-stars { color: #ffc107; letter-spacing: -1px; font-size: 0.9rem; }
.pdp-rating-stars .empty { color: #ddd; }
.pdp-rating-count { color: #aaa; text-decoration: underline; cursor: pointer; }

/* Price row */
.pdp-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.pdp-price-main {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.pdp-price-main .pdp-currency {
    font-size: 1rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 2px;
}
.pdp-price-old {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: line-through;
}
.pdp-indirim-badge {
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.04em;
}

/* Delivery Estimate Box */
.pdp-delivery-estimate-box {
    margin: -4px 0 16px;
    font-size: 0.95rem;
    color: #0f172a;
    line-height: 1.45;
}
.pdp-delivery-estimate-text {
    font-size: 0.95rem;
    color: #0f172a;
}
.pdp-delivery-estimate-text strong {
    font-weight: 700;
    color: #0f172a;
}
.pdp-delivery-details-link {
    display: inline-block;
    color: #007185;
    text-decoration: underline;
    font-size: 0.88rem;
    margin-top: 2px;
    cursor: pointer;
    transition: color 0.15s;
}
.pdp-delivery-details-link:hover {
    color: #c7511f;
}

/* Production note box */
.pdp-note-box {
    background: #faf8fa;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.84rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
    border: 1px solid #eee6ec;
}
.pdp-note-box p { margin: 0 0 5px; }
.pdp-note-box p:last-child { margin-bottom: 0; }
.pdp-note-box a { color: var(--primary); font-weight: 600; }

/* ── Color Section ── */
.pdp-section-head {
    font-size: 0.75rem;
    font-weight: 800;
    color: #333;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.pdp-color-circles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.pdp-color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.pdp-color-circle {
    position: relative;
    width: 56px;
    height: 56px;
    /* border-radius: 50%; */
    overflow: hidden;
    transition: border-color 0.18s, box-shadow 0.18s;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pdp-color-item.out-of-stock {
    opacity: 0.88;
}
.pdp-color-item.out-of-stock .pdp-color-circle {
    box-shadow: inset 0 0 0 2px #fca5a5;
}
.pdp-stock-overlay-x {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.45);
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #dc2626;
    line-height: 1;
    user-select: none;
}
.pdp-color-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pdp-color-circle.no-img {
    font-size: 1.3rem;
}
.pdp-color-item.selected .pdp-color-circle {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary);
}
.pdp-color-name {
    font-size: 0.68rem;
    color: #666;
    text-align: center;
    line-height: 1.2;
    max-width: 62px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pdp-color-item.selected .pdp-color-name {
    color: var(--primary);
    font-weight: 700;
}

/* Hidden color input */
#pdpSelectedColor { display: none; }

/* ── Measurement Section ── */
.pdp-measure-section {
    margin-bottom: 16px;
}

.pdp-measure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}
@media (max-width: 480px) {
    .pdp-measure-grid { grid-template-columns: 1fr; }
}

.pdp-mfield {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.pdp-mfield label {
    font-size: 0.77rem;
    font-weight: 600;
    color: #444;
    line-height: 1.3;
}
.pdp-mfield label .req { color: var(--primary); margin-left: 2px; }

/* Select field */
.pdp-select {
    width: 100%;
    padding: 9px 32px 9px 12px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 0.88rem;
    color: #333;
    background: #fff url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%23888'/></svg>") no-repeat right 10px center;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.18s;
    font-family: var(--font-body);
}
.pdp-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,0,126,0.1); }

/* Input with cm suffix */
.pdp-input-cm-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.pdp-input-cm {
    width: 100%;
    padding: 9px 38px 9px 12px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 0.88rem;
    color: #333;
    font-family: var(--font-body);
    transition: border-color 0.18s;
    background: #fff;
}
.pdp-input-cm:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,0,126,0.1); }
.pdp-input-cm-unit {
    position: absolute;
    right: 10px;
    font-size: 0.75rem;
    color: #aaa;
    font-weight: 600;
    pointer-events: none;
}

/* Plain text input */
.pdp-input-text {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 0.88rem;
    color: #333;
    font-family: var(--font-body);
    transition: border-color 0.18s;
    background: #fff;
}
.pdp-input-text:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,0,126,0.1); }

/* Textarea */
.pdp-textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 0.88rem;
    color: #333;
    font-family: var(--font-body);
    transition: border-color 0.18s;
    background: #fff;
    resize: vertical;
    min-height: 72px;
}
.pdp-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,0,126,0.1); }

/* WhatsApp help note */
.pdp-wa-help {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.8rem;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.pdp-wa-help a { color: #25d366; font-weight: 700; text-decoration: underline; }

/* ── Adet + CTA row ── */
.pdp-cta-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.pdp-adet-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    flex-shrink: 0;
}
.pdp-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.pdp-qty-btn {
    width: 34px; height: 40px;
    background: #f5f5f5;
    border: none;
    font-size: 1.1rem;
    color: #444;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
    flex-shrink: 0;
}
.pdp-qty-btn:hover { background: #ebebeb; }
.pdp-qty-input {
    width: 38px; height: 40px;
    border: none; border-left: 1.5px solid #ddd; border-right: 1.5px solid #ddd;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    color: #333;
    background: #fff;
    -moz-appearance: textfield;
}
.pdp-qty-input::-webkit-inner-spin-button,
.pdp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Sepete Ekle */
.pdp-btn-sepete {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0 22px;
    height: 44px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, transform 0.12s;
    font-family: var(--font-body);
    white-space: nowrap;
    flex-shrink: 0;
}
.pdp-btn-sepete:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.pdp-btn-sepete:active { transform: scale(0.97); }

/* Hemen Al */
.pdp-btn-hemen {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: #333;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0 18px;
    height: 44px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.18s, background 0.18s;
    font-family: var(--font-body);
    white-space: nowrap;
    flex-shrink: 0;
}
.pdp-btn-hemen:hover { border-color: var(--primary); color: var(--primary); background: #fff5fb; }

/* Heart / Favori */
.pdp-btn-heart {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    color: #bbb;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
    flex-shrink: 0;
}
.pdp-btn-heart:hover { border-color: var(--primary); color: var(--primary); background: #fff5fb; }
.pdp-btn-heart.active { border-color: var(--primary); color: var(--primary); background: #fff0f8; }

.pdp-favorite-link {
    font-size: 0.78rem;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}
.pdp-favorite-link:hover { color: var(--primary); }

/* ── Tabs ── */
.pdp-tabs-wrap {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-top: 12px;
}
.pdp-tab-nav {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    overflow-x: auto;
    scrollbar-width: none;
}
.pdp-tab-nav::-webkit-scrollbar { display: none; }
.pdp-tab-btn {
    flex-shrink: 0;
    padding: 15px 22px;
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -2px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: color 0.18s, border-color 0.18s;
    white-space: nowrap;
    font-family: var(--font-body);
}
.pdp-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.pdp-tab-btn:hover:not(.active) { color: #555; }
.pdp-tab-content {
    padding: 24px;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.8;
    min-height: 80px;
}
.pdp-tab-panel { display: none; }
.pdp-tab-panel.active { display: block; }

/* Tab: Özellikler table */
.pdp-features-table { width: 100%; border-collapse: collapse; }
.pdp-features-table tr:nth-child(even) { background: #fafafa; }
.pdp-features-table td { padding: 10px 14px; border-bottom: 1px solid #f0f0f0; font-size: 0.85rem; }
.pdp-features-table td:first-child { font-weight: 600; color: #333; width: 40%; }

/* Tab: Teslimat */
.pdp-delivery-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pdp-delivery-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: #444; }
.pdp-delivery-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); flex-shrink: 0; font-size: 0.85rem; }

/* Tab: Ölçü rehberi */
.pdp-measure-guide img { max-width: 100%; border-radius: 8px; }
.pdp-measure-text-guide {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pdp-measure-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
.pdp-measure-badge {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--primary);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}
.pdp-measure-info {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
}
.pdp-measure-info strong {
    color: #0f172a;
    font-weight: 700;
}

/* Tab: Yorumlar */
.pdp-review-card {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.pdp-review-card:last-of-type { border-bottom: none; }
.pdp-review-top { display: flex; justify-content: space-between; margin-bottom: 4px; }
.pdp-review-author { font-size: 0.85rem; font-weight: 700; color: #222; }
.pdp-review-date { font-size: 0.73rem; color: #bbb; }
.pdp-review-stars { font-size: 0.82rem; color: #ffc107; margin-bottom: 4px; }
.pdp-review-stars .empty { color: #ddd; }
.pdp-review-text { font-size: 0.85rem; color: #555; line-height: 1.6; }

/* ── Related / Recently Viewed ── */
.pdp-related {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-top: 12px;
    padding: 22px 24px;
    margin-bottom: 24px;
}
.pdp-related-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-family: var(--font-body);
}

.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 480px) { .pdp-related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .pdp-related-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .pdp-related-grid { grid-template-columns: repeat(6, 1fr); } }

.pdp-related-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #eee;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
}
.pdp-related-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.pdp-related-card-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.pdp-related-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-related-card-info { padding: 8px 10px; }
.pdp-related-card-name {
    font-size: 0.75rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}
.pdp-related-card-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

/* ── Mobile Sticky CTA ── */
.pdp-mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 10px 16px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
@media (max-width: 767px) { .pdp-mobile-sticky { display: flex; } }

.pdp-sticky-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    align-self: center;
}
.pdp-sticky-add {
    flex: 1;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    height: 46px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    text-decoration: none;
}
.pdp-sticky-add:hover { background: var(--primary-dark); color: #fff; }
.pdp-sticky-wa {
    width: 46px; height: 46px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.pdp-sticky-wa:hover { background: #1da851; }

/* Review form */
.pdp-review-form-wrap {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}
.pdp-review-form-wrap h4 { font-size: 0.9rem; font-weight: 700; color: #1a1a1a; margin-bottom: 14px; }

/* Out of stock */
.pdp-out-of-stock-msg {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #b91c1c;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}

/* Guide modal */
.pdp-modal-overlay {
    display: none;
    position: fixed; inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
}
.pdp-modal-overlay.open { display: flex; }
.pdp-modal {
    background: #fff;
    border-radius: 14px;
    max-width: 520px; width: 92%;
    max-height: 88vh;
    display: flex; flex-direction: column;
    animation: pdpModalIn 0.28s ease;
    overflow: hidden;
}
@keyframes pdpModalIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.pdp-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    border-bottom: 1px solid #eee;
}
.pdp-modal-head h3 { margin: 0; font-size: 0.97rem; color: var(--primary); font-family: var(--font-body); }
.pdp-modal-close { background: none; border: none; font-size: 1.4rem; color: #999; cursor: pointer; line-height: 1; }
.pdp-modal-body { overflow-y: auto; padding: 16px 18px; flex: 1; }
.pdp-modal-body img { width: 100%; border-radius: 8px; }

/* =================================================
   PRODUCT CAROUSEL (Ana Sayfa)
   ================================================= */
.product-carousel-section {
    background: #fdf7fb;
    padding: 45px 0 38px;
    border-bottom: 1px solid #f0e6ed;
    overflow: hidden;
}
.product-carousel-section .section-title {
    margin-bottom: 8px;
}
.section-title-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.section-title-link:hover {
    color: var(--primary);
}
.product-carousel-section .section-subtitle {
    margin-bottom: 28px;
}
.product-carousel-cta-wrap {
    text-align: center;
    margin-top: 24px;
}
.product-carousel-cta-wrap .btn-primary {
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(230, 0, 126, 0.25);
}
.product-carousel-cta-wrap .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(230, 0, 126, 0.35);
    transform: translateY(-2px);
}

.product-carousel-track-wrap {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}
.product-carousel-track-wrap:active,
.product-carousel-track-wrap.is-dragging {
    cursor: grabbing;
}
.product-carousel-track {
    display: flex;
    gap: 16px;
    padding: 0 28px 4px;
    will-change: transform;
    width: max-content;
    user-select: none;
    -webkit-user-select: none;
}

.product-carousel-item {
    flex-shrink: 0;
    width: 200px;
    user-select: none;
    -webkit-user-select: none;
}
.product-carousel-item img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}
@media (max-width: 480px) {
    .product-carousel-item { width: 160px; }
    .product-carousel-track { padding: 0 16px 4px; gap: 12px; }
}
.product-carousel-link {
    display: block;
    text-decoration: none;
    background: #fff;
    -webkit-user-drag: none;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0e6ed;
    box-shadow: 0 2px 8px rgba(184,0,101,0.05);
    transition: box-shadow 0.22s, transform 0.22s;
}
.product-carousel-link:hover {
    box-shadow: 0 6px 22px rgba(184,0,101,0.13);
    transform: translateY(-3px);
}
.product-carousel-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f0f5;
}
.product-carousel-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.32s ease;
}
.product-carousel-link:hover .product-carousel-img-box img {
    transform: scale(1.05);
}
.product-carousel-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    background: #fdf0f8;
}
.product-carousel-info {
    padding: 10px 12px 12px;
}
.product-carousel-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 4px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-carousel-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.product-carousel-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    transition: background 0.18s;
}
.product-carousel-link:hover .product-carousel-btn {
    background: var(--primary-dark);
}

/* =================================================
   PDP — Tab Panel Mobile Fixes
   ================================================= */
@media (max-width: 767px) {
    .pdp-tabs-wrap {
        border-radius: 0;
        margin: 12px -0px 0;
        box-shadow: none;
        border-top: 1px solid #f0f0f0;
    }
    .pdp-tab-nav {
        padding: 0 4px;
    }
    .pdp-tab-btn {
        padding: 12px 14px;
        font-size: 0.82rem;
    }
    .pdp-tab-content {
        padding: 16px;
        font-size: 0.84rem;
    }
    .pdp-features-table td {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    /* Thumbs on mobile */
    .pdp-thumbs {
        display: flex !important;
    }
    .pdp-wrap {
        padding: 12px 0 0;
    }
    .pdp-grid {
        border-radius: 0;
        box-shadow: none;
    }
    /* Related products */
    .pdp-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    /* Measure grid single col */
    .pdp-measure-grid {
        grid-template-columns: 1fr;
    }
    /* Note box smaller */
    .pdp-note-box {
        font-size: 0.78rem;
        padding: 10px 12px;
    }
}
