/* ========================================
   ÇANTACI E-TİCARET - ANA STIL DOSYASI
   Modern 2026 Tasarım
   ======================================== */

/* CSS Variables */
:root {
    /* Ana Renkler - Sarı Ağırlıklı Degrade */
    --primary-gradient: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FF9800 100%);
    --primary-yellow: #FFD700;
    --primary-orange: #FF9800;
    --secondary-color: #1a1a1a;
    --text-dark: #0d0d0d;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--primary-gradient);
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.top-bar-item i {
    font-size: 1rem;
}

.top-bar-item.highlight {
    background: var(--secondary-color);
    color: var(--primary-yellow);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

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

.kargo-takip-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.kargo-takip-link:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

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

/* Search Container */
.search-container {
    flex: 1;
    max-width: 500px;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--text-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.search-form:focus-within {
    box-shadow: var(--shadow-glow);
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
}

.search-input::placeholder {
    color: var(--text-gray);
}

.search-btn {
    padding: 14px 22px;
    background: var(--secondary-color);
    color: var(--primary-yellow);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background: #2a2a2a;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.header-action-btn i {
    font-size: 1.5rem;
}

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

.action-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: var(--primary-yellow);
    font-size: 0.7rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-text {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
}

.mobile-menu-toggle i {
    color: var(--primary-yellow) !important;
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active i::before {
    content: "\f00d";
}

/* Navigation */
.main-nav {
    background: var(--secondary-color);
    padding: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px 3px 0 0;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ========================================
   STORY HIGHLIGHTS (Instagram Style)
   ======================================== */
.story-highlights {
    background: var(--bg-light);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stories-wrapper {
    position: relative;
    overflow: hidden;
}

.stories-container {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.stories-container::-webkit-scrollbar {
    display: none;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.story-item:hover {
    transform: translateY(-3px);
}

.story-ring {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700 0%, #FFC107 25%, #FF9800 50%, #FF5722 75%, #E91E63 100%);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.story-item:hover .story-ring {
    transform: scale(1.08);
    box-shadow: 0 5px 25px rgba(255, 152, 0, 0.4);
}

.story-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Story Icon Style (Font Awesome) */
.story-image.story-icon {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.story-image.story-icon i {
    font-size: 1.5rem;
    color: #f59e0b;
    transition: var(--transition-fast);
}

.story-item:hover .story-image.story-icon i {
    transform: scale(1.15);
    color: #d97706;
}

.story-title {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    max-width: 75px;
    line-height: 1.3;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Story Responsive */
@media (max-width: 768px) {
    .story-highlights {
        padding: 12px 0;
        overflow: hidden;
    }
    
    .stories-wrapper {
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .stories-container {
        gap: 15px;
        padding: 6px 0;
        padding-right: 20px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .story-ring {
        width: 60px;
        height: 60px;
    }
    
    .story-image {
        width: 52px;
        height: 52px;
    }
    
    .story-image.story-icon i {
        font-size: 1.3rem;
    }
    
    .story-title {
        font-size: 0.65rem;
        max-width: 65px;
    }
}

@media (max-width: 480px) {
    .stories-wrapper {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .stories-container {
        gap: 12px;
        padding: 6px 0;
        padding-right: 15px;
    }
    
    .story-ring {
        width: 55px;
        height: 55px;
    }
    
    .story-image {
        width: 47px;
        height: 47px;
    }
    
    .story-image.story-icon i {
        font-size: 1.3rem;
    }
    
    .story-title {
        font-size: 0.65rem;
        max-width: 65px;
    }
}


/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.85) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

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

.hero-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20BD5A 0%, #0E7A6E 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: var(--transition-slow);
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* WhatsApp Float Button - Kaldırıldı */

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .nav-link {
        padding: 15px 15px;
        font-size: 0.85rem;
    }
}

/* Mobile Large */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero-image img {
        max-height: 300px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
    }
    
    .top-bar-item:first-child,
    .top-bar-item:last-child {
        display: none;
    }
    
    .header-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        padding: 12px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    
    .search-container {
        flex: 1 1 100%;
        max-width: 100%;
        order: 10;
        margin-top: 5px;
    }
    
    .action-text {
        display: none;
    }
    
    .header-action-btn i {
        font-size: 1.6rem;
    }
    
    .action-badge {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--secondary-color);
        padding: 80px 20px 20px;
        transition: var(--transition-normal);
        z-index: 1002;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .search-input {
        padding: 12px 15px;
    }
    
    .search-btn {
        padding: 12px 18px;
    }
}

/* Mobile Menu Overlay - Only covers right side (outside menu) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 80%;
    width: 20%;
    height: 100%;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1003;
}

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

/* Mobile Menu Toggle - Always visible on top */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        position: relative;
        z-index: 1004;
    }
    
    .menu-overlay {
        left: 80%;
        width: 20%;
    }
}

/* Mobile Nav Contact Info - Only visible on mobile */
.nav-contact {
    display: none;
}

@media (max-width: 768px) {
    .nav-contact {
        display: block;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.nav-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.nav-contact-item:hover {
    color: var(--primary-yellow);
}

.nav-contact-item i {
    width: 35px;
    height: 35px;
    background: var(--primary-gradient);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.nav-contact-item.whatsapp i {
    background: #25D366;
    color: white;
}

/* Mobile Menu Active State - Font Awesome icon */


/* ========================================
   TYPEWRITER EFFECT
   ======================================== */
.typewriter-container {
    display: inline;
}

.typewriter-text {
    color: var(--primary-yellow);
    border-right: 3px solid var(--primary-yellow);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { border-color: var(--primary-yellow); }
    51%, 100% { border-color: transparent; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-yellow);
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-gradient);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-yellow);
}

.contact-item-content p,
.contact-item-content a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item-content a:hover {
    color: var(--primary-yellow);
}

/* Footer Map */
.footer-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-md);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom .developer-link {
    color: var(--primary-yellow);
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-bottom .developer-link:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-yellow);
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-section:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-section:last-child {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-map {
        height: 200px;
    }
}


/* ========================================
   SECTIONS COMMON STYLES
   ======================================== */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 14px 30px;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--primary-yellow);
}

/* ========================================
   PRODUCTS GRID
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

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

.product-badge.sale {
    background: #e74c3c;
}

.product-badge.new {
    background: #27ae60;
}

.product-badge.hot {
    background: var(--primary-orange);
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.product-action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--text-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.product-action-btn:hover {
    background: var(--primary-gradient);
    color: var(--text-dark);
    transform: scale(1.1);
}

.product-action-btn.whatsapp-btn:hover {
    background: #25D366;
    color: var(--text-light);
}

.product-info {
    padding: 20px;
    background: var(--text-light);
}

.product-category {
    font-size: 0.7rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Resim yüklenemediğinde kartı gizle */
.product-card:has(img[src=""]),
.product-card:has(img:not([src])) {
    display: none !important;
}

.product-image img[src=""],
.product-image img:not([src]) {
    display: none;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-section {
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: var(--text-light);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-glow);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-count {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us-section {
    background: var(--secondary-color);
    padding: 50px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us-item {
    text-align: center;
    color: var(--text-light);
}

.why-us-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.why-us-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-us-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   RESPONSIVE - PRODUCTS & CATEGORIES
   ======================================== */
@media (max-width: 1024px) {
    .products-grid,
    .categories-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.9rem;
    }
    
    .price-current {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card {
        padding: 25px 15px;
    }
    
    .category-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-us-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .why-us-item h3 {
        font-size: 0.95rem;
    }
    
    .why-us-item p {
        font-size: 0.8rem;
    }
}


/* ========================================
   WAVE BANNER SECTION
   ======================================== */
.wave-banner {
    position: relative;
    background: var(--primary-gradient);
    overflow: hidden;
    margin: 0;
}

.wave-shape {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.wave-shape.wave-top {
    top: 0;
}

.wave-shape.wave-bottom {
    bottom: 0;
}

.wave-shape svg {
    display: block;
    width: 100%;
    height: 40px;
}

.wave-content {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.marquee-content i {
    font-size: 0.7rem;
    color: var(--secondary-color);
    opacity: 0.6;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Wave Responsive */
@media (max-width: 768px) {
    .wave-content {
        padding: 40px 0;
    }
    
    .marquee-content span {
        font-size: 1rem;
    }
    
    .marquee-content {
        gap: 20px;
    }
    
    .wave-shape svg {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .wave-content {
        padding: 35px 0;
    }
    
    .marquee-content span {
        font-size: 0.9rem;
    }
    
    .marquee-content {
        gap: 15px;
    }
    
    .wave-shape svg {
        height: 25px;
    }
}


/* ========================================
   PROMO CARDS SECTION
   ======================================== */
.promo-cards {
    padding: 50px 0;
    background: var(--bg-light);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.promo-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Promo Cards Responsive */
@media (max-width: 900px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .promo-cards {
        padding: 35px 0;
    }
    
    .promo-grid {
        gap: 15px;
    }
    
    .promo-card {
        border-radius: var(--radius-md);
    }
}


/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    background: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--primary-yellow);
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

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

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands-section {
    background: var(--secondary-color);
    padding: 40px 0;
    overflow: hidden;
}

.brands-wrapper {
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: brandsScroll 25s linear infinite;
    width: max-content;
}

.brand-item {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes brandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-section {
    background: var(--bg-light);
}

.instagram-section .section-title i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.instagram-overlay i {
    font-size: 2rem;
    color: var(--text-light);
}

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

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* ========================================
   CTA BANNER SECTION
   ======================================== */
.cta-banner {
    background: var(--primary-gradient);
    padding: 60px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-lg {
    padding: 18px 35px;
    font-size: 1.1rem;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 16px 30px;
}

.btn-outline-light:hover {
    background: var(--text-dark);
    color: var(--primary-yellow);
}

/* ========================================
   RESPONSIVE - NEW SECTIONS
   ======================================== */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn-lg {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-track {
        gap: 40px;
    }
    
    .brand-item {
        width: 80px;
        height: 40px;
    }
}


/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--text-light);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-yellow);
}

.faq-item.active {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

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

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary-orange);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }
}


/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
    background: var(--text-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: block;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f0f0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.blog-date i {
    color: var(--primary-orange);
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

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

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.blog-link i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-link i {
    transform: translateX(5px);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
}


/* ========================================
   BLOG DETAIL PAGE
   ======================================== */
.blog-detail-page {
    background: var(--bg-light);
    padding: 40px 0 60px;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-gray);
    transition: var(--transition-fast);
}

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

.breadcrumb i {
    font-size: 0.7rem;
}

/* Blog Detail Title */
.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Featured Box */
.blog-featured-box {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    border: 2px solid var(--primary-yellow);
}

.featured-box-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.3;
}

.featured-list {
    list-style: none;
}

.featured-list li {
    margin-bottom: 18px;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.featured-list li p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.featured-box-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-box-image img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* Article Content */
.article-content {
    background: var(--text-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.article-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
}

.article-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-yellow);
}

.article-content h2:first-of-type {
    margin-top: 0;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 25px;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.sidebar-widget:hover {
    border-color: var(--primary-yellow);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 8px;
}

.sidebar-widget > p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Sidebar Form */
.sidebar-form .form-group {
    margin-bottom: 15px;
}

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

.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.sidebar-form input::placeholder,
.sidebar-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.15);
}

.sidebar-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* WhatsApp Widget */
.whatsapp-widget {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
}

.widget-logo {
    height: 50px;
    margin: 0 auto 15px;
}

.whatsapp-widget h3 {
    margin-bottom: 20px;
}

/* Blog Detail Responsive */
@media (max-width: 1024px) {
    .blog-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-featured-box {
        grid-template-columns: 1fr;
    }
    
    .featured-box-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .blog-detail-page {
        padding: 30px 0 50px;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-featured-box {
        padding: 25px;
    }
    
    .featured-box-content h2 {
        font-size: 1.2rem;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .article-content h2 {
        font-size: 1.2rem;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .blog-detail-title {
        font-size: 1.5rem;
    }
    
    .blog-featured-box {
        padding: 20px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content p {
        font-size: 0.95rem;
        text-align: left;
    }
}


/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: var(--primary-gradient);
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-header .breadcrumb,
.page-header .breadcrumb a,
.page-header .breadcrumb span {
    color: var(--text-dark);
}

.page-header .breadcrumb a:hover {
    color: var(--secondary-color);
    opacity: 0.7;
}

.page-header .breadcrumb i {
    color: var(--text-dark);
    opacity: 0.7;
}


/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-page {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-info-section > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    background: var(--text-light);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.contact-info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.contact-info-card a:hover {
    color: var(--primary-orange);
}

.contact-whatsapp-cta {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-whatsapp-cta h3 {
    font-size: 1.2rem;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.contact-whatsapp-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form-section {
    background: var(--text-light);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    background: var(--text-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

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

/* Contact Map */
.contact-map-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    .contact-map {
        height: 300px;
    }
}


/* ========================================
   LEGAL PAGES (Privacy & Terms)
   ======================================== */
.legal-page {
    background: var(--bg-light);
}

.legal-content {
    background: var(--text-light);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-yellow);
}

.legal-update {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.legal-update i {
    color: var(--primary-orange);
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
}

.legal-content ul li::marker {
    color: var(--primary-orange);
}

.legal-contact {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.legal-contact p {
    margin-bottom: 8px;
}

.legal-contact i {
    color: var(--primary-orange);
    width: 20px;
    margin-right: 8px;
}

.legal-contact a {
    color: var(--primary-orange);
}

.legal-contact a:hover {
    text-decoration: underline;
}

/* Legal Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-content h2 {
        font-size: 1.15rem;
    }
}


/* ========================================
   PRODUCTS PAGE
   ======================================== */
.products-page {
    background: var(--bg-light);
}

.products-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar Filters */
.products-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-toggle-mobile {
    display: none;
}

.filters-container {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow);
}

.filter-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-header h3 i {
    color: var(--primary-orange);
}

.filter-reset {
    font-size: 0.85rem;
    color: var(--primary-orange);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.filter-reset:hover {
    text-decoration: underline;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Custom Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.filter-checkbox:hover {
    color: var(--primary-orange);
}

.filter-checkbox input {
    display: none;
}

.filter-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.filter-checkbox input:checked + .checkmark {
    background: var(--primary-gradient);
    border-color: var(--primary-yellow);
}

.filter-checkbox input:checked + .checkmark::after {
    content: '✓';
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
}

.filter-checkbox .count {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Color Filter */
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-checkbox,
.color-radio {
    cursor: pointer;
}

.color-checkbox input,
.color-radio input {
    display: none;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    transition: var(--transition-fast);
    display: block;
}

.color-checkbox:hover .color-swatch,
.color-radio:hover .color-swatch {
    transform: scale(1.1);
}

.color-checkbox input:checked + .color-swatch,
.color-radio input:checked + .color-swatch {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 2px var(--text-light), 0 0 0 4px var(--primary-yellow);
}

.filter-apply-btn {
    display: none;
}

/* Products Content */
.products-content {
    min-height: 500px;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--text-light);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.products-count {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.products-count span {
    font-weight: 700;
    color: var(--text-dark);
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-sort label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.products-sort select {
    padding: 8px 15px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.products-sort select:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.products-view {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    background: var(--text-light);
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover,
.view-btn.active {
    border-color: var(--primary-yellow);
    background: var(--primary-gradient);
    color: var(--text-dark);
}

/* Products Grid in Products Page */
.products-page .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* List View */
.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

.products-grid.list-view .product-image {
    aspect-ratio: 1;
}

.products-grid.list-view .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* No Results */
.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: var(--text-light);
    border-radius: var(--radius-lg);
}

.no-results i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Products Page Responsive */
@media (max-width: 1024px) {
    .products-page .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .products-wrapper {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: static;
        display: none;
    }
    
    .products-sidebar.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        background: white;
        overflow-y: auto;
        padding: 20px;
    }
    
    .filter-toggle-mobile {
        display: block;
        margin-bottom: 20px;
    }
    
    .filters-container {
        display: block;
        position: static;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }
    
    .filter-apply-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        padding: 18px;
        z-index: 2001;
    }
}

@media (max-width: 600px) {
    .products-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .products-page .product-card .product-info {
        padding: 12px;
    }
    
    .products-page .product-card .product-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .products-page .product-card .price-current {
        font-size: 1rem;
    }
    
    .products-page .product-card .price-old {
        font-size: 0.75rem;
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .products-sort {
        justify-content: space-between;
    }
    
    .products-view {
        justify-content: center;
    }
    
    .products-grid.list-view .product-card {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   CART PAGE
   ======================================== */
.cart-page {
    background: var(--bg-light);
    min-height: 60vh;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    background: var(--text-light);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-light);
}

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

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-category {
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-price .price-old {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.cart-item-price .price-current {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Quantity Controls */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 8px 12px;
    border-radius: var(--radius-md);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--text-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.qty-btn:hover {
    background: var(--primary-gradient);
}

.qty-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 100px;
    text-align: right;
}

.cart-item-remove {
    width: 40px;
    height: 40px;
    border: none;
    background: #fee;
    color: #e74c3c;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: #e74c3c;
    color: var(--text-light);
}

/* Cart Empty State */
.cart-empty,
.favorites-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    background: var(--text-light);
    border-radius: var(--radius-lg);
    grid-column: 1 / -1;
}

.cart-empty i,
.favorites-empty i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 25px;
}

.cart-empty h2,
.favorites-empty h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cart-empty p,
.favorites-empty p {
    color: var(--text-gray);
    margin-bottom: 25px;
    max-width: 400px;
}

.cart-empty .btn,
.favorites-empty .btn {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    width: auto !important;
    max-width: 200px !important;
    min-width: auto !important;
    height: auto !important;
}

.cart-empty .btn i,
.favorites-empty .btn i {
    font-size: 1rem !important;
}

/* Cart Summary */
.cart-summary {
    background: var(--text-light);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 120px;
}

.cart-summary h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-row.total {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--text-dark);
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.cart-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.cart-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cart-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.cart-info p i {
    color: var(--primary-orange);
}

/* Cart Responsive */
@media (max-width: 900px) {
    .cart-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-quantity,
    .cart-item-total,
    .cart-item-remove {
        grid-column: 2;
    }
    
    .cart-item-quantity {
        justify-self: start;
    }
    
    .cart-item-total {
        text-align: left;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .cart-item {
        position: relative;
        padding-right: 60px;
    }
}

/* ========================================
   FAVORITES PAGE
   ======================================== */
.favorites-page {
    background: var(--bg-light);
    min-height: 60vh;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.favorite-card .product-actions {
    opacity: 1;
}

.favorite-card .product-action-btn.active {
    background: #e74c3c;
    color: var(--text-light);
}

.favorite-card .product-action-btn.active:hover {
    background: #c0392b;
}

.btn-add-cart {
    margin-top: 12px;
    width: 100%;
    padding: 10px 15px;
    font-size: 0.85rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.favorites-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Favorites Responsive */
@media (max-width: 1024px) {
    .favorites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .favorites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .favorites-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .favorites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/* ========================================
   PRODUCT DETAIL PAGE - TRENDYOL STYLE
   ======================================== */
.page-header-sm {
    padding: 15px 0;
    background: var(--bg-light);
}

.page-header-sm .breadcrumb {
    margin: 0;
}

.product-detail-page {
    padding: 30px 0 60px;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
}

.gallery-main {
    position: relative;
    background: #f8f8f8;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.gallery-zoom {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.gallery-zoom:hover {
    background: var(--primary-yellow);
    transform: scale(1.1);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

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

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

/* Product Info Detail */
.product-info-detail {
    padding: 10px 0;
}

.product-brand {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title-detail {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-rating .stars {
    color: #f39c12;
    font-size: 1rem;
}

.product-rating .stars i {
    margin-right: 2px;
}

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

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.price-old-detail {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.price-current-detail {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Color Variants */
.product-variants {
    margin-bottom: 25px;
}

.product-variants h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.variant-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.variant-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    text-decoration: none;
}

.variant-item:hover,
.variant-item.active {
    border-color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.05);
}

.variant-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.variant-item span {
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.product-color-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-color-info .label {
    color: var(--text-gray);
}

.product-color-info .value {
    font-weight: 600;
    color: var(--text-dark);
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #27ae60;
    margin-bottom: 25px;
}

/* Product Actions Detail */
.product-actions-detail {
    margin-bottom: 30px;
}

.product-actions-detail .btn-block {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.action-buttons .btn-primary {
    flex: 1;
    justify-content: center;
}

.btn-icon {
    width: 55px;
    padding: 0;
    justify-content: center;
}

.btn-lg {
    padding: 16px 30px;
    font-size: 1rem;
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-item strong {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.feature-item span {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Product Description Section */
.product-description-section {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
}

.product-description-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.description-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* Similar Products */
.similar-products {
    padding-top: 0;
}

.similar-products .section-header {
    text-align: left;
    margin-bottom: 25px;
}

.similar-products .section-title {
    font-size: 1.5rem;
}

/* Product Detail Responsive */
@media (max-width: 1024px) {
    .product-detail-wrapper {
        gap: 30px;
    }
    
    .product-title-detail {
        font-size: 1.5rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-title-detail {
        font-size: 1.3rem;
    }
    
    .price-current-detail {
        font-size: 1.6rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-icon {
        width: 100%;
    }
    
    .product-features {
        padding: 15px;
    }
    
    .feature-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .variant-item img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .product-detail-page {
        padding: 20px 0 40px;
    }
    
    .product-price-detail {
        padding: 15px;
    }
    
    .price-current-detail {
        font-size: 1.4rem;
    }
    
    .gallery-thumbs {
        gap: 8px;
    }
    
    .thumb {
        width: 55px;
        height: 55px;
    }
    
    .product-description-section {
        padding: 20px;
    }
}


/* No Image Placeholder */
.no-image-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-image-placeholder i {
    font-size: 3rem;
    color: #ccc;
}


/* Products Page Full Width (No Sidebar) */
.products-content-full {
    width: 100%;
}

.products-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

@media (max-width: 900px) {
    .products-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .products-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/* Sidebar Close Button */
.sidebar-close-btn {
    display: none;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .sidebar-close-btn {
        display: block;
    }
    
    .sidebar-close-btn .btn {
        width: 100%;
        justify-content: center;
    }
    
    .products-toolbar .filter-toggle-mobile {
        display: block;
    }
}

@media (min-width: 901px) {
    .products-toolbar .filter-toggle-mobile {
        display: none;
    }
}
