/* ===== CSS VARIABLES ===== */
:root {
    --primary: #E85D04;
    --primary-dark: #D45103;
    --primary-light: #F48C06;
    --secondary: #1A1A2E;
    --secondary-light: #16213E;
    --accent: #FFBA08;
    --accent-dark: #FAA307;
    --text-dark: #1A1A2E;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border: #E5E7EB;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== UTILITIES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    gap: 25px;
}

.top-links a,
.top-contact a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-links a:hover,
.top-contact a:hover {
    color: var(--accent);
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 22px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
}

.logo-text span {
    color: var(--primary);
}

.main-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--bg-white);
    min-width: 320px;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-light);
}

.dropdown-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 14px;
}

.dropdown-item span {
    font-size: 14px;
    font-weight: 500;
}

.dropdown-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    margin-top: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.dropdown-view-all:hover {
    background: var(--primary);
    color: var(--text-white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary);
    color: var(--text-white);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    font-size: 20px;
    color: var(--text-dark);
}

.nav-close {
    display: none;
}

/* ===== SEARCH MODAL ===== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
}

.search-form {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 18px 25px;
    font-size: 16px;
    border: none;
    outline: none;
}

.search-submit {
    padding: 18px 25px;
    background: var(--primary);
    color: var(--text-white);
    font-size: 18px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF5EB 0%, #FFF9F0 50%, #FFFDF8 100%);
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 217, 61, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 217, 61, 0.1) 100%);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--accent-dark);
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--secondary);
}

.hero-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-feature i {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    max-width: 450px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 18px;
}

.card-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.card-1 i {
    color: #EF4444;
}

.card-2 {
    bottom: 20%;
    right: 0;
    animation-delay: 2s;
}

.card-2 i {
    color: #FBBF24;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 217, 61, 0.1) 100%);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    padding: 100px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 217, 61, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text-white);
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-count {
    font-size: 13px;
    color: var(--text-light);
}

.category-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--primary);
    color: var(--text-white);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 100px 0;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: 50px;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: var(--text-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge-new {
    background: var(--success);
    color: var(--text-white);
}

.badge-bestseller {
    background: var(--primary);
    color: var(--text-white);
}

.badge-discount {
    background: var(--danger);
    color: var(--text-white);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--primary);
    color: var(--text-white);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 15px;
}

.product-rating i {
    font-size: 12px;
    color: #FBBF24;
}

.product-rating span {
    font-size: 13px;
    color: var(--text-light);
    margin-left: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== CUSTOM ORDER SECTION ===== */
.custom-order {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.custom-order-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    z-index: -1;
}

.custom-order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-order-text {
    color: var(--text-white);
}

.custom-order-text .section-badge {
    background: rgba(255, 255, 255, 0.1);
}

.custom-order-text .section-title {
    color: var(--text-white);
}

.custom-order-text p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.custom-features {
    margin-bottom: 35px;
}

.custom-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 15px;
}

.custom-features li i {
    color: var(--success);
    font-size: 18px;
}

.custom-order-visual {
    display: flex;
    justify-content: center;
}

.upload-mockup {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.upload-icon {
    width: 120px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
}

.upload-mockup>span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 80px;
    text-align: center;
}

.upload-arrow {
    font-size: 30px;
    color: var(--accent);
    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.result-mockup {
    width: 150px;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.result-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Grid for Why Choose Us */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 100px 0;
    background: var(--bg-light);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc(33.333% - 17px);
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
}

.review-author h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.review-stars i {
    font-size: 12px;
    color: #FBBF24;
}

.review-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.7;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.review-nav-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.review-nav-btn:hover {
    background: var(--primary);
    color: var(--text-white);
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-white);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 25px;
    font-size: 15px;
    color: var(--text-light);
    background: var(--bg-light);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 80px 0;
    background: var(--bg-light);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 15px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    width: 300px;
    padding: 16px 25px;
    font-size: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    padding: 80px 0 30px;
    color: var(--text-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: var(--primary);
}

.footer-logo .logo-text {
    color: var(--text-white);
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links ul li a i {
    font-size: 10px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.7;
}

.footer-contact ul li i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.payment-methods img {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--primary);
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-light);
    position: relative;
}

.mobile-nav-item i {
    font-size: 20px;
}

.mobile-nav-item.cart .cart-badge {
    position: absolute;
    top: -5px;
    right: 50%;
    margin-right: -20px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: var(--text-white);
    font-size: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    color: var(--primary);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--text-white);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 44px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        z-index: 2000;
        transition: var(--transition);
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-close {
        display: flex;
        align-self: flex-end;
        width: 40px;
        height: 40px;
        background: var(--bg-light);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 10px 0;
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image {
        max-width: 350px;
    }

    .floating-card {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-order-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .custom-order-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card {
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 36px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-card {
        padding: 20px;
    }

    .category-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul li a {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .payment-methods {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .review-card {
        min-width: 100%;
    }

    .upload-mockup {
        flex-direction: column;
        padding: 25px;
    }

    .upload-arrow {
        transform: rotate(90deg);
    }

    @keyframes arrowMove {

        0%,
        100% {
            transform: rotate(90deg) translateX(0);
        }

        50% {
            transform: rotate(90deg) translateX(10px);
        }
    }

    .whatsapp-float {
        bottom: 100px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-image {
        max-width: 280px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MOBILE BOTTOM NAVIGATION ===== */
.mobile-bottom-nav {
    display: none !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
        justify-content: space-around;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: var(--text-light);
    position: relative;
}

.mobile-nav-item i {
    font-size: 20px;
}

.mobile-nav-item.cart .cart-badge {
    position: absolute;
    top: -5px;
    right: 50%;
    transform: translateX(100%);
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--primary);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 20px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: var(--border);
    font-size: 10px;
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== PRODUCTS PAGE ===== */
.products-page {
    padding: 50px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.products-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}

.category-list li {
    margin-bottom: 5px;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.category-list li a:hover,
.category-list li.active a {
    background: var(--bg-light);
    color: var(--primary);
}

.category-list li a .count {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-light);
}

.products-main {
    min-width: 0;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.results-count {
    font-size: 14px;
    color: var(--text-light);
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-dropdown label {
    font-size: 14px;
    color: var(--text-light);
}

.sort-dropdown select {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.search-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #FEF3C7;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.clear-search {
    font-size: 14px;
    color: var(--primary);
}

.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products i {
    font-size: 60px;
    color: var(--border);
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.no-products p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary);
    color: var(--text-white);
}

.pagination-dots {
    padding: 10px;
}

/* ===== CART PAGE ===== */
.cart-section {
    padding: 50px 0;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.empty-cart i {
    font-size: 80px;
    color: var(--border);
    margin-bottom: 25px;
}

.empty-cart h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

.cart-items {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-item .col-product {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-item .col-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item .col-product h3 {
    font-size: 15px;
    font-weight: 600;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--bg-light);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 14px;
    font-weight: 600;
}

.remove-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger);
    border-radius: var(--radius-sm);
}

.remove-btn:hover {
    background: #FEE2E2;
}

.cart-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.cart-summary {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
}

.summary-row.total {
    border-top: 2px solid var(--border);
    margin-top: 15px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

.summary-row.total span:last-child {
    color: var(--primary);
}

.free-shipping {
    color: var(--success);
    font-weight: 600;
}

.free-shipping-info {
    background: #FEF3C7;
    padding: 15px;
    border-radius: var(--radius-sm);
    margin: 15px 0;
    font-size: 13px;
    color: #92400E;
}

.free-shipping-info .progress-bar {
    height: 6px;
    background: #FCD34D;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.free-shipping-info .progress {
    height: 100%;
    background: var(--success);
    border-radius: 3px;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 30px;
    font-size: 16px;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.secure-checkout i {
    color: var(--success);
}

.btn-success {
    background: var(--success);
    color: #fff;
}

/* ===== CONTACT PAGE SIMPLE & PREMIUM ===== */
.contact-page-simple {
    padding: 100px 0;
    background: var(--bg-light);
    min-height: calc(100vh - 400px);
}

.contact-card-centered {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 60px;
    border: 1px solid var(--border);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.premium-form .form-group {
    margin-bottom: 25px;
}

.premium-form .form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.premium-form .form-group label i {
    color: var(--primary);
    font-size: 14px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

.premium-form textarea {
    resize: none;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-submit {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

.contact-alternative {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
    text-align: center;
}

.contact-alternative p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.whatsapp-link:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-card-centered {
        padding: 40px 25px;
    }

    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-header h1 {
        font-size: 32px;
    }

    .form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FAQ PAGE ===== */
.faq-page {
    padding: 80px 0;
}

.faq-contact {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-top: 50px;
}

.faq-contact h3 {
    margin-bottom: 10px;
}

.faq-contact p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.faq-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        display: none;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .cart-item .col-product {
        flex-direction: column;
    }
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.badge-new {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.badge-bestseller {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.badge-discount {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
    text-decoration: none;
}

.product-action-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
    color: #FFBA08;
    font-size: 14px;
}

.product-rating .rating-count {
    font-size: 13px;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    .product-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-image-wrapper {
        height: 240px;
    }

    .product-info {
        padding: 15px;
    }

    .product-title {
        font-size: 16px;
    }

    .current-price {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image-wrapper {
        height: 300px;
    }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
    padding: 40px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Gallery */
.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    background: white;
}

.main-image-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.main-image-wrapper:hover .main-image-element {
    transform: scale(1.1);
    cursor: zoom-in;
}

.detail-badge {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.detail-badge.badge-new {
    left: 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.detail-badge.badge-discount {
    right: 20px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.image-zoom-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    pointer-events: none;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.thumbnail {
    height: 80px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0.6;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary);
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Detail */
.product-info-detail {
    padding: 10px 0;
}

.product-category-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-light);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.product-title-detail {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.product-rating-detail .stars {
    color: #FFBA08;
    font-size: 18px;
}

.product-rating-detail .rating-count {
    color: var(--text-muted);
    font-size: 14px;
}

.product-rating-detail .view-count {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Price Section */
.product-price-detail {
    margin-bottom: 25px;
}

.product-price-detail .current-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-right: 15px;
}

.product-price-detail .old-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-amount {
    display: inline-block;
    vertical-align: top;
    background: #DCFCE7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
    margin-top: 10px;
}

.product-short-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Specs Grid */
.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.spec-item {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.spec-item:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: var(--shadow-sm);
}

.spec-item i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.spec-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.spec-value {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

/* Actions */
.add-to-cart-section {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    height: 54px;
    background: white;
}

.qty-btn {
    width: 40px;
    height: 100%;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.qty-btn:hover {
    color: var(--primary);
}

.qty-input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    appearance: none;
}

/* Remove Arrows from number input */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn {
    flex: 1;
    min-width: 200px;
    height: 54px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-wishlist-btn {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.trust-badge i {
    color: var(--success);
    font-size: 18px;
}

.whatsapp-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-contact-btn:hover {
    background: #128C7E;
    color: white;
}

/* Tabs */
.product-tabs {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
}

.tab-btn {
    padding: 20px 30px;
    border: none;
    background: none;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn.active {
    color: var(--primary);
    background: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.tabs-content {
    padding: 40px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.specs-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
}

.specs-table tr:nth-child(odd) {
    background: var(--bg-light);
}

.specs-table th,
.specs-table td {
    padding: 12px 15px;
    text-align: left;
}

.specs-table th {
    width: 40%;
    font-weight: 600;
    color: var(--text-dark);
}

.specs-table td {
    color: var(--text-secondary);
}

/* Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.review-meta h4 {
    font-size: 16px;
    margin: 0 0 4px 0;
}

.review-stars {
    font-size: 12px;
    color: #FFBA08;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
    display: block;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .main-image-wrapper {
        height: 300px;
    }

    .product-title-detail {
        font-size: 24px;
    }

    .product-price-detail .current-price {
        font-size: 28px;
    }

    .thumbnail-images {
        grid-template-columns: repeat(4, 1fr);
    }

    .tabs-header {
        overflow-x: auto;
    }

    .tab-btn {
        white-space: nowrap;
        padding: 15px 20px;
    }
}

.free-shipping-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #E0F2FE;
    color: #0284C7;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    width: fit-content;
}

/* Center Footer Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    justify-items: center;
    /* Grid itemlarını da kendi içinde ortalar */
    max-width: 1000px;
    /* Çok yayılmasını engeller */
    margin: 0 auto;
    /* Konteyneri ortalar */
}

/* Feature card içini de ortala */
.feature-card {
    text-align: center;
    width: 100%;
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.close-lightbox:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Ana resim üzerine gelince cursor değişsin */
.main-image-wrapper {
    cursor: zoom-in;
}