/**
 * Landing Page Styles
 * Dot.TR Landing Builder
 * Version: 2.0
 * 
 * NOT: Renk değişkenleri (--bg, --text, --white, vb.) artık 
 * PHP'den dinamik olarak geliyor (frontend_landing.php).
 * Bu dosyada sadece statik stiller bulunur.
 */

/* ============================================
   RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ============================================
   CSS DEĞİŞKENLERİ - FALLBACK DEĞERLERİ
   NOT: Gerçek değerler PHP inline style'dan gelir
   Bu değerler sadece PHP'siz test için kullanılır
   ============================================ */
/* Primary ve secondary değişkenleri PHP'den gelecek, burada tanımlamıyoruz */

/* ============================================
   BODY & CARD - Değişkenlerden stil alır
   ============================================ */
body {
    background: var(--bg);
    color: var(--text);
}

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

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
    position: fixed;
    bottom: 160px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: all 0.3s ease;
}

[data-theme="light"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0); }
[data-theme="light"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-toggle .icon-sun { opacity: 0; transform: rotate(90deg) scale(0); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--container-width, 520px);
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .container { padding: 40px; }
}

/* ============================================
   CARD
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: var(--card-padding);
    margin-bottom: var(--section-gap);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
    .card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeup {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideleft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomin {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
    0% { opacity: 0; transform: translateY(-30px); }
    50% { transform: translateY(5px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animated-card {
    opacity: 0;
    animation: var(--animation-type, fadeup) var(--anim-duration) ease-out forwards;
}
.animated-card:nth-child(1) { animation-delay: calc(var(--anim-delay) * 0); }
.animated-card:nth-child(2) { animation-delay: calc(var(--anim-delay) * 1); }
.animated-card:nth-child(3) { animation-delay: calc(var(--anim-delay) * 2); }
.animated-card:nth-child(4) { animation-delay: calc(var(--anim-delay) * 3); }
.animated-card:nth-child(5) { animation-delay: calc(var(--anim-delay) * 4); }
.animated-card:nth-child(6) { animation-delay: calc(var(--anim-delay) * 5); }
.animated-card:nth-child(7) { animation-delay: calc(var(--anim-delay) * 6); }
.animated-card:nth-child(8) { animation-delay: calc(var(--anim-delay) * 7); }

/* ============================================
   HEADER CARD
   ============================================ */
.header-card {
    text-align: center;
    padding: 48px var(--card-padding) 36px;
    overflow: hidden;
}

.header-card.has-cover {
    padding-top: 0;
}

.cover-wrapper {
    position: relative;
    width: calc(100% + var(--card-padding) * 2);
    margin: calc(var(--card-padding) * -1) calc(var(--card-padding) * -1) 0;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: var(--cover-height);
    object-fit: cover;
    display: block;
}

.avatar-wrapper {
    margin-top: calc(var(--avatar-size) / -2);
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.avatar {
    width: var(--avatar-size);
    height: var(--avatar-size);
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.03);
}

.display-name {
    font-size: var(--title-size);
    font-weight: var(--title-weight);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.tagline {
    font-size: var(--tagline-size);
    font-weight: var(--tagline-weight);
    color: var(--text-light);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.bio {
    font-size: var(--bio-size);
    font-weight: var(--bio-weight);
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.65;
}

/* ============================================
   PROFILE META
   ============================================ */
.profile-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: calc(var(--font-size) * 0.85);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    padding: 4px 0;
}

.meta-item i {
    font-size: 1em;
    opacity: 0.7;
}

.meta-link {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.meta-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--btn-radius);
    font-size: var(--font-size);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb, 124, 58, 237), 0.04);
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 21px;
    flex-direction: column;
    gap: 4px;
}

.social-link:hover {
    background: var(--social-color, var(--primary));
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.social-link .social-label {
    font-size: 10px;
    margin-top: 2px;
}

.social-icon-sm .social-link { width: 36px; height: 36px; font-size: 18px; border-radius: 8px; }
.social-icon-lg .social-link { width: 56px; height: 56px; font-size: 26px; border-radius: 14px; }
.social-icon-sm .social-link .social-label { font-size: 8px; }
.social-icon-lg .social-link .social-label { font-size: 12px; }

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: white;
}

.social-btn.social-pill {
    border-radius: 50px;
}

.social-icon-sm .social-btn { padding: 6px 14px; font-size: 14px; }
.social-icon-lg .social-btn { padding: 14px 28px; font-size: 18px; }

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--bg);
    border: 1px solid;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    min-width: 90px;
}

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

.social-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.social-icon-sm .social-card { padding: 10px 14px; min-width: 70px; }
.social-icon-sm .social-card-icon { width: 36px; height: 36px; font-size: 18px; }
.social-icon-lg .social-card { padding: 20px 28px; min-width: 110px; }
.social-icon-lg .social-card-icon { width: 56px; height: 56px; font-size: 28px; }

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    font-size: 17px;
    font-weight: 650;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section-title i {
    color: var(--primary);
    font-size: 20px;
    opacity: 0.85;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-top: -12px;
    margin-bottom: 18px;
    line-height: 1.5;
}

/* ============================================
   HERO BLOCK
   ============================================ */
.hero-block {
    text-align: center;
    padding: 28px 20px;
}

.hero-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-desc {
    font-size: 14.5px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(var(--primary-rgb, 124, 58, 237), 0.08);
}

.contact-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
}

.contact-value {
    font-size: 14.5px;
    font-weight: 500;
}

.contact-value a {
    color: var(--text);
    text-decoration: none;
}

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

/* ============================================
   HOURS
   ============================================ */
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    transition: background 0.15s ease;
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-item:first-child {
    padding-top: 0;
}

.hours-item.today-highlight {
    background: rgba(34, 197, 94, 0.06);
    margin: 0 -15px;
    padding: 11px 15px;
    border-radius: 8px;
}

.hours-item.today-highlight.today-closed {
    background: rgba(239, 68, 68, 0.06);
}

.hours-day {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-day .badge {
    font-size: 0.65em;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 4px;
}

.hours-time {
    color: var(--text-light);
}

.hours-closed {
    color: #ef4444;
}

/* ============================================
   BRANCHES (ŞUBELER)
   ============================================ */

/* Grid & List */
.branches-grid {
    display: grid;
    gap: 16px;
}

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

.branches-grid.list {
    grid-template-columns: 1fr;
}

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

/* Branch Card */
.branch-card {
    background: var(--inner-card-bg);
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.branch-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.branch-card-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

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

/* Status Badge (Açık / Kapalı) */
.branch-status-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}
.branch-status-badge.open {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}
.branch-status-badge.closed {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

/* Badge on image */
.branch-card-image .branch-status-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    backdrop-filter: blur(6px);
}
.branch-card-image .branch-status-badge.open {
    background: rgba(34, 197, 94, 0.85);
    color: #fff;
}
.branch-card-image .branch-status-badge.closed {
    background: rgba(239, 68, 68, 0.85);
    color: #fff;
}

/* Badge inline with name */
.branch-card-name .branch-status-badge,
.branch-accordion-title .branch-status-badge {
    margin-left: 6px;
    vertical-align: middle;
}

.branch-card-body {
    padding: 14px;
}

.branch-card-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--text);
}

.branch-card-address,
.branch-card-phone,
.branch-card-email,
.branch-card-hours {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.branch-card-address i,
.branch-card-phone i,
.branch-card-email i,
.branch-card-hours i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Hours Detail (Gün bazlı satırlar) */
.branch-hours-detail {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.branch-hours-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}
.branch-hours-line.closed .branch-hours-value {
    color: #ef4444;
}
.branch-hours-label {
    font-weight: 500;
    min-width: 52px;
    color: var(--text);
    font-size: 12px;
}
.branch-hours-value {
    color: var(--text-light);
    font-size: 12px;
}

.branch-card-phone a,
.branch-card-email a {
    color: var(--text-light);
    text-decoration: none;
}

.branch-card-phone a:hover,
.branch-card-email a:hover {
    color: var(--primary);
}

.branch-map-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    margin-top: 8px;
}

.branch-map-link:hover {
    text-decoration: underline;
}

/* Accordion Style */
.branches-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.branch-accordion-item {
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.branch-accordion-item.active {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.branch-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--inner-card-bg);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: background 0.2s ease;
}

.branch-accordion-header:hover {
    background: var(--bg);
}

.branch-accordion-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-accordion-thumb {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.branch-accordion-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.branch-accordion-arrow {
    transition: transform 0.2s ease;
    color: var(--text-light);
}

.branch-accordion-item.active .branch-accordion-arrow {
    transform: rotate(180deg);
}

.branch-accordion-body {
    display: none;
    padding: 0 14px 14px;
    background: var(--inner-card-bg);
}

.branch-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.branch-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.branch-detail-row i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-detail-row a {
    color: var(--text-light);
    text-decoration: none;
}

.branch-detail-row a:hover {
    color: var(--primary);
}

/* Carousel overrides */
.branches-carousel .swiper-button-prev,
.branches-carousel .swiper-button-next {
    color: var(--primary);
    width: 32px;
    height: 32px;
}

.branches-carousel .swiper-button-prev::after,
.branches-carousel .swiper-button-next::after {
    font-size: 16px;
}

.branches-carousel .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.products-grid.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

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

.product-item {
    background: var(--card-bg, var(--white));
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.product-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--border);
}

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

.product-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.product-badge.same-day {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.product-badge.free-shipping {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.product-badge.running-out {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: white;
    animation: pulse 2s infinite;
}

.product-badge.tomorrow-ship {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.product-badge.out-of-stock-badge {
    background: #6b7280;
    color: white;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.product-content {
    padding: 12px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 4px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.product-description {
    font-size: 12px;
    color: var(--text-muted, var(--text-light));
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.product-price.sale {
    color: #10b981;
}

.product-original-price {
    font-size: 14px;
    color: var(--text-muted, var(--text-light));
    text-decoration: line-through;
}

.product-bank-discount,
.product-installment {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted, var(--text-light));
    margin-bottom: 8px;
}

.product-bank-discount i,
.product-installment i {
    color: var(--primary);
}

.product-buttons {
    display: flex;
    gap: 8px;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.product-btn.details {
    flex: 1;
    background: var(--border);
    color: var(--text);
}

.product-btn.buy {
    flex: 2;
}

.product-btn.disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

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

@media (max-width: 768px) {
    .products-grid.columns-3,
    .products-grid.columns-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .products-grid.columns-2,
    .products-grid.columns-3,
    .products-grid.columns-4 { grid-template-columns: 1fr; }
}

.product-item.out-of-stock {
    opacity: 0.7;
}

.product-image.has-quick-view {
    cursor: pointer;
}

.product-quick-view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-quick-view-overlay span {
    background: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-image.has-quick-view:hover .product-quick-view-overlay {
    opacity: 1;
}

/* ============================================
   PRODUCTS SLIDER VIEW (SWIPER)
   ============================================ */
.products-slider-container {
    position: relative;
    padding: 0 0 40px 0;
}

.products-swiper {
    overflow: hidden;
}

.products-swiper .swiper-slide {
    height: auto;
}

.products-swiper .product-item {
    height: 100%;
}

.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
    color: var(--primary);
    background: var(--card-bg, var(--white));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    top: 50%;
    margin-top: -40px;
}

.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

.products-swiper .swiper-button-prev {
    left: 4px;
}

.products-swiper .swiper-button-next {
    right: 4px;
}

.products-swiper .swiper-pagination {
    bottom: 8px;
}

.products-swiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.products-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 480px) {
    .products-swiper .swiper-button-prev,
    .products-swiper .swiper-button-next {
        display: none;
    }
}

/* ============================================
   PRODUCTS LIST VIEW
   ============================================ */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.products-list .product-item.list-view {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 140px;
}

.products-list .product-item.list-view .product-image {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 12px 0 0 12px;
}

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

.products-list .product-item.list-view .product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 16px;
}

.products-list .product-item.list-view .product-title {
    font-size: 15px;
    margin-bottom: 4px;
}

.products-list .product-item.list-view .product-description {
    font-size: 12px;
    -webkit-line-clamp: 1;
    margin-bottom: 8px;
}

.products-list .product-item.list-view .product-price-row {
    margin-bottom: 6px;
}

.products-list .product-item.list-view .product-price {
    font-size: 16px;
}

.products-list .product-item.list-view .product-bank-discount,
.products-list .product-item.list-view .product-installment {
    font-size: 10px;
    margin-bottom: 4px;
}

.products-list .product-item.list-view .product-buttons {
    flex-direction: row;
    gap: 8px;
    margin-top: auto;
}

.products-list .product-item.list-view .product-btn {
    padding: 8px 12px;
    font-size: 12px;
}

/* Liste görünümünde resim üstündeki badge'leri gizle */
.products-list .product-item.list-view .product-badges {
    display: none;
}

/* Liste görünümünde inline badge'ler (başlık üstünde) */
.product-badges-inline {
    display: none;
}

.products-list .product-item.list-view .product-badges-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.product-badges-inline .product-badge {
    font-size: 10px;
    padding: 4px 8px;
}

/* Mobile List View */
@media (max-width: 480px) {
    .products-list .product-item.list-view {
        min-height: 120px;
    }
    
    .products-list .product-item.list-view .product-image {
        width: 110px;
        min-width: 110px;
        max-width: 110px;
    }
    
    .products-list .product-item.list-view .product-content {
        padding: 10px 12px;
    }
    
    .products-list .product-item.list-view .product-title {
        font-size: 14px;
    }
    
    .products-list .product-item.list-view .product-buttons {
        flex-direction: column;
        gap: 6px;
    }
    
    .products-list .product-item.list-view .product-btn.details {
        display: none;
    }
}

/* ============================================
   PRODUCT SIDEBAR (SLIDE-OVER PANEL)
   Unique prefix: landing-prd-
   Uses --visible class (double dash to avoid widget conflicts)
   Uses CSS variables for dynamic theming
   ============================================ */
.landing-prd-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.landing-prd-overlay.--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.landing-prd-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 480px;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--white, #ffffff);
    z-index: 99999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.landing-prd-panel.--visible {
    transform: translateX(0);
    visibility: visible;
}

.landing-prd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border, #e5e7eb);
    background: var(--bg, #f9fafb);
    flex-shrink: 0;
}

.landing-prd-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text, #111827);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-prd-header h3 i {
    font-size: 20px;
    color: var(--primary, #10b981);
}

.landing-prd-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--border, #e5e7eb);
    color: var(--text-light, #374151);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
}

.landing-prd-close:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.landing-prd-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    background: var(--white, #ffffff);
}

.landing-prd-body::-webkit-scrollbar {
    width: 6px;
}

.landing-prd-body::-webkit-scrollbar-track {
    background: var(--bg, #f1f1f1);
}

.landing-prd-body::-webkit-scrollbar-thumb {
    background: var(--border, #c1c1c1);
    border-radius: 3px;
}

/* Sidebar Gallery */
.landing-prd-gallery {
    position: relative;
    background: var(--white, #ffffff);
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--border, #e5e7eb);
}

.landing-prd-mainimg {
    flex: 1;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
}

.landing-prd-mainimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white, #ffffff);
}

.landing-prd-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 64px;
    flex-shrink: 0;
}

.landing-prd-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border, #e5e7eb);
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.6;
    background: var(--white, #ffffff);
}

.landing-prd-thumb:hover {
    opacity: 1;
    border-color: var(--text-light, #9ca3af);
}

.landing-prd-thumb.selected {
    opacity: 1;
    border-color: var(--primary, #10b981);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.landing-prd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar Content */
.landing-prd-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--white, #ffffff);
}

.landing-prd-sku {
    font-size: 12px;
    color: var(--text-light, #6b7280);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.landing-prd-limit-notice {
    font-size: 12px;
    color: #b45309;
    font-weight: 500;
    margin-top: 4px;
}

.landing-prd-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text, #111827);
    margin: 0;
    line-height: 1.4;
}

/* Sidebar Badges */
.landing-prd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.landing-prd-stock,
.landing-prd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 0 14px;
    border-radius: 8px;
    height: 34px;
    white-space: nowrap;
}

.landing-prd-stock.in_stock {
    background: #dcfce7;
    color: #16a34a;
}

.landing-prd-stock.limited {
    background: #fef9c3;
    color: #ca8a04;
}

.landing-prd-stock.out_of_stock {
    background: #fee2e2;
    color: #dc2626;
}

.landing-prd-badge.tomorrow {
    background: #ede9fe;
    color: #7c3aed;
}

.landing-prd-badge.same-day {
    background: #ffedd5;
    color: #ea580c;
}

.landing-prd-badge.free {
    background: #cffafe;
    color: #0891b2;
}

/* Sidebar Price */
.landing-prd-prices {
    background: var(--bg, #f9fafb);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border, #e5e7eb);
}

.landing-prd-pricerow {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.landing-prd-oldprice {
    font-size: 18px;
    color: var(--text-light, #9ca3af);
    text-decoration: line-through;
}

.landing-prd-newprice {
    font-size: 28px;
    font-weight: 800;
    color: #10b981;
}

.landing-prd-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--text, #111827);
}

.landing-prd-discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Sidebar Finance Info */
.landing-prd-finance {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.landing-prd-financeitem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg, #f3f4f6);
    border-radius: 10px;
    border: 1px solid var(--border, #e5e7eb);
}

.landing-prd-financeitem i {
    font-size: 20px;
    color: var(--primary, #10b981);
    flex-shrink: 0;
}

.landing-prd-financeitem .info {
    display: flex;
    flex-direction: column;
}

.landing-prd-financeitem .info strong {
    font-size: 13px;
    color: var(--text, #111827);
    font-weight: 600;
}

.landing-prd-financeitem .info span {
    font-size: 12px;
    color: var(--text-light, #6b7280);
}

/* Sidebar Description */
.landing-prd-desc {
    font-size: 14px;
    color: var(--text-light, #4b5563);
    line-height: 1.7;
}

/* Sidebar Details Toggle */
.landing-prd-details {
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 10px;
    overflow: hidden;
}

.landing-prd-detailsbtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg, #f9fafb);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text, #111827);
    transition: all 0.2s;
}

.landing-prd-detailsbtn:hover {
    opacity: 0.8;
}

.landing-prd-detailsbtn i {
    font-size: 16px;
    color: var(--text-light, #6b7280);
    transition: transform 0.3s;
}

.landing-prd-detailsbtn[data-expanded="true"] i {
    transform: rotate(180deg);
}

.landing-prd-detailstext {
    padding: 16px;
    font-size: 13px;
    color: var(--text-light, #4b5563);
    line-height: 1.7;
    background: var(--white, #ffffff);
    border-top: 1px solid var(--border, #e5e7eb);
    max-height: 200px;
    overflow-y: auto;
}

/* Sidebar Footer (Buy Button) */
.landing-prd-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border, #e5e7eb);
    background: var(--white, #ffffff);
    flex-shrink: 0;
}

/* Quantity Selector Wrapper */
.landing-prd-qty-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.landing-prd-qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border, #e5e7eb);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg, #f9fafb);
}

.landing-prd-qty-selector .qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text, #111827);
    font-size: 18px;
    transition: all 0.2s;
}

.landing-prd-qty-selector .qty-btn:hover:not(:disabled) {
    background: var(--primary, #10b981);
    color: white;
}

.landing-prd-qty-selector .qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.landing-prd-qty-selector .qty-input {
    width: 50px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--border, #e5e7eb);
    border-right: 1px solid var(--border, #e5e7eb);
    background: var(--white, #ffffff);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text, #111827);
    -moz-appearance: textfield;
}

.landing-prd-qty-selector .qty-input::-webkit-outer-spin-button,
.landing-prd-qty-selector .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.landing-prd-qty-wrapper .landing-prd-buybtn {
    flex: 1;
}

.landing-prd-buybtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary, #10b981), var(--secondary, #059669));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.landing-prd-buybtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.landing-prd-buybtn.disabled {
    background: var(--text-light, #9ca3af);
    cursor: not-allowed;
    box-shadow: none;
}

.landing-prd-buybtn.disabled:hover {
    transform: none;
}

@media (max-width: 520px) {
    .landing-prd-panel {
        width: 100% !important;
    }
    
    .landing-prd-gallery {
        flex-direction: column-reverse;
        gap: 10px;
        padding: 12px;
    }
    
    .landing-prd-thumbs {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    
    .landing-prd-thumb {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }
    
    .landing-prd-mainimg {
        aspect-ratio: 1;
    }
    
    .landing-prd-title {
        font-size: 18px;
    }
    
    .landing-prd-badges {
        gap: 6px;
    }
    
    .landing-prd-stock,
    .landing-prd-badge {
        height: 30px;
        padding: 0 10px;
        font-size: 11px;
    }
    
    .landing-prd-newprice,
    .landing-prd-price {
        font-size: 24px;
    }
    
    /* Mobile Quantity Selector */
    .landing-prd-qty-wrapper {
        gap: 8px;
    }
    
    .landing-prd-qty-selector .qty-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .landing-prd-qty-selector .qty-input {
        width: 40px;
        height: 38px;
        font-size: 14px;
    }
    
    .landing-prd-limit-info {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-grid.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.services-grid.list {
    display: flex;
    flex-direction: column;
    background: var(--card-bg, var(--white));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.services-grid.list .service-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.services-grid.list .service-item:last-child {
    border-bottom: none;
}

.services-grid.list .service-item:hover {
    background: rgba(0,0,0,0.02);
    transform: none;
    box-shadow: none;
}

.services-grid.list .service-item.featured {
    background: rgba(245, 158, 11, 0.05);
}

.services-grid.list .service-visual {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.services-grid.list .service-image {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    max-width: 48px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.services-grid.list .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-grid.list .service-icon-wrapper {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    max-width: 48px;
    border-radius: 8px;
    background: rgba(var(--primary-rgb, 37, 99, 235), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.services-grid.list .service-icon-wrapper i {
    font-size: 20px;
    color: var(--primary);
}

.services-grid.list .service-content {
    flex: 1;
    min-width: 0;
    padding: 0;
}

.services-grid.list .service-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--text);
    line-height: 1.3;
}

.services-grid.list .service-description {
    font-size: 12px;
    margin: 2px 0 0 0;
    color: var(--text-muted, var(--text-light));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services-grid.list .service-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.services-grid.list .service-duration {
    font-size: 11px;
    color: var(--text-muted, var(--text-light));
    display: flex;
    align-items: center;
    gap: 3px;
    background: none;
    padding: 0;
}

.services-grid.list .service-duration i {
    font-size: 12px;
}

.services-grid.list .service-price-area {
    flex-shrink: 0;
    text-align: right;
    min-width: 70px;
}

.services-grid.list .service-original-price {
    display: block;
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
}

.services-grid.list .service-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.services-grid.list .service-price.sale {
    color: #10b981;
}

.services-grid.list .service-badges,
.services-grid.list .service-btn,
.services-grid.list .service-action {
    display: none;
}

@media (max-width: 480px) {
    .services-grid.list .service-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .services-grid.list .service-visual,
    .services-grid.list .service-image,
    .services-grid.list .service-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
        max-width: 40px;
    }
    
    .services-grid.list .service-description {
        display: none;
    }
    
    .services-grid.list .service-price {
        font-size: 14px;
    }
}

.services-grid.carousel {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    gap: 14px;
}

.services-grid.carousel .service-item {
    min-width: 280px;
    max-width: 300px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.services-grid.carousel::-webkit-scrollbar {
    height: 6px;
}

.services-grid.carousel::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 3px;
}

.services-grid.carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

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

.service-item {
    background: var(--card-bg, var(--white));
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
}

.service-item.featured {
    border-color: #f59e0b;
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.15), 0 2px 8px rgba(245, 158, 11, 0.08);
}

.service-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.service-item.featured:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.15);
}

.service-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--border), var(--card-bg, var(--white)));
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.03);
}

.service-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.service-badge.featured {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.4);
}

.service-badge.discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 3px 12px rgba(239, 68, 68, 0.4);
}

.service-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-badges .service-badge {
    position: static;
}

.service-price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.service-original-price {
    font-size: 13px;
    color: var(--text-muted, var(--text-light));
    text-decoration: line-through;
    opacity: 0.7;
}

.service-price.sale {
    color: #10b981;
}

.service-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.service-icon-wrapper {
    width: 100%;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb, 37, 99, 235), 0.12), rgba(var(--primary-rgb, 37, 99, 235), 0.05));
    position: relative;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb, 37, 99, 235), 0.08), transparent 70%);
}

.service-icon-wrapper i {
    font-size: 52px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 16px;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.service-description {
    font-size: 13px;
    color: var(--text-muted, var(--text-light));
    margin: 0 0 12px 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.service-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted, var(--text-light));
    background: var(--border);
    padding: 5px 10px;
    border-radius: 8px;
}

.service-duration i {
    font-size: 14px;
    opacity: 0.7;
}

.service-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb, 37, 99, 235), 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 37, 99, 235), 0.4);
}

.service-btn i {
    transition: transform 0.2s;
}

.service-btn:hover i {
    transform: translateX(3px);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: calc(var(--radius) - 4px);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.gallery-img:hover {
    opacity: 0.85;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 30px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: white;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 14px;
    border-radius: 50%;
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-nav { padding: 12px; font-size: 24px; }
}

.lightbox-counter {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ============================================
   VIDEO
   ============================================ */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* ============================================
   MAP
   ============================================ */
.map-wrapper {
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    min-height: 280px;
}

.map-wrapper iframe {
    width: 100% !important;
    height: 280px !important;
    border: none !important;
    display: block;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
    background: var(--card-bg, var(--white));
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    padding: 16px 18px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span:first-child {
    flex: 1;
    line-height: 1.45;
}

.faq-question .faq-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    font-size: 9px;
    color: var(--text-light);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    transition: all 0.3s ease;
    border-top: 0 solid var(--border);
}

.faq-item.active {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 18px 18px 18px;
    border-top-width: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-card {
    background: var(--inner-card-bg);
    border-radius: var(--radius);
    padding: 22px;
    position: relative;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-quote-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 28px;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-content {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testimonial-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 1px;
}

.testimonial-title {
    font-size: 12.5px;
    color: var(--text-light);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 15px;
}

.testimonial-rating i.empty {
    color: var(--border);
}

.testimonials-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.testimonials-slider .testimonial-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.testimonials-slider::-webkit-scrollbar {
    height: 6px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 3px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    background: var(--text-light);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

/* ============================================
   TEAM MEMBERS
   ============================================ */
.team-grid {
    display: grid;
    gap: 14px;
}

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

.team-grid.team-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 599px) {
    .team-grid.team-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 399px) {
    .team-grid.team-cols-2,
    .team-grid.team-cols-3 {
        grid-template-columns: 1fr;
    }
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-list .team-member-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 16px;
    gap: 16px;
}

.team-list .team-member-photo-wrapper {
    flex-shrink: 0;
    margin-bottom: 0;
}

.team-list .team-member-photo,
.team-list .team-member-photo-placeholder {
    width: 64px;
    height: 64px;
    font-size: 22px;
}

.team-list .team-member-info {
    flex: 1;
    min-width: 0;
}

.team-list .team-member-social {
    flex-shrink: 0;
    flex-direction: column;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    width: auto;
    gap: 4px;
}

.team-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 16px;
    background: var(--inner-card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
    .team-member-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }
}

.team-member-photo-wrapper {
    margin-bottom: 12px;
}

.team-member-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid var(--border);
    transition: transform 0.2s ease;
}

.team-member-photo.shape-circle,
.team-member-photo-placeholder.shape-circle {
    border-radius: 50%;
}

.team-member-photo.shape-square,
.team-member-photo-placeholder.shape-square {
    border-radius: calc(var(--radius) - 4px);
}

.team-member-photo-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border: 2px solid var(--border);
}

.team-member-name {
    font-size: 15px;
    font-weight: 650;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.team-member-title {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    margin-top: 2px;
    opacity: 0.9;
}

.team-member-bio {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 8px 0 0;
    max-width: 280px;
}

.team-list .team-member-bio {
    max-width: none;
}

.team-member-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    width: 100%;
}

.team-member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 17px;
    transition: color 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
}

.team-member-social a:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb, 0, 0, 0), 0.08);
}

/* Team Slider */
.team-slider-container {
    overflow: hidden;
}

.team-swiper .team-member-card {
    height: 100%;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 480px) {
    .stats-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .stats-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 479px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
    background: var(--inner-card-bg);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-color: rgba(var(--primary-rgb, 37, 99, 235), 0.2);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb, 37, 99, 235), 0.12), rgba(var(--primary-rgb, 37, 99, 235), 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: var(--primary);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.stat-number .stat-suffix {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.stat-number[data-count] {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.stat-number[data-count].counted {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.blog-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -4px;
    padding: 4px;
}

.blog-slider::-webkit-scrollbar {
    height: 6px;
}

.blog-slider::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 3px;
}

.blog-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.blog-slider .blog-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

@media (max-width: 480px) {
    .blog-slider .blog-card {
        flex: 0 0 260px;
    }
}

.blog-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.blog-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.blog-card {
    background: var(--inner-card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.blog-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card-content {
    padding: 16px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.blog-title {
    font-size: 15px;
    font-weight: 650;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-summary {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.blog-footer {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-top: 12px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-card:hover .blog-link {
    gap: 8px;
}

/* ============================================
   BLOG MODAL
   ============================================ */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.blog-modal.active {
    display: flex;
}

.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
}

.blog-modal-container {
    position: relative;
    background: var(--bg);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    animation: blogModalIn 0.25s ease-out;
    z-index: 10001;
}

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

.blog-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0,0,0,0.5);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.blog-modal-close:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.blog-modal-content {
    max-height: 85vh;
    overflow-y: auto;
}

.blog-modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-modal-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 0;
}

.blog-modal-category {
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
}

.blog-modal-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-light);
}

.blog-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    padding: 12px 20px 10px;
    line-height: 1.35;
}

.blog-modal-body {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text);
}

.blog-modal-body p {
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .blog-modal {
        padding: 16px;
    }
    
    .blog-modal-container {
        border-radius: 16px;
    }
    
    .blog-modal-image {
        height: 160px;
    }
    
    .blog-modal-title {
        font-size: 18px;
        padding: 12px 16px 8px;
    }
    
    .blog-modal-meta,
    .blog-modal-body {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ============================================
   BANNER
   ============================================ */
.banner-card {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 28px 22px;
}

.banner-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.banner-desc {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-white {
    background: white;
    color: var(--primary);
    font-weight: 600;
}

.btn-white:hover {
    opacity: 0.95;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
    opacity: 0.6;
}

/* ============================================
   LINKS
   ============================================ */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--primary);
    border-radius: var(--btn-radius);
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
}

.link-btn:hover {
    opacity: 0.92;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.link-btn i {
    font-size: 19px;
    flex-shrink: 0;
    opacity: 0.9;
}

.link-btn-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.link-btn-title {
    font-weight: 500;
}

.link-btn-desc {
    font-size: 12px;
    opacity: 0.8;
}

/* Link Button Styles */
.link-btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.link-btn-outline:hover {
    background: var(--primary);
    color: white;
}

.link-btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary, var(--primary)));
}

.link-btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.link-btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

/* Link Button Sizes */
.link-btn-small {
    padding: 8px 12px !important;
    font-size: 13px !important;
    min-height: auto !important;
}

.link-btn-small i {
    font-size: 14px !important;
}

.link-btn-large {
    padding: 22px 28px !important;
    font-size: 18px !important;
    min-height: auto !important;
}

.link-btn-large i {
    font-size: 26px !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    text-align: center;
    padding: 28px 24px 120px 24px;
    color: var(--text-light);
    font-size: 12.5px;
    letter-spacing: 0.01em;
    opacity: 0.7;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.4s ease-out;
}

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

.announcement-bar a {
    color: inherit;
    text-decoration: none;
}

.announcement-bar a:hover {
    opacity: 0.9;
}

.announcement-bar .announcement-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.announcement-bar .announcement-button {
    background: rgba(255,255,255,0.2);
    color: inherit;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    margin-left: 12px;
}

.announcement-bar .announcement-button:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.02);
}

.announcement-bar .announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: inherit;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
}

.announcement-bar .announcement-close:hover {
    background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .announcement-bar {
        flex-wrap: wrap;
        padding: 10px 16px 40px 16px;
        text-align: center;
        gap: 8px;
    }
    
    .announcement-bar .announcement-icon {
        font-size: 16px;
    }
    
    .announcement-bar span {
        flex: 1 1 100%;
        font-size: 13px;
        line-height: 1.4;
    }
    
    .announcement-bar .announcement-button {
        margin-left: 0;
        margin-top: 8px;
        padding: 8px 20px;
    }
    
    .announcement-bar .announcement-close {
        position: absolute;
        right: 50%;
        top: auto;
        bottom: 8px;
        transform: translateX(50%);
        width: auto;
        height: auto;
        padding: 4px 16px;
        border-radius: 12px;
        font-size: 11px;
        background: rgba(0,0,0,0.15);
    }
    
    .announcement-bar .announcement-close::before {
        content: 'Kapat';
    }
    
    .announcement-bar .announcement-close span {
        display: none;
    }
    
    body.has-announcement {
        padding-top: 80px;
    }
}

body.has-announcement {
    padding-top: 50px;
}

.announcement {
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    margin-bottom: var(--section-gap);
}

/* ============================================
   QUICK ACCESS BAR
   ============================================ */
.quick-access-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quick-access-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.quick-access-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.quick-access-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Bottom Bar Icon (Sepet, Yukarı Kaydır, Dark Mode) */
.bottom-bar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 0;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.25s ease;
    font-size: 19px;
}

.bottom-bar-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Sepet Butonu - Pulse Animasyonu */
.bottom-bar-icon.cart-icon {
    position: relative;
}

.bottom-bar-icon.cart-icon.has-items {
    animation: cartPulse 2s ease-in-out infinite;
}

@keyframes cartPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 8px rgba(var(--primary-rgb, 124, 58, 237), 0.2);
    }
}

.bottom-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Yukarı Kaydır Butonu */
.bottom-bar-icon.scroll-top-icon {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.bottom-bar-icon.scroll-top-icon.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bottom-bar-icon.scroll-top-icon:hover {
    transform: translateY(-2px);
}

/* Dark Mode Toggle - Bottom Bar Icon olarak */
.bottom-bar-icon .icon-sun,
.bottom-bar-icon .icon-moon {
    position: absolute;
    font-size: 18px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bottom-bar-icon .icon-sun {
    opacity: 1;
    transform: rotate(0);
}

.bottom-bar-icon .icon-moon {
    opacity: 0;
    transform: rotate(-90deg);
}

[data-theme="dark"] .bottom-bar-icon .icon-sun {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .bottom-bar-icon .icon-moon {
    opacity: 1;
    transform: rotate(0);
}

/* Eski theme-toggle-icon'u kaldır - artık bottom-bar-icon kullanılıyor */
.theme-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin-left: 8px;
    position: relative;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 0;
    color: #fff;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.theme-toggle-icon:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.theme-toggle-icon .icon-sun,
.theme-toggle-icon .icon-moon {
    position: absolute;
    font-size: 14px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Light mode: güneş görünür, ay gizli */
.theme-toggle-icon .icon-sun {
    opacity: 1;
    transform: rotate(0);
}

.theme-toggle-icon .icon-moon {
    opacity: 0;
    transform: rotate(-90deg);
}

/* Dark mode: ay görünür, güneş gizli */
[data-theme="dark"] .theme-toggle-icon .icon-sun {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle-icon .icon-moon {
    opacity: 1;
    transform: rotate(0);
}

.quick-access-menu {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 100%;
    max-width: 480px;
    background: var(--white, #fff);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 70vh;
    overflow: hidden;
}

.quick-access-menu.active {
    transform: translateX(-50%) translateY(0);
}

.quick-access-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border, #f0f0f0);
}

.quick-access-menu-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text, #1f2937);
}

.quick-access-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg, #f3f4f6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quick-access-close:hover {
    background: var(--border, #e5e7eb);
}

.quick-access-close i {
    font-size: 20px;
    color: var(--text-light, #6b7280);
}

.quick-access-menu-body {
    padding: 16px 0;
    max-height: calc(70vh - 80px);
    overflow-y: auto;
}

.quick-access-menu .nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    color: var(--text, #374151);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.quick-access-menu .nav-item:hover {
    background: var(--bg, #f9fafb);
    border-left-color: var(--primary);
}

.quick-access-menu .nav-item i {
    font-size: 22px;
    width: 28px;
    text-align: center;
    color: var(--primary);
}

.quick-access-menu .nav-item.active {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), transparent);
    border-left-color: var(--primary);
    color: var(--primary);
}

.quick-access-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-access-overlay.active {
    opacity: 1;
    visibility: visible;
}

body {
    padding-bottom: 80px;
}

.quick-access-bar.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .quick-access-bar {
        bottom: 16px;
    }
    
    .quick-access-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .quick-access-menu {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
    }
    
    .quick-access-menu .nav-item {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ============================================
   GALLERY COLUMNS & SLIDER
   ============================================ */
.gallery-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .gallery-grid.columns-3,
    .gallery-grid.columns-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .gallery-grid.columns-2,
    .gallery-grid.columns-3,
    .gallery-grid.columns-4 { grid-template-columns: repeat(2, 1fr); }
}

.gallery-slider-container {
    position: relative;
    padding-bottom: 40px;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    color: var(--primary);
    background: var(--card-bg, var(--white));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
    font-size: 14px;
}

/* ============================================
   SERVICES SLIDER
   ============================================ */
.services-slider-container {
    position: relative;
    padding-bottom: 40px;
}

.services-swiper .swiper-slide {
    height: auto;
}

.services-swiper .service-item {
    height: 100%;
}

.services-swiper .swiper-button-prev,
.services-swiper .swiper-button-next {
    color: var(--primary);
    background: var(--card-bg, var(--white));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.services-swiper .swiper-button-prev::after,
.services-swiper .swiper-button-next::after {
    font-size: 16px;
}

@media (max-width: 480px) {
    .services-swiper .swiper-button-prev,
    .services-swiper .swiper-button-next {
        display: none;
    }
}

/* ============================================
   TESTIMONIALS SLIDER
   ============================================ */
.testimonials-slider-container {
    position: relative;
    padding-bottom: 30px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-swiper .testimonial-card {
    height: 100%;
}

.testimonials-swiper .swiper-pagination-bullet {
    background: var(--primary);
}

/* ============================================
   FAQ STYLES (Accordion, List, Cards)
   ============================================ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* FAQ Cards Style */
.faq-cards .faq-card {
    background: var(--card-bg, #f8fafc);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
}

.faq-cards .faq-card-question {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 15px;
}

.faq-cards .faq-card-answer {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ List Style */
.faq-list .faq-list-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.faq-list .faq-list-question {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.faq-list .faq-list-question i {
    color: var(--primary);
}

.faq-list .faq-list-answer {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 28px;
}

/* ============================================
   HOURS STYLES (Table, List, Compact)
   ============================================ */
.hours-container {
    display: flex;
    flex-direction: column;
}

/* Hours Compact Style */
.hours-compact {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.hours-compact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg, #f8fafc);
    padding: 10px 14px;
    border-radius: 10px;
    min-width: 70px;
    text-align: center;
    border: 1px solid var(--border);
}

.hours-compact-item strong {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 4px;
}

.hours-compact-item span {
    font-size: 11px;
    color: var(--text-light);
}

.hours-compact-item span.closed {
    color: #ef4444;
}

.hours-compact-item.today-highlight {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb, 37, 99, 235), 0.05);
}

/* Hours List Style */
.hours-list .hours-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    background: var(--card-bg, #f8fafc);
    border: 1px solid var(--border);
}

.hours-list .hours-list-day {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text);
}

.hours-list .hours-list-day i {
    color: var(--primary);
}

.hours-list .hours-list-time {
    font-weight: 600;
    color: var(--primary);
}

.hours-list .hours-list-time.closed {
    color: #ef4444;
}

.hours-list .hours-list-item.today-highlight {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb, 37, 99, 235), 0.08);
}

/* ============================================
   E-COMMERCE CART STYLES
   ============================================ */

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary, #5e72e4);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.floating-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 12px;
    font-weight: 600;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 170px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-notification.show {
    transform: translateX(0);
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100%;
    height: 100%;
    background: white;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
}
.cart-drawer.open {
    transform: translateX(0);
}
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.cart-drawer-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-drawer-header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    padding: 4px;
}
.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}
.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}
.cart-empty i {
    font-size: 64px;
    margin-bottom: 16px;
}
.cart-drawer-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 12px;
    align-items: center;
}
.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-img i {
    font-size: 24px;
    color: #9ca3af;
}
.cart-item-info {
    flex: 1;
    min-width: 0;
}
.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-price {
    color: #6b7280;
    font-size: 13px;
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.cart-item-qty button {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}
.cart-item-qty button:hover:not(:disabled) {
    background: #f3f4f6;
}
.cart-item-qty button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.cart-item-qty span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}
.cart-item-qty.single-unit {
    background: none;
    border: none;
    padding: 0;
}
.cart-item-qty .single-unit-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #fef3c7;
    color: #b45309;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
}
.cart-item-qty .single-unit-badge i {
    font-size: 12px;
}
.cart-item-total {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary, #5e72e4);
    white-space: nowrap;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.cart-item-remove:hover {
    opacity: 1;
}
.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}
.cart-drawer-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
}
.cart-drawer-total-row strong {
    font-size: 20px;
    color: var(--primary, #5e72e4);
}
.cart-checkout-btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--primary, #5e72e4);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
}
.cart-checkout-btn:hover {
    background: var(--secondary, #324cdd);
    transform: translateY(-2px);
}

/* Cart Dark mode support */
[data-theme="dark"] .cart-drawer {
    background: #1f2937;
    color: #f9fafb;
}
[data-theme="dark"] .cart-drawer-header {
    border-color: #374151;
}
[data-theme="dark"] .cart-drawer-item {
    background: #374151;
}
[data-theme="dark"] .cart-item-img {
    background: #4b5563;
}
[data-theme="dark"] .cart-item-qty button {
    background: #4b5563;
    border-color: #4b5563;
    color: #f9fafb;
}
[data-theme="dark"] .cart-drawer-footer {
    background: #111827;
    border-color: #374151;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
    }
    .floating-cart-btn {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ============================================
   VIDEO BLOCK - GRID MODE
   ============================================ */
.video-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
}

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

/* ============================================
   VIDEO BLOCK - LIST MODE
   ============================================ */
.video-list .video-item { 
    margin-bottom: 15px; 
}

.video-list .video-item:last-child { 
    margin-bottom: 0; 
}

/* ============================================
   VIDEO BLOCK - CAROUSEL MODE
   ============================================ */
.video-carousel { 
    position: relative; 
    overflow: hidden; 
}

.video-carousel .video-slide { 
    display: none; 
}

.video-carousel .video-slide.active { 
    display: block; 
    animation: videoFadeIn 0.3s ease; 
}

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

.video-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border, #e5e7eb);
    background: var(--white, white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--text, #374151);
}

.carousel-btn:hover {
    background: var(--bg, #f3f4f6);
    border-color: #d1d5db;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dot.active {
    background: #ef4444;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #9ca3af;
}

.carousel-counter {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: #6b7280;
}

/* ============================================
   VIDEO BLOCK - COMMON
   ============================================ */
.video-item-title { 
    font-size: 14px; 
    font-weight: 500; 
    margin-bottom: 8px; 
    color: var(--text, #374151); 
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 default */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   SPOTIFY BLOCK
   ============================================ */
.spotify-player-wrapper {
    margin-bottom: 10px;
}

.spotify-player-wrapper:last-child {
    margin-bottom: 0;
}

.spotify-player-wrapper iframe {
    border-radius: 12px;
}

/* Dark mode support for video */
[data-theme="dark"] .carousel-btn {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
}

[data-theme="dark"] .carousel-btn:hover {
    background: #4b5563;
}

[data-theme="dark"] .carousel-dot {
    background: #4b5563;
}

[data-theme="dark"] .carousel-dot.active {
    background: #ef4444;
}

[data-theme="dark"] .video-item-title {
    color: #f3f4f6;
}

/* ============================================
   BEHANCE PORTFOLIO BLOCK
   ============================================ */
.behance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.behance-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.behance-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 640px) {
    .behance-grid,
    .behance-masonry {
        grid-template-columns: 1fr;
    }
}

.behance-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: var(--bg, #f9fafb);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text, #374151);
    transition: all 0.3s ease;
}

.behance-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #0566FF;
}

.behance-item-visual {
    flex-shrink: 0;
}

.behance-item-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0566FF, #1769FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.behance-profile-thumb {
    background: linear-gradient(135deg, #1769FF, #4B8BFF);
}

.behance-moodboard-thumb {
    background: linear-gradient(135deg, #FF5F00, #FF8C00);
}

.behance-item-content {
    flex: 1;
    min-width: 0;
}

.behance-item-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text, #1f2937);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.behance-item-owner {
    font-size: 13px;
    color: var(--text-light, #6b7280);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.behance-item-owner i {
    font-size: 14px;
}

.behance-item-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.behance-badge-project {
    background: rgba(5, 102, 255, 0.1);
    color: #0566FF;
}

.behance-badge-profile {
    background: rgba(23, 105, 255, 0.1);
    color: #1769FF;
}

.behance-badge-moodboard {
    background: rgba(255, 95, 0, 0.1);
    color: #FF5F00;
}

.behance-item-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light, #6b7280);
    transition: all 0.2s;
}

.behance-item:hover .behance-item-arrow {
    background: #0566FF;
    color: white;
}

/* Card Styles */
.behance-standard {
    /* Default style above */
}

.behance-minimal {
    background: transparent;
    border: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border, #e5e7eb);
    border-radius: 0;
}

.behance-minimal:last-child {
    border-bottom: none;
}

.behance-minimal:hover {
    transform: none;
    box-shadow: none;
}

.behance-overlay {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 120px;
    background: linear-gradient(135deg, #0566FF, #1769FF);
}

.behance-overlay .behance-item-visual {
    display: none;
}

.behance-overlay .behance-item-content {
    padding: 20px;
    color: white;
}

.behance-overlay .behance-item-title {
    color: white;
}

.behance-overlay .behance-item-owner {
    color: rgba(255, 255, 255, 0.8);
}

.behance-overlay .behance-item-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.behance-overlay .behance-item-arrow {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.behance-overlay:hover .behance-item-arrow {
    background: white;
    color: #0566FF;
}

/* Behance Carousel */
.behance-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.behance-carousel .behance-item {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.behance-carousel::-webkit-scrollbar {
    height: 6px;
}

.behance-carousel::-webkit-scrollbar-track {
    background: var(--border, #e5e7eb);
    border-radius: 3px;
}

.behance-carousel::-webkit-scrollbar-thumb {
    background: #0566FF;
    border-radius: 3px;
}

/* Dark mode */
[data-theme="dark"] .behance-item {
    background: #374151;
    border-color: #4b5563;
}

[data-theme="dark"] .behance-item:hover {
    border-color: #0566FF;
}

[data-theme="dark"] .behance-item-title {
    color: #f9fafb;
}

[data-theme="dark"] .behance-item-arrow {
    background: #4b5563;
    color: #9ca3af;
}

[data-theme="dark"] .behance-minimal {
    background: transparent;
    border-color: #4b5563;
}


