/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;700&display=swap');

:root {
    /* Colors */
    --primary-blue: #0f172a;    /* Slate 900 */
    --verified-blue: #2563eb;   /* Blue 600 */
    --accent-blue: #3b82f6;     /* Blue 500 */
    --dark-bg: #020617;         /* Slate 950 */
    --light-bg: #f8fafc;        /* Slate 50 */
    --surface: #ffffff;
    --text-main: #1e293b;       /* Slate 800 */
    --text-muted: #64748b;      /* Slate 500 */
    --border: #e2e8f0;          /* Slate 200 */
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Brand Colors (New) */
    --brand-yellow: #FFD700;    /* Industrial Yellow */
    --brand-black: #111111;     /* Industrial Black */
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --industrial-gradient: linear-gradient(135deg, var(--brand-black) 0%, #2a2a2a 100%);
    
    /* Spacing */
    --container-width: 1280px;
    --header-height: 80px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #e2e8f0; /* Desktop background */
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Mobile App Wrapper Simulation */
.app-wrapper {
    width: 100%;
    max-width: 480px; /* Mobile width constraint */
    background-color: var(--surface);
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    overflow-x: hidden;
    transform: translate(0); /* Contain fixed elements like header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-blue);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    padding: 0 20px; /* Adjusted padding for mobile */
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
    gap: 16px; /* Reduced gap for mobile */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; /* Slightly smaller buttons */
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--verified-blue);
    color: white;
}

.btn-accent:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Header */
.main-header {
    height: var(--header-height);
    background: linear-gradient(to right, rgba(241, 245, 249, 0.95), rgba(255, 255, 255, 0.95)); /* Subtle gradient */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Enhanced shadow */
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 480px; /* Match app wrapper width */
    z-index: 1000;
}

.main-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
	background-color: #fff;
}

.logo img {
    height: 27px;
}



/* Mobile Navigation - Premium Full Screen Overlay */
.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 998;
    
    /* Animation State */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--verified-blue);
}

/* Menu Toggle Button */
.mobile-toggle {
    display: block; /* Always visible in app mode */
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-blue);
    z-index: 999;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Simplified Corporate Footer */
.footer {
    background: #f8fafc; /* Deepest black for premium feel */
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    height: 80px;
    opacity: 1;
    transition: opacity 0.3s;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
    flex-wrap: wrap; /* Handle very small screens */
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1; /* Soft white/grey */
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item i {
    color: var(--brand-yellow);
    font-size: 1.1rem;
}

.footer-contact-item:hover {
    color: white;
}

.footer-divider {
    color: #475569;
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.copyright-text {
    color: #64748b;
    font-size: 0.85rem;
}

/* Mobile Tweaks for Footer */
@media (max-width: 480px) {
    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }
    .footer-divider {
        display: none;
    }
}

/* --- About Us Page --- */
.page-header {
    background: var(--brand-black);
    padding: 120px 20px 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 2.5rem;
    color: var(--brand-yellow);
    margin-bottom: 16px;
}

.page-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.industrial-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 215, 0, 0.05) 10px, rgba(255, 215, 0, 0.05) 20px);
}

.about-content {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* --- Sipariş Teşekkür Sayfası --- */
.tesekkur-card {
    background: white;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.tesekkur-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 20px;
    line-height: 1;
}
.tesekkur-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--brand-black);
    margin-bottom: 12px;
}
.tesekkur-text {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}
.tesekkur-siparis-no {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 28px;
}
.tesekkur-siparis-no strong {
    color: var(--brand-black);
}
.btn-tesekkur {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--brand-black);
    color: var(--brand-yellow);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-tesekkur:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- Sipariş Sorgula Sayfası --- */
.siparis-sorgula-content {
    max-width: 560px;
    margin: 0 auto;
}
.siparis-sorgula-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.siparis-sorgula-label {
    display: block;
    font-weight: 600;
    color: var(--brand-black);
    margin-bottom: 10px;
    font-size: 1rem;
}
.siparis-sorgula-input-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.siparis-sorgula-input {
    flex: 1;
    min-width: 180px;
}
.siparis-sorgula-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--brand-black);
    color: var(--brand-yellow);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.siparis-sorgula-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.siparis-sorgula-sonuc {
    background: var(--surface);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
}
.siparis-sorgula-hata .siparis-sorgula-sonuc-icon {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 16px;
}
.siparis-sorgula-sonuc-baslik {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    color: var(--brand-black);
    margin-bottom: 10px;
}
.siparis-sorgula-sonuc-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}
.siparis-sorgula-bulundu {
    text-align: left;
}
.siparis-sorgula-durum-wrap {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.siparis-sorgula-durum-baslik {
    font-weight: 600;
    color: var(--text-muted);
}
.siparis-durum-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}
.siparis-durum-beklemede { background: #fef3c7; color: #92400e; }
.siparis-durum-onaylandi { background: #dbeafe; color: #1e40af; }
.siparis-durum-kargoda { background: #e0e7ff; color: #3730a3; }
.siparis-durum-teslim { background: #d1fae5; color: #065f46; }
.siparis-durum-iptal { background: #fee2e2; color: #991b1b; }
.siparis-sorgula-ozet-baslik {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: var(--brand-black);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.siparis-sorgula-ozet-baslik i {
    color: var(--brand-yellow);
}
.siparis-sorgula-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.siparis-sorgula-table tr {
    border-bottom: 1px solid var(--border);
}
.siparis-sorgula-table tr:last-child {
    border-bottom: 0;
}
.siparis-sorgula-table-label {
    color: var(--text-muted);
    padding: 10px 0;
    width: 120px;
    vertical-align: top;
}
.siparis-sorgula-table-deger {
    color: var(--text-main);
    padding: 10px 0;
}
.siparis-sorgula-tutar {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}
@media (max-width: 480px) {
    .siparis-sorgula-input-wrap {
        flex-direction: column;
    }
    .siparis-sorgula-btn {
        width: 100%;
        justify-content: center;
    }
}

.about-hero {
    margin-bottom: 48px;
}

.hero-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.section-heading {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--brand-black);
}

.text-content {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-yellow);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.vision-mission {
    background: var(--brand-black);
    color: white;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.vm-title {
    color: var(--brand-yellow);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.vm-text {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.vm-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.03);
}

/* --- Footer Tweaks --- */
.footer-logo-wrapper {
    display: inline-block;
    margin-bottom: 24px;
}
.footer-logo-img {
    height: 27px;
    margin: 0 auto;
	border-radius: 5px;
}
.footer-contact-item {
    margin-bottom: 12px;
    color: #262626;
}
.footer-icon {
    color: var(--verified-blue);
    margin-right: 8px;
}
.footer-social-wrapper {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}
.footer-bottom-wrapper {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.copyright-text {
    font-size: 0.85rem;
    color: #64748b;
}


/* --- Cargo Process Page --- */
.cargo-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.process-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 215, 0, 0.3);
}

.process-icon-box {
    width: 64px;
    height: 64px;
    background: var(--brand-black);
    color: var(--brand-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.process-title {
    font-size: 1.25rem;
    color: var(--brand-black);
    margin-bottom: 12px;
    font-weight: 700;
}

.process-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-desc strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.cargo-note {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.note-icon {
    font-size: 24px;
    color: var(--verified-blue);
    margin-top: 2px;
}

.cargo-note p {
    color: var(--text-main);
    font-size: 0.9rem;

    line-height: 1.6;
}

/* --- Contact Us Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: block; /* Make anchors block level */
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: var(--brand-yellow);
    box-shadow: var(--shadow-md);
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--brand-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.contact-title {
    font-size: 1.1rem;
    color: var(--brand-black);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-detail {
    color: var(--text-muted);
    font-size: 0.95rem;
    word-break: break-word; /* Prevent overflow */
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    border: 1px solid var(--border);
    height: 300px; /* Fixed height container */
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.support-message {
    background: var(--brand-black);
    color: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column; /* Stack mostly on mobile */
    gap: 16px;
    text-align: center;
    align-items: center;
}

.support-icon {
    font-size: 48px; /* Larger icon */
    color: var(--brand-yellow);
    line-height: 1;
}

.support-title {
    color: var(--brand-yellow);
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.support-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Dealer Application Form --- */
.dealer-form-wrapper {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 32px;
    text-align: center;
}

.form-title {
    font-size: 1.5rem;
    color: var(--brand-black);
    margin-bottom: 8px;
}

.form-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.industrial-form .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
/* Removed multi-column layout for mobile optimization */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-black);
    font-weight: 600;
    font-size: 0.9rem;
}

.required {
    color: #ef4444;
}

.hint {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.85rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper .input-icon {
    top: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-yellow);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: var(--brand-black); /* Corporate Black */
    color: var(--brand-yellow);     /* Yellow Text */
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-submit:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Alerts */
.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


.home-content
{
    padding-top:70px;
    padding-bottom:70px;
}

/* --- Products Section --- */
.products-section {
    padding: 60px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-yellow);
    margin: 16px auto 0;
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 0 16px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-image-wrapper {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background: #f1f5f9;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.no-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 3rem;
}

.product-colors {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.color-tag {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-black);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    /*color: var(--brand-black);*/
    color: #264e8a;
    margin-bottom: 8px;
}

.product-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.product-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #94a3b8;
}

.btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    /*background: var(--brand-black);*/
    background: #5abedd;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn-order i {
    font-size: 1.2em;
}

/* --- Product Detail Page --- */
.product-detail-page {
    padding-top: 20px;
    padding-bottom: 60px;
    background: #f8fafc;
}

.product-info-section {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.detail-image-wrapper {
    width: 100%;
    position: relative;
    background: #f1f5f9;
}

.detail-image {
    width: 100%;
    height: auto;
    display: block;
}

.detail-content {
    padding: 24px;
}

.detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #264e8a;
    margin-bottom: 12px;
}

.detail-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.detail-current-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.detail-old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: #94a3b8;
}

.detail-description {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Order Form Styling --- */
.order-form-section {
    background: white;
    border-radius: 16px;
    padding: 0 24px 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Sayfa başlığı - Sipariş Bilgileriniz */
.order-page-title-wrap {
    background: var(--brand-black);
    margin: 0 -24px 24px -24px;
    padding: 20px 24px;
    position: relative;
}
.order-page-title-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--brand-yellow);
    border-radius: 0 2px 0 0;
}
.order-page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-yellow);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Ürün seçenekleri - kurumsal blok */
.product-options-block {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--brand-yellow);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}
.product-options-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.product-options-inner {
    margin-bottom: 0;
}
.product-variant-select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    background: var(--surface);
    transition: all 0.3s ease;
    cursor: pointer;
}
.product-variant-select:focus {
    outline: none;
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}
.product-variant-select option {
    background: white;
    color: var(--text-main);
}

.form-header-title {
    font-size: 1.25rem; /* ~20px */
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: var(--brand-black); /* Matching theme instead of hardcoded green if possible, or use user's */
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

.payment-title {
    background-color: var(--primary-blue);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #283458;
    margin-bottom: 8px;
}

.custom-input, .custom-select, .custom-textarea, .custom-select-color {
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.custom-input:focus, .custom-select:focus, .custom-textarea:focus, .product-variant-select:focus {
    border-color: var(--brand-yellow);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
    outline: none;
}

/* Split Row for City/District */
.split-row {
    display: flex;
    gap: 15px;
}

.col-half {
    flex: 1;
}

.address-box {
    height: 80px;
}

.submit-btn {
    display: block;
    width: 100%;
    background: #5fbd0f; /* User's green */
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(95, 189, 15, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #52a60d;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(95, 189, 15, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .detail-title {
        font-size: 1.3rem;
    }
    .detail-current-price {
        font-size: 1.6rem;
    }
}

/* Mobile Tweaks */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-price-wrapper {
        justify-content: space-between;
    }
}