:root {
    --brand-red: #c5091f;
    --brand-red-dark: #930414;
    --brand-green: #0b572b;
    --brand-green-light: #167d3e;
    --warm-beige: #f8f3e7;
    --sand: #f2e6cf;
    --deep-brown: #2c211a;
    --soft-white: #fffbf5;
    --muted: #6f655d;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Noto Serif', serif;
    background: radial-gradient(circle at 20% 20%, rgba(245, 214, 178, 0.35), transparent), var(--warm-beige);
    color: var(--deep-brown);
    line-height: 1.6;
}

.texture-bg {
    background-image: linear-gradient(140deg, rgba(255, 247, 236, 0.96), rgba(197, 9, 31, 0.08));
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--earth-brown);
}

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

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    background: linear-gradient(135deg, rgba(197, 9, 31, 0.9), rgba(147, 4, 20, 0.85));
    color: var(--soft-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

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

.brand-emblem {
    width: 200px;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.brand-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.05);
}

.brand-link:hover .brand-emblem {
    filter: brightness(1.1);
}

.brand-link:hover .brand-emblem-pdf {
    transform: scale(1.05);
}

.brand-emblem-pdf {
    width: 200px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    color: var(--soft-white);
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 12px rgba(197, 9, 31, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.brand-logo {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 12px;
    background: var(--soft-white);
    color: var(--brand-red);
    display: grid;
    place-items: center;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.brand-title {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--soft-white);
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.85rem;
    color: rgba(255, 251, 245, 0.85);
    max-width: 16rem;
    line-height: 1.3;
}

.site-nav {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
}

.site-nav a {
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    transition: background 0.3s, color 0.3s;
    color: var(--soft-white);
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(10, 69, 37, 0.25);
    color: var(--soft-white);
}

.nav-admin {
    color: var(--earth-brown);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 1.6rem;
    height: 2px;
    background: var(--earth-brown);
}

.hero {
    padding: 4.5rem 0;
    background: linear-gradient(160deg, rgba(197, 9, 31, 0.85), rgba(11, 87, 43, 0.45));
    color: var(--soft-white);
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-offer {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero blockquote {
    background: rgba(255, 251, 245, 0.12);
    border-left: 4px solid rgba(255, 251, 245, 0.6);
    padding: 1.6rem 1.8rem;
    margin: 0 0 1.6rem;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
}

.section {
    padding: 3.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2,
.section-header h1 {
    color: var(--earth-brown);
    margin: 0;
}

.section-header p {
    color: var(--muted);
}

.reference-banner {
    background: rgba(255, 251, 245, 0.8);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(197, 9, 31, 0.1);
    text-align: center;
}

.reference-banner p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--deep-brown);
    line-height: 1.6;
}

.reference-examples {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(197, 9, 31, 0.2);
}

.reference-examples h3 {
    color: var(--brand-red);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.reference-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.reference-list span {
    background: rgba(197, 9, 31, 0.08);
    color: var(--deep-brown);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    border: 1px solid rgba(197, 9, 31, 0.15);
    transition: all 0.3s ease;
}

.reference-list span:hover {
    background: rgba(197, 9, 31, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 9, 31, 0.2);
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.reference-card {
    background: rgba(255, 251, 245, 0.95);
    border: 2px solid rgba(197, 9, 31, 0.1);
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.reference-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 9, 31, 0.3);
    box-shadow: 0 12px 32px rgba(197, 9, 31, 0.15);
}

.reference-card h3 {
    color: var(--brand-red);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.reference-card p {
    color: var(--deep-brown);
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-grid.full {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
    background: rgba(255, 251, 245, 0.92);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0.8rem;
    border: 2px solid rgba(197, 9, 31, 0.08);
}

.product-card img {
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    color: var(--soft-white);
    box-shadow: 0 12px 24px rgba(11, 87, 43, 0.28);
}

.btn-secondary {
    background: rgba(255, 251, 245, 0.16);
    color: var(--soft-white);
}

.btn-whatsapp {
    background: var(--brand-green-light);
    color: var(--soft-white);
}

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

.search-form {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(138,69,19,0.3);
    font-family: inherit;
}

.detail-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.detail-info h1 {
    color: var(--earth-brown);
}

.detail-price {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.detail-whatsapp {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    padding: 0.9rem 1.6rem;
}

.similar {
    background: rgba(244, 164, 96, 0.15);
}

.similar .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.similar h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--deep-brown);
    font-size: 1.8rem;
    font-weight: 700;
}

.about-section {
    background: linear-gradient(150deg, rgba(31, 42, 68, 0.75), rgba(203, 163, 92, 0.2));
    color: var(--soft-white);
}

.about-grid {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.about-text-card {
    display: grid;
    gap: 1.5rem;
}

.about-image-card img {
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(18, 25, 42, 0.35);
}

.about-section h1 {
    margin: 0;
    font-size: clamp(2.3rem, 4vw, 3.1rem);
}

.about-quote {
    background: rgba(255, 253, 248, 0.12);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid rgba(203, 163, 92, 0.7);
    font-style: italic;
    line-height: 1.8;
}

.about-hero-image {
    margin: 2rem 0;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 0 auto;
}

.about-highlights {
    background: rgba(255, 251, 245, 0.95);
}

.highlight-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.highlight-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(197, 9, 31, 0.1);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 9, 31, 0.3);
    box-shadow: 0 12px 32px rgba(197, 9, 31, 0.15);
}

.highlight-card h3 {
    color: var(--brand-red);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-card p {
    color: var(--deep-brown);
    line-height: 1.6;
}

.reference-section {
    background: rgba(197, 9, 31, 0.05);
}

.craft-section {
    background: linear-gradient(135deg, rgba(11, 87, 43, 0.1), rgba(197, 9, 31, 0.05));
}

.craft-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
}

.craft-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.craft-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.craft-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(197, 9, 31, 0.2);
    color: var(--deep-brown);
    font-weight: 500;
}

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

.craft-list li::before {
    content: "✓";
    color: var(--brand-green);
    font-weight: bold;
    margin-right: 0.8rem;
}

.reference-list {
    list-style: square;
    padding-left: 1.2rem;
}

.contact-section .contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.contact-form-card,
.contact-info {
    background: rgba(255, 249, 240, 0.95);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    font-family: inherit;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(138,69,19,0.3);
    resize: vertical;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    gap: 0.5rem;
}

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

.site-footer {
    background: linear-gradient(180deg, #140607, #270b0f);
    color: var(--soft-white);
    padding: 2.5rem 0;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.9;
}

.alert {
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(37, 211, 102, 0.15);
    color: #0f8f4b;
}

.alert-error {
    background: rgba(169, 50, 38, 0.15);
    color: #7b221c;
}

/* Admin */
.admin-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: linear-gradient(185deg, #1a2338, #2d3a52);
    color: var(--soft-white);
    padding: 2rem 1.4rem;
    display: grid;
    gap: 2rem;
    border-right: 3px solid var(--brand-red);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.sidebar-brand {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.admin-sidebar nav {
    display: grid;
    gap: 0.8rem;
}


.admin-sidebar a {
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    color: inherit;
    transition: background 0.25s;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: rgba(197, 9, 31, 0.3);
    color: var(--soft-white);
    font-weight: 600;
    transform: translateX(5px);
}

.admin-content {
    padding: 2rem 2.5rem;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    color: #2c3e50;
    font-weight: 500;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--brand-red);
}

.admin-header h1 {
    color: #1a2338;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: rgba(203, 163, 92, 0.14);
    border-radius: 16px;
    padding: 1.5rem;
    display: grid;
    gap: 0.4rem;
    box-shadow: 0 12px 30px rgba(18, 25, 42, 0.12);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--earth-brown);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 253, 248, 0.92);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(18, 25, 42, 0.1);
}

.admin-table th,
.admin-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    background: rgba(197, 9, 31, 0.18);
    color: var(--deep-brown);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.thumb {
    border-radius: 12px;
}

.inline-form {
    display: inline;
}

.admin-toolbar {
    margin-bottom: 2rem;
}

.admin-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    border: 2px solid var(--brand-red);
}

.admin-form h2 {
    color: #1a2338;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-red);
}

.form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.form-grid .full {
    grid-column: 1 / -1;
}

.form-info {
    background: rgba(197, 9, 31, 0.08);
    border: 1px solid rgba(197, 9, 31, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-info h3 {
    color: var(--brand-red);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.form-info p {
    margin: 0.5rem 0;
    color: var(--deep-brown);
}

.form-info code {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(197, 9, 31, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.stat-card {
    background: rgba(255, 251, 245, 0.9);
    border: 1px solid rgba(197, 9, 31, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 9, 31, 0.15);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--deep-brown);
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    font-family: inherit;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(197, 9, 31, 0.2);
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.3s ease;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(197, 9, 31, 0.1);
}

.admin-form small {
    display: block;
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.admin-form select {
    cursor: pointer;
}

.admin-form select option {
    padding: 0.5rem;
}

.admin-auth {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-container {
    width: min(420px, 92%);
}

.auth-card {
    background: rgba(255, 249, 240, 0.96);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 1rem;
}

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

.form-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 1rem;
    }

    /* Mobile Hero */
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .hero-offer {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0.8rem;
    }

    .header-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 0;
        width: 100%;
    }

    .brand {
        gap: 0.4rem;
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 120px);
    }

    .brand-emblem {
        width: 140px;
        height: auto;
        flex-shrink: 0;
        object-fit: contain;
    }

    .brand-emblem-pdf {
        width: 140px;
        height: 60px;
        flex-shrink: 0;
        font-size: 0.8rem;
    }

    .brand-text {
        display: flex;
        flex-direction: column;
        gap: 0.05rem;
        flex: 1;
        min-width: 0;
    }

    .brand-title {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--soft-white);
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-sub {
        font-size: 0.6rem;
        color: rgba(255, 251, 245, 0.85);
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        display: flex;
    }

    .site-nav.open {
        transform: translateX(0);
    }

    .site-nav a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 12px;
        background: rgba(197, 9, 31, 0.2);
        border: 2px solid rgba(197, 9, 31, 0.3);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        color: var(--soft-white);
        text-decoration: none;
        font-weight: 600;
    }

    .site-nav a:hover,
    .site-nav a.active {
        background: rgba(197, 9, 31, 0.4);
        border-color: rgba(197, 9, 31, 0.6);
        transform: scale(1.05);
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        transition: all 0.3s ease;
    }

    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .nav-toggle span {
        width: 1.8rem;
        height: 3px;
        background: var(--soft-white);
        transition: all 0.3s ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero Section Mobile */
    .hero {
        padding: 2rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero blockquote {
        padding: 1.2rem;
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    /* Section Mobile */
    .section {
        padding: 2rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Product Grid Mobile */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .product-card {
        padding: 1.2rem;
        text-align: center;
    }

    .product-card img {
        width: 100%;
        height: auto;
        max-width: 200px;
        margin: 0 auto 1rem;
    }

    .product-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        color: var(--brand-red);
    }

    .product-card p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .product-card strong {
        display: block;
        font-size: 1.1rem;
        color: var(--brand-green);
        margin-bottom: 1rem;
    }

    /* Reference Banner Mobile */
    .reference-banner {
        text-align: center;
        padding: 1.5rem;
        background: rgba(255, 251, 245, 0.8);
        border-radius: 16px;
        border: 2px solid rgba(197, 9, 31, 0.1);
    }

    .reference-banner p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: var(--deep-brown);
        line-height: 1.6;
    }

    .reference-examples {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 2px solid rgba(197, 9, 31, 0.2);
    }

    .reference-examples h3 {
        color: var(--brand-red);
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 600;
    }

    /* Reference List Mobile */
    .reference-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .reference-list span {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        background: rgba(197, 9, 31, 0.08);
        color: var(--deep-brown);
        border-radius: 8px;
        text-align: center;
        font-weight: 500;
        border: 1px solid rgba(197, 9, 31, 0.15);
        transition: all 0.3s ease;
    }

    .reference-list span:hover {
        background: rgba(197, 9, 31, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(197, 9, 31, 0.2);
    }

    /* Buttons Mobile */
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Contact Form Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-card,
    .contact-info {
        padding: 1.5rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    /* About Page Mobile */
    .about-grid {
        max-width: 100%;
        padding: 0 1rem;
    }

    .about-image-card img {
        width: 100%;
        height: auto;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-hero-image {
        margin: 1.5rem 0;
        border-radius: 15px;
    }

    .about-hero-image img {
        max-width: 100%;
        height: auto;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 1.5rem;
        text-align: center;
    }

    .reference-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reference-card {
        padding: 1.5rem;
        text-align: center;
    }

    .craft-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .craft-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .craft-list {
        text-align: left;
        padding-left: 1rem;
    }

    /* Search Form Mobile */
    .search-form {
        flex-direction: column;
        gap: 0.8rem;
    }

    .search-form input[type="search"] {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .search-form button {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    /* Detail Page Mobile */
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .detail-image img {
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto;
    }

    .detail-info h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .detail-price {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .detail-whatsapp {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .admin-sidebar {
        position: sticky;
        top: 0;
        flex-direction: row;
        overflow-x: auto;
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        min-height: auto;
    }

    .admin-sidebar nav {
        display: flex;
        gap: 0.5rem;
    }

    .admin-sidebar a {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .admin-content {
        padding: 1rem;
    }

    .admin-form {
        padding: 1.5rem;
    }

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

    .admin-table {
        overflow-x: auto;
    }

    .admin-table table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 0 0.5rem;
    }

    .brand-emblem {
        width: 120px;
        height: auto;
        object-fit: contain;
    }

    .brand-emblem-pdf {
        width: 120px;
        height: 50px;
        font-size: 0.7rem;
    }

    .brand-text {
        gap: 0.02rem;
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 0;
    }

    .brand-title {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--soft-white);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-sub {
        font-size: 0.55rem;
        color: rgba(255, 251, 245, 0.85);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero blockquote {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-card img {
        max-width: 150px;
    }

    .product-card h3 {
        font-size: 1rem;
    }

    .product-card p {
        font-size: 0.85rem;
    }

    .product-card strong {
        font-size: 1rem;
    }

    .reference-banner {
        padding: 1rem;
    }

    .reference-banner p {
        font-size: 0.9rem;
    }

    .reference-examples h3 {
        font-size: 1.1rem;
    }

    .reference-list span {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .about-hero-image {
        margin: 1rem 0;
        border-radius: 12px;
    }

    .detail-image img {
        max-width: 250px;
    }

    .detail-info h1 {
        font-size: 1.3rem;
    }

    .detail-price {
        font-size: 1rem;
    }

    .detail-whatsapp {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .contact-form-card,
    .contact-info {
        padding: 1rem;
    }

    .admin-form {
        padding: 1rem;
    }

    .admin-sidebar a {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Admin Panel Theme */
.admin-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    font-family: 'Noto Serif', serif;
}

.admin-sidebar {
    background: linear-gradient(185deg, #1a2338, #2d3a52);
    color: #ffffff;
    padding: 2rem 1.4rem;
    display: grid;
    gap: 2rem;
    border-right: 3px solid #c5091f;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.sidebar-brand {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.admin-sidebar nav {
    display: grid;
    gap: 0.8rem;
}

.admin-sidebar a {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: rgba(197, 9, 31, 0.4);
    color: #ffffff;
    font-weight: 700;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(197, 9, 31, 0.3);
}

.admin-content {
    padding: 2rem 2.5rem;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    color: #2c3e50;
    font-weight: 500;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #c5091f;
}

.admin-header h1 {
    color: #1a2338;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    border: 3px solid #c5091f;
}

.admin-form h2 {
    color: #1a2338;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #c5091f;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-form label span {
    color: #1a2338;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    font-family: inherit;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 2px solid rgba(197, 9, 31, 0.3);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: #c5091f;
    box-shadow: 0 0 0 4px rgba(197, 9, 31, 0.2);
    transform: translateY(-2px);
}

.admin-form small {
    display: block;
    margin-top: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-form select {
    cursor: pointer;
}

.admin-form select option {
    padding: 0.5rem;
    font-weight: 500;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #c5091f, #930414);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(197, 9, 31, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(197, 9, 31, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

.admin-table {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #c5091f;
    margin-bottom: 2rem;
}

.admin-table h2 {
    color: #1a2338;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #c5091f;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.admin-table th {
    background: linear-gradient(135deg, #c5091f, #930414);
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(197, 9, 31, 0.2);
    font-weight: 500;
}

.admin-table tr:hover {
    background: rgba(197, 9, 31, 0.05);
}

.admin-table .thumb {
    border-radius: 12px;
    border: 2px solid #c5091f;
}

.inline-form {
    display: inline;
}

.admin-toolbar {
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.form-grid .full {
    grid-column: 1 / -1;
}

.form-info {
    background: rgba(197, 9, 31, 0.1);
    border: 2px solid rgba(197, 9, 31, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-info h3 {
    color: #c5091f;
    margin: 0 0 0.8rem 0;
    font-size: 1.4rem;
    font-weight: 800;
}

.form-info p {
    margin: 0.8rem 0;
    color: #2c3e50;
    font-weight: 500;
}

.form-info code {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    color: #c5091f;
}

.form-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 3px solid rgba(197, 9, 31, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(197, 9, 31, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 9, 31, 0.2);
    border-color: #c5091f;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #c5091f;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    display: block;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
}

/* Mobile Responsive for Admin */
@media (max-width: 1024px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        position: sticky;
        top: 0;
        flex-direction: row;
        overflow-x: auto;
        display: flex;
        gap: 1rem;
        padding: 1rem;
        min-height: auto;
    }
    
    .admin-sidebar nav {
        display: flex;
        gap: 1rem;
    }
    
    .admin-content {
        padding: 1.5rem;
    }
}

/* Kategori Listesi */
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.category-item {
    background: rgba(197, 9, 31, 0.1);
    color: var(--brand-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(197, 9, 31, 0.3);
    transition: all 0.3s ease;
}

.category-item:hover {
    background: var(--brand-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 9, 31, 0.3);
}

/* Mobile Kategori Listesi */
@media (max-width: 768px) {
    .category-list {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .category-item {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

/* Kategori Filtreleri */
.category-filters {
    margin: 2rem 0;
    text-align: center;
}

.category-filters h3 {
    color: var(--brand-red);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
}

.category-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-red);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--brand-red);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(197, 9, 31, 0.2);
}

.category-btn:hover {
    background: var(--brand-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 9, 31, 0.3);
}

.category-btn.active {
    background: var(--brand-red);
    color: white;
    box-shadow: 0 6px 20px rgba(197, 9, 31, 0.4);
}

/* Mobile Kategori Butonları */
@media (max-width: 768px) {
    .category-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .category-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

.hero-slider {
    position: relative;
    height: 70vh; /* 50vh'den 70vh'ye geri döndürüldü */
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
    border-radius: 0;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: none;
    outline: none;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.slide-link:hover {
    opacity: 0.9;
}

.slide-link:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 2rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: var(--brand-red);
}

.prev-btn:hover, .next-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive for Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 40vh; /* 60vh'den 40vh'ye düşürüldü */
    }
    .slide-content {
        padding: 2rem 1.5rem;
    }
    .slide-content h1 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1.1rem;
    }
    .slider-nav {
        padding: 0 1rem;
    }
    .prev-btn, .next-btn {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    .slider-dots {
        bottom: 1rem;
    }
    .dot {
        width: 12px;
        height: 12px;
    }
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background: #f8f9fa;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-highlight {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-highlight:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--brand-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brand-red);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Product Gallery */
.product-gallery {
    padding: 4rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--brand-red);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* All Products */
.all-products {
    padding: 4rem 0;
    background: white;
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
    }
    
    .slide-content {
        padding: 2rem 1.5rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .prev-btn, .next-btn {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    
    .slider-dots {
        bottom: 1rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

/* Admin Gallery Section */
.gallery-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-section h2 {
    color: var(--brand-red);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item label {
    display: block;
    padding: 1rem;
    border: 2px dashed #ddd;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item label:hover {
    border-color: var(--brand-red);
    background: rgba(197, 9, 31, 0.05);
}

.gallery-item input[type="file"] {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.gallery-item img {
    margin-top: 0.5rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Mobile Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-section {
        padding: 1.5rem;
    }
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, rgba(197, 9, 31, 0.05), rgba(11, 87, 43, 0.05));
    padding: 4rem 0;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--soft-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(197, 9, 31, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 9, 31, 0.15);
    border-color: var(--brand-red);
}

.value-card h3 {
    color: var(--brand-red);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsive for Vision and Values */
@media (max-width: 768px) {
    .vision-section {
        padding: 3rem 0;
    }
    
    .vision-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .values-section {
        padding: 3rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
}

/* About Images */
.about-image-section {
    padding: 2rem 0;
    background: var(--soft-white);
}

.about-image-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: auto;
    max-width: 300px; /* 500px'den 300px'e küçültüldü */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* About Videos */
.about-video-section {
    padding: 2rem 0;
    background: var(--soft-white);
}

.about-video-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-video {
    width: 100%;
    height: auto;
    max-width: 300px; /* 350px'den 300px'e küçültüldü */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-video:hover {
    transform: scale(1.02);
}

/* Mobile About Videos */
@media (max-width: 768px) {
    .about-video-section {
        padding: 1.5rem 0;
    }
    
    .about-video-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .about-video {
        max-width: 100%;
        border-radius: 10px;
    }
}

/* Social Media Styles */
.social-media-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.social-media-section h3 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-decoration: none;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    border-color: #bc1888;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

/* About Hero Section */
.about-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
}

.about-text h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #495057;
    margin: 0 0 2rem 0;
    text-align: justify;
    text-indent: 2rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-media {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

/* Single Media Styles - Tek Görsel/Video */
.single-media-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2rem;
    border: 4px solid rgba(255,255,255,0.9);
    transition: all 0.6s ease;
}

.single-media-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 100px rgba(0,0,0,0.35);
}

.single-media-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 25px;
    transition: all 0.6s ease;
    filter: brightness(1.08) contrast(1.12);
}

.single-media-image:hover {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.15) contrast(1.2);
}

.single-media-video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 25px;
    transition: all 0.6s ease;
    background: #000;
}

.single-media-video:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* Hero Media Styles */
.hero-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border: 3px solid rgba(255,255,255,0.8);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
    filter: brightness(1.05) contrast(1.1);
}

.hero-image:hover {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.1) contrast(1.2);
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.hero-video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border: 3px solid rgba(255,255,255,0.1);
}

.hero-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.hero-video:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid rgba(255,255,255,0.9);
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.gallery-image-container {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border-radius: 25px;
}

.gallery-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.08);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.gallery-image:hover {
    transform: scale(1.05) rotate(0.5deg);
    filter: brightness(1.1) contrast(1.15);
}

.gallery-video-container {
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 25px;
}

.gallery-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.gallery-video:hover {
    transform: scale(1.03);
    filter: brightness(1.08);
}

/* Final Gallery Styles */
.final-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3.5rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.final-gallery-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid rgba(255,255,255,0.8);
}

.final-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.final-image-container {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 1.2rem;
    border-radius: 22px;
}

.final-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 18px;
    transition: all 0.4s ease;
    filter: brightness(1.04) contrast(1.06);
}

.final-image:hover {
    transform: scale(1.04) rotate(0.3deg);
    filter: brightness(1.08) contrast(1.12);
}

.final-video-container {
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 22px;
}

.final-video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 18px;
    transition: all 0.4s ease;
}

.final-video:hover {
    transform: scale(1.02);
    filter: brightness(1.06);
}

/* Professional Media Styles */
.about-image-container {
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    background: #fff;
    padding: 1rem;
}

.about-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-video-container {
    margin: 2rem 0;
    text-align: center;
    position: relative;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.about-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 450px;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.about-image-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-video-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Media Gallery Sections */
.media-gallery {
    padding: 4rem 0;
    background: #fff;
}

.final-media {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Media Grid Layout */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.media-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Admin Panel Single Media Upload */
.single-media-upload {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.upload-item {
    width: 100%;
    max-width: 500px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    text-align: center;
}

.upload-item label {
    display: block;
    width: 100%;
}

.upload-item span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.upload-item input[type="file"] {
    width: 100%;
    padding: 1rem;
    border: 2px dashed #007bff;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-item input[type="file"]:hover {
    border-color: #0056b3;
    background: #f8f9ff;
}

.upload-item small {
    display: block;
    margin-top: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive Media */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .about-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
        text-indent: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .single-media-container {
        max-width: 100%;
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .single-media-image,
    .single-media-video {
        height: 350px;
    }
    
    .hero-image-container,
    .hero-video-container {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .hero-image,
    .hero-video {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin: 2rem 0;
    }
    
    .gallery-image,
    .gallery-video {
        height: 300px;
    }
    
    .final-gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .final-image,
    .final-video {
        height: 220px;
    }
    
    .about-hero {
        padding: 2rem 0;
    }
    
    .media-gallery,
    .final-media {
        padding: 2rem 0;
    }
}