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

:root {
    --primary-color: #FB4F2A;
    --secondary-color: #A6AEAE;
    --bg-color: #e8ecef;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --white: #ffffff;
    --shadow-light: rgba(255, 255, 255, 0.8);
    --shadow-dark: rgba(163, 177, 198, 0.6);
}

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

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

/* Header */
header {
    position: sticky;
    top: 0;
    background-color: var(--bg-color);
    box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: clamp(0.9rem, 1vw, 1rem);
    transition: color 0.3s;
    position: relative;
}

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Banner */
.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, #d4dce3 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.animate-slide-in {
    animation: slideIn 1s ease-out;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
}

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

.btn-primary:hover {
    box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-color);
    color: var(--text-dark);
}

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

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 20px 20px 40px var(--shadow-dark), -20px -20px 40px var(--shadow-light);
    background-color: var(--secondary-color);
}

.floating-image {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Counters Section */
.counters-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.counters-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.counter-card {
    flex: 1;
    min-width: 200px;
    padding: 40px 30px;
    background-color: var(--bg-color);
    border-radius: 20px;
    text-align: center;
    box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    transition: transform 0.3s;
}

.counter-card:hover {
    transform: translateY(-10px);
}

.counter-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.counter {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.counter-card p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 20px 20px 40px var(--shadow-dark), -20px -20px 40px var(--shadow-light);
    background-color: var(--secondary-color);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-color);
    border-radius: 15px;
    box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 50px;
}

/* Kralen Section */
.kralen-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.kralen-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.kralen-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    transition: transform 0.3s;
}

.kralen-card:hover {
    transform: translateY(-10px);
}

.kralen-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.kralen-content {
    padding: 25px;
}

.kralen-content h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.kralen-content p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    line-height: 1.6;
}

/* Steklarus Section */
.steklarus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4dce3 0%, var(--bg-color) 100%);
}

.steklarus-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.steklarus-text {
    flex: 1.5;
}

.steklarus-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 25px;
}

.steklarus-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
}

.steklarus-features {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: var(--bg-color);
    border-radius: 20px;
    box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

.feature-box h4 {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 15px;
}

.feature-box ul {
    list-style: none;
}

.feature-box ul li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.feature-box ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.external-link {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 15px;
    box-shadow: inset 8px 8px 16px var(--shadow-dark), inset -8px -8px 16px var(--shadow-light);
}

.external-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.external-link a:hover {
    text-decoration: underline;
}

.steklarus-image {
    flex: 1;
}

.steklarus-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 20px 20px 40px var(--shadow-dark), -20px -20px 40px var(--shadow-light);
    background-color: var(--secondary-color);
}

/* Techniques Section */
.techniques-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.techniques-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.techniques-image {
    flex: 1;
}

.techniques-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 20px 20px 40px var(--shadow-dark), -20px -20px 40px var(--shadow-light);
    background-color: var(--secondary-color);
}

.techniques-text {
    flex: 1.5;
}

.techniques-text h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 30px;
}

.techniques-text h3:first-child {
    margin-top: 0;
}

.techniques-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
}

.techniques-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.technique-type {
    padding: 25px;
    background-color: var(--bg-color);
    border-radius: 20px;
    box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technique-type:hover {
    transform: translateY(-5px);
    box-shadow: 15px 15px 30px var(--shadow-dark), -15px -15px 30px var(--shadow-light);
}

.technique-type h4 {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 10px;
    font-weight: 600;
}

.technique-type p {
    margin-bottom: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Shop Section */
.shop-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, #d4dce3 100%);
}

.shop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.product-card {
    flex: 1 1 calc(33.333% - 35px);
    min-width: 300px;
    background-color: var(--bg-color);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 15px 15px 30px var(--shadow-dark), -15px -15px 30px var(--shadow-light);
    transition: transform 0.3s;
}

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

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--secondary-color);
    transition: transform 0.3s;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

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

.price {
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-shop {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    transition: all 0.3s;
    box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
}

.btn-shop:hover {
    box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.faq-item {
    margin-bottom: 20px;
    background-color: var(--bg-color);
    border-radius: 15px;
    box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
    overflow: hidden;
}

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

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

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

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

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e03e1a 100%);
}

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

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

.newsletter-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 15px;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    background-color: var(--white);
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.1);
}

.newsletter-form button {
    padding: 15px 35px;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
}

.footer-col p,
.footer-col ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content,
    .about-content,
    .steklarus-content,
    .techniques-content {
        flex-direction: column;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .counters-grid {
        flex-direction: column;
    }

    .kralen-card,
    .product-card {
        flex: 1 1 100%;
    }

    .steklarus-features {
        flex-direction: column;
    }
}

/* Mobile optimization for 320px width */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .logo {
        height: 40px;
    }

    .hero-banner {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

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

    .hero-buttons {
        gap: 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-image img {
        height: 250px;
    }

    .counter-card {
        padding: 25px 20px;
        min-width: 150px;
    }

    .counter {
        font-size: 2rem;
    }

    .counter-card p {
        font-size: 0.85rem;
    }

    .about-content,
    .steklarus-content,
    .techniques-content {
        gap: 30px;
    }

    .about-image img,
    .steklarus-image img,
    .techniques-image img {
        height: 300px;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .kralen-card {
        min-width: 100%;
    }

    .kralen-content {
        padding: 20px;
    }

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

    .kralen-content p {
        font-size: 0.85rem;
    }

    .feature-box {
        min-width: 100%;
        padding: 20px;
    }

    .feature-box h4 {
        font-size: 1rem;
    }

    .feature-box ul li {
        font-size: 0.85rem;
    }

    .product-card {
        min-width: 100%;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .product-info p {
        font-size: 0.85rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .btn-shop {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .newsletter-content {
        gap: 25px;
    }

    .newsletter-text h2 {
        font-size: 1.6rem;
    }

    .newsletter-text p {
        font-size: 0.95rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .newsletter-form button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .footer-grid {
        gap: 25px;
    }

    .footer-col {
        min-width: 100%;
    }

    .footer-col h3 {
        font-size: 1rem;
    }

    .footer-col p,
    .footer-col ul li {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Contact page specific */
    .contact-hero h1 {
        font-size: 2rem;
    }

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

    .contact-card {
        padding: 20px;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-detail {
        padding: 12px;
    }

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

    .contact-detail span {
        font-size: 0.85rem;
    }

    .form-card {
        padding: 25px;
    }

    .form-card h2 {
        font-size: 1.6rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 15px;
        font-size: 1rem;
    }

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

    .opening-hours {
        padding: 20px;
    }

    .opening-hours h3 {
        font-size: 1.1rem;
    }

    .hours-item {
        padding: 10px 12px;
    }

    .hours-item .day {
        font-size: 0.9rem;
    }

    .hours-item .time {
        font-size: 0.85rem;
    }

    /* Policy pages specific */
    .policy-container {
        padding: 25px 15px;
    }

    .policy-container h1 {
        font-size: 1.8rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
    }

    .policy-container h3 {
        font-size: 1.1rem;
    }

    .policy-container p {
        font-size: 0.9rem;
    }

    .policy-container ul li {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
        font-size: 0.8rem;
    }

    /* Success page specific */
    .success-container {
        padding: 40px 20px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon svg {
        width: 40px;
        height: 40px;
    }

    .success-container h1 {
        font-size: 1.8rem;
    }

    .success-container p {
        font-size: 0.95rem;
    }

    .success-buttons {
        gap: 15px;
    }

    /* Jewelry page specific */
    .jewelry-item {
        padding: 25px;
        gap: 25px;
    }

    .jewelry-image {
        min-width: 100%;
    }

    .jewelry-image img {
        height: 250px;
    }

    .jewelry-content {
        min-width: 100%;
    }

    .jewelry-content h3 {
        font-size: 1.5rem;
    }

    .jewelry-content p {
        font-size: 0.95rem;
    }

    .jewelry-feature {
        padding: 10px 15px;
    }

    .jewelry-feature span {
        font-size: 0.85rem;
    }

    .price-tag {
        font-size: 1.6rem;
    }

    .jewelry-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Techniques section specific */
    .techniques-text h3 {
        font-size: 1.3rem;
    }

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

    .technique-type {
        padding: 20px;
    }

    .technique-type h4 {
        font-size: 1rem;
    }

    .technique-type p {
        font-size: 0.85rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a202c 100%);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.cookie-text h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 8px;
    color: var(--white);
}

.cookie-text p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

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

.cookie-accept:hover {
    background-color: #e03e1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 79, 42, 0.4);
}

.cookie-decline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #e03e1a;
    text-decoration: underline;
}

/* Mobile optimization for cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-text {
        min-width: 100%;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 12px;
    }

    .cookie-text h4 {
        font-size: 1rem;
    }

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

    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .cookie-link {
        font-size: 0.8rem;
    }
}