/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #ffb3d9;
    --accent-color: #ff8c42;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fff5f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    width: 100%;
    position: relative;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img,
.logo svg {
    height: 50px;
    width: auto;
    max-width: 250px;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (min-width: 769px) and (max-width: 1024px) {
    nav {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.95rem;
        padding: 0.4rem 0.6rem;
    }
}

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

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

.lang-switcher {
    display: none !important;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: var(--bg-light);
}

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

.cart-link {
    position: relative;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cart-link {
        padding: 0.45rem 0.9rem;
        font-size: 0.95rem;
    }
}

.cart-link:hover {
    background: var(--accent-color);
}

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

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none !important;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 0;
}

.mobile-nav.active {
    display: flex !important;
    max-height: 500px;
    padding: 1rem 0;
    opacity: 1;
}

.mobile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s, color 0.3s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.mobile-lang-switcher {
    display: none !important;
}

.mobile-lang-btn {
    flex: 1;
    max-width: 100px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    min-height: 44px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
}

.mobile-lang-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.mobile-lang-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* About Brand */
.about-brand {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.about-brand h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-brand p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.info-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    overflow: hidden;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    min-height: 60px;
}

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

.product-stock {
    color: var(--success-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart-btn:hover {
    background: var(--accent-color);
}

/* Category Section */
.category-section {
    margin: 4rem 0;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

/* Cart Table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.cart-table th,
.cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

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

.quantity-input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .quantity-input {
        width: 80px;
    }
}

.remove-btn {
    background: #f44336;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.remove-btn:hover {
    background: #d32f2f;
}

.cart-total {
    text-align: right;
    margin: 2rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.cart-total span {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner .btn {
    margin: 0;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Contact Info */
.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item span {
    color: var(--text-light);
}

.map-container {
    width: 100%;
    margin: 2rem 0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Responsive - Tablets (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }

    nav {
        gap: 1rem;
        font-size: 0.95rem;
    }

    nav a {
        padding: 0.4rem 0.6rem;
    }

    .logo img,
    .logo svg {
        height: 45px;
        max-width: 220px;
    }

    .container {
        padding: 2rem 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.75rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

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

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .category-title {
        font-size: 1.8rem;
        margin-bottom: 1.75rem;
    }

    .product-card {
        margin-bottom: 0;
    }

    .product-image {
        height: 220px;
    }

    .product-name {
        font-size: 1.25rem;
    }

    .product-description {
        font-size: 0.95rem;
        min-height: 55px;
    }

    .product-price {
        font-size: 1.4rem;
    }

    .about-brand {
        padding: 2.5rem 2rem;
    }

    .about-brand h2 {
        font-size: 1.9rem;
    }

    .about-brand p {
        font-size: 1.05rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2.3rem;
    }

    .legal-content h2 {
        font-size: 1.7rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .cart-table {
        font-size: 0.95rem;
        display: table;
        width: 100%;
    }

    .cart-table thead {
        display: table-header-group;
    }

    .cart-table tbody {
        display: table-row-group;
    }

    .cart-table tr {
        display: table-row;
    }

    .cart-table th,
    .cart-table td {
        padding: 0.9rem;
        display: table-cell;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }

    .cart-table td:before {
        display: none;
    }

    .cart-table td:first-child {
        text-align: left;
        font-weight: normal;
        font-size: 0.95rem;
        margin-bottom: 0;
        padding-bottom: 0.9rem;
        border-bottom: 1px solid var(--border-color);
    }

    .cart-table td:last-child {
        text-align: left;
        padding-top: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.85rem;
        font-size: 0.98rem;
    }

    .btn {
        padding: 0.95rem 1.9rem;
        font-size: 0.98rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-text {
        text-align: left;
    }
}

/* Responsive - Large Tablets (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }

    .info-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

/* Responsive - Small Tablets and Large Phones (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .header-container {
        padding: 0 1.25rem;
    }

    .logo img,
    .logo svg {
        height: 40px;
        max-width: 200px;
    }

    nav {
        display: none !important;
    }

    .burger-menu {
        display: flex !important;
    }

    .container {
        padding: 1.5rem 1.25rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .hero {
        padding: 2.5rem 1.5rem;
    }

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

    .hero p {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .category-title {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.93rem;
        min-height: 55px;
    }

    .product-price {
        font-size: 1.35rem;
    }

    .about-brand {
        padding: 2rem 1.5rem;
    }

    .about-brand h2 {
        font-size: 1.7rem;
    }

    .contact-info {
        padding: 1.75rem 1.5rem;
    }

    .map-container iframe {
        height: 320px;
    }

    .legal-content {
        padding: 1.75rem 1.25rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .cart-table {
        font-size: 0.92rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.96rem;
    }
}

/* Responsive - Mobile Tablets and Phones (up to 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 1.5rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .category-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    nav {
        display: none !important;
    }

    .burger-menu {
        display: flex !important;
    }

    .mobile-nav.active {
        display: flex !important;
        opacity: 1;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }

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

    .cart-table {
        font-size: 0.9rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody {
        display: block;
    }

    .cart-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 1rem;
        background: var(--bg-white);
    }

    .cart-table td {
        display: block;
        text-align: right;
        padding: 0.5rem 0;
        border: none;
    }

    .cart-table td:before {
        content: attr(data-label) ": ";
        float: left;
        font-weight: bold;
        color: var(--text-dark);
        margin-right: 0.5rem;
    }

    .cart-table td:first-child {
        text-align: left;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--border-color);
    }

    .cart-table td:first-child:before {
        display: none;
    }

    .cart-table td:last-child {
        text-align: center;
        padding-top: 0.75rem;
    }

    .cart-table .quantity-input {
        width: 80px;
        margin: 0 auto;
    }

    .cart-table .remove-btn {
        width: 100%;
        max-width: 150px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-text {
        text-align: center;
    }

    .about-brand {
        padding: 2rem 1.5rem;
    }

    .about-brand h2 {
        font-size: 1.6rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .product-card {
        margin-bottom: 0;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.3rem;
    }
}

/* Responsive - Mobile Phones (up to 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem 1rem;
    }

    .logo img,
    .logo svg {
        height: 35px;
        max-width: 180px;
    }

    .container {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .category-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

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

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

    .info-card {
        padding: 1.5rem;
    }

    .info-card-icon {
        font-size: 2.5rem;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .product-card {
        margin-bottom: 0;
    }

    .product-image {
        height: 180px;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.9rem;
        min-height: 50px;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .cart-table {
        font-size: 0.85rem;
    }

    .cart-table tr {
        padding: 0.75rem;
    }

    .cart-table td {
        padding: 0.4rem 0;
    }

    .cart-total {
        font-size: 1.3rem;
        text-align: center;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-item {
        margin-bottom: 1rem;
    }

    .contact-item strong {
        font-size: 0.95rem;
    }

    .contact-item span {
        font-size: 0.9rem;
        word-break: break-word;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .map-container {
        margin: 1.5rem 0;
    }

    .map-container iframe {
        height: 250px;
    }

    .about-brand {
        padding: 1.5rem 1rem;
    }

    .about-brand h2 {
        font-size: 1.4rem;
    }

    .about-brand p {
        font-size: 1rem;
    }

    .legal-content {
        padding: 1.5rem 1rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }

    .legal-content p,
    .legal-content li {
        font-size: 0.95rem;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section a {
        font-size: 0.9rem;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .btn-secondary {
        width: auto;
    }

    .lang-switcher {
        gap: 0.3rem;
    }

    .lang-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.85rem;
    }

    .cart-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }

    .category-section {
        margin: 3rem 0;
    }

    .mobile-nav {
        padding: 0;
    }

    .mobile-nav.active {
        padding: 1rem 0;
    }

    .mobile-nav a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Responsive - Small Mobile Phones (up to 360px) */
@media (max-width: 360px) {
    .header-container {
        padding: 0.5rem 0.75rem;
    }

    .logo img,
    .logo svg {
        height: 30px;
        max-width: 150px;
    }

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

    .hero p {
        font-size: 0.95rem;
    }

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

    .product-name {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Touch improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .add-to-cart-btn,
    .remove-btn,
    .lang-btn,
    .cart-link {
        min-height: 44px;
        min-width: 44px;
    }

    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    input[type="number"],
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 1.5rem;
    }

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

    .hero p {
        font-size: 1rem;
    }
}

/* Landscape orientation for tablets */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        padding: 2.5rem 1.5rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .info-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

