* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff8c00;
    --secondary-color: #ff7700;
    --accent-color: #f8b500;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: #000000;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

.header-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-link {
    color: var(--dark-color);
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    color: var(--primary-color);
}

.cart-icon {
    position: relative;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 50%, #f7931e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.03) 100px,
            rgba(255, 255, 255, 0.03) 200px
        );
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 3;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.element-4 {
    top: 30%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
}

.btn-primary {
    background: #ff8c00;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.btn-primary:hover {
    background: #ff7700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.6);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-cart {
    background: var(--accent-color);
    color: var(--dark-color);
    width: 100%;
    margin-top: 1rem;
}

.btn-cart:hover {
    background: #e0a000;
    transform: translateY(-2px);
}

.btn-price {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
    margin-top: 0;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-price:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--white);
}

/* Categories */
.categories {
    padding: 5rem 0;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-card[data-category]:active {
    transform: translateY(-5px);
}


/* Kategori Görseli - Turuncu arka plan üzerinde siyah yazı (Ürünleri Keşfet butonu rengi) */
.category-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #ff8c00;
    border-radius: 15px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Kategori içeriği - Başlık ve emoji için container */
.category-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

/* Kategori başlığı - Ortalı, başlıkla aynı font */
.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
    transition: all 0.3s ease;
    max-width: 100%;
    word-wrap: break-word;
}

/* Kategori emoji - Başlığın altında ortalı */
.category-emoji {
    font-size: 2.5rem;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.category-card:hover .category-image {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-card:hover .category-title {
    transform: scale(1.05);
}

.category-card:hover .category-emoji {
    transform: scale(1.1);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card:active .category-image {
    transform: translateY(-5px);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
    display: block;
    min-width: 100%;
    min-height: 100%;
    opacity: 1;
    visibility: visible;
}



/* Products */
.products {
    padding: 5rem 0;
    background: var(--white);
}

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

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
    display: block;
    min-width: 100%;
    min-height: 100%;
    opacity: 1;
    visibility: visible;
}

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

/* Öğretmenler Günü Hediye Kutusu görselleri için tam doldurma */
.product-image-ogretmenler {
    background: transparent;
}

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

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

/* Öğretmenler Kutusu 2 - kutuya tam oturan ama zoomlanmış görünmeyen görünüm */
.product-image-ogretmenler-2 img {
    object-fit: cover;
    object-position: center;
    transform: scale(0.95);
}

.product-card:hover .product-image-ogretmenler-2 img {
    transform: scale(1.0);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    min-height: 3rem;
    max-height: 3rem;
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info .product-description {
    flex-grow: 1;
    margin-bottom: 1rem;
    min-height: 4.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info .btn {
    margin-top: auto;
    flex-shrink: 0;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 4.5rem;
}

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

/* Features */
.features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    line-height: 1.8;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-intro {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: var(--dark-color) !important;
    margin-bottom: 2rem !important;
}

.about-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-closing {
    font-style: italic;
    margin-top: 2rem !important;
    font-size: 1.15rem !important;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.info-box h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-box p {
    color: var(--dark-color);
    line-height: 1.8;
    opacity: 0.8;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--secondary-color);
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

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

.btn-submit {
    margin-top: 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit i {
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

/* Instagram Contact Box */
.instagram-contact-box {
    text-align: center;
    padding: 2rem;
}

.instagram-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
    transition: all 0.3s ease;
}

.instagram-contact-box:hover .instagram-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.4);
}

.instagram-contact-box h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.instagram-contact-box p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(188, 24, 136, 0.3);
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(188, 24, 136, 0.4);
    color: var(--white);
}

.btn-instagram i {
    font-size: 1.3rem;
}

/* Responsive Contact */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Snow Effect */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 15px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    opacity: 0.9;
    will-change: transform;
    pointer-events: none;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.9;
    }
    95% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(110vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

    @media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        position: relative;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1.5rem;
        transition: left 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .header-icons {
        gap: 0.75rem;
    }
    
    .header-icons .icon-link {
        font-size: 1.1rem;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .search-container {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 1rem;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 998;
    }
    
    .search-container input {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card,
    .product-card {
        margin-bottom: 0;
        overflow: visible;
    }
    
    .category-image {
        height: 250px;
        border-radius: 12px;
        overflow: visible;
        padding: 1.5rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .category-card {
        overflow: visible;
    }
    
    .category-image img {
        min-width: 100%;
        min-height: 100%;
        opacity: 1;
        visibility: visible;
    }
    
    .product-image {
        height: 300px;
    }
    
    .categories,
    .products,
    .about,
    .contact,
    .features {
        padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about-text {
        padding: 0 1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-intro {
        font-size: 1.05rem !important;
        padding: 0 1rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .info-box {
        padding: 1.25rem;
    }
    
    .info-box h3 {
        font-size: 1.1rem;
    }
    
    .info-box p,
    .info-box a {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-section p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.9rem;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-section ul li {
        text-align: center;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links a {
        font-size: 1.3rem;
    }
    
    .product-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .btn-small {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 0.4rem;
        display: flex;
    }
    
    .header-icons .icon-link {
        font-size: 1rem;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
        padding: 1.5rem 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-primary {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .categories,
    .products,
    .about,
    .contact,
    .features {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .category-card {
        overflow: visible;
    }
    
    .category-image {
        height: 220px;
        border-radius: 10px;
        overflow: visible;
    }
    
    .category-image {
        height: 220px;
        border-radius: 10px;
        padding: 1.25rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .category-image img {
        min-width: 100%;
        min-height: 100%;
        opacity: 1;
        visibility: visible;
    }
    
    .product-image {
        height: 280px;
    }
    
    .category-card h3,
    .product-card h3 {
        font-size: 1.1rem;
        padding: 1rem 0.75rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        padding: 0 0.75rem;
        line-height: 1.6;
    }
    
    .btn-small {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
        margin: 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-item i {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    .about-text {
        padding: 0 0.75rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .about-intro {
        font-size: 1rem !important;
        padding: 0 0.75rem;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.25rem;
    }
    
    .instagram-contact-box {
        padding: 1.5rem;
    }
    
    .instagram-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .instagram-contact-box h3 {
        font-size: 1.5rem;
    }
    
    .instagram-contact-box p {
        font-size: 1rem;
    }
    
    .btn-instagram {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.65rem;
        font-size: 0.85rem;
    }
    
    .contact-form label {
        font-size: 0.9rem;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .info-box p,
    .info-box a {
        font-size: 0.85rem;
    }
    
    .info-box i {
        font-size: 1.1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .footer-section p {
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-section ul {
        align-items: center;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .social-links a {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

/* New Year Campaign Popup */
.new-year-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 12000;
}

.new-year-popup.show {
    display: flex;
}

.popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.popup-dialog {
    position: relative;
    width: 90%;
    max-width: 420px;
    z-index: 12001;
    padding: 1rem;
}

.popup-card {
    position: relative;
    background: linear-gradient(160deg, #b3583c, #a44a32, #8f3a2a);
    border-radius: 20px;
    padding: 2.5rem 1.75rem 2.25rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.popup-card::before,
.popup-card::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 60%);
    filter: blur(8px);
}

.popup-card::before {
    top: -40px;
    left: -20px;
}

.popup-card::after {
    bottom: -40px;
    right: -10px;
}

.popup-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f7d07a, #e0a64f);
    display: grid;
    place-items: center;
    color: #8f3a2a;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.popup-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.popup-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #f8f1e8;
    margin-bottom: 1.4rem;
}

.popup-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f8f1e8;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
    font-weight: 500;
}

.popup-instagram-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.popup-instagram-link i {
    font-size: 1.2rem;
    color: #ffd27f;
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd27f, #ffb347);
    color: #5b240f;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.popup-cta i {
    font-size: 1.2rem;
}

.popup-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease;
    font-size: 1.1rem;
}

.popup-close:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 480px) {
    .popup-card {
        padding: 2.2rem 1.3rem 2rem;
    }
    
    .popup-text {
        font-size: 0.95rem;
    }
    
    .popup-cta {
        width: 100%;
        justify-content: center;
    }
    
    .popup-instagram-link {
        font-size: 0.95rem;
    }
}


