/* Base Styles and Variables */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5a49d8;
    --primary-light: #a29bfe;
    --secondary-color: #fd79a8;
    --text-color: #2d3436;
    --text-light: #636e72;
    --background-color: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #dfe6e9;
    --success-color: #00b894;
    --error-color: #d63031;
    --warning-color: #fdcb6e;
    --info-color: #0984e3;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

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

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 1;
}

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

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

.btn-primary:hover {
    background-color: #e84393;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

section {
    padding: 8rem 0;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo img {
    height: 5rem;
    width: auto;
}

nav ul {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

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

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    color: white;
    position: relative;
    padding: 12rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    color: white;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 0.15em solid var(--secondary-color);
    white-space: nowrap;
    margin: 0 auto 2rem;
    letter-spacing: 0.15em;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--secondary-color) }
}

/* Advantages Section */
.advantages {
    background-color: var(--background-alt);
    text-align: center;
}

.advantages h2 {
    margin-bottom: 5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.advantage-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--primary-light);
    color: white;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage-card h3 {
    margin-bottom: 1.5rem;
}

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

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.stat {
    padding: 2rem;
}

.stat h3 {
    font-size: 3.6rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.cta-container {
    margin-top: 5rem;
}

/* Products Section */
.products {
    text-align: center;
}

.products h2 {
    margin-bottom: 5rem;
}

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

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 25rem;
    overflow: hidden;
}

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

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

.product-info {
    padding: 2rem;
}

.product-info h3 {
    margin-bottom: 1rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* About Products Section */
.about-products {
    background-color: var(--background-alt);
}

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

.quality-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Footer Styles */
footer {
    background-color: #2d3436;
    color: white;
    padding: 6rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 2rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 5rem;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section p {
    color: #dfe6e9;
    margin-bottom: 1rem;
}

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

.footer-section ul li a {
    color: #dfe6e9;
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-policy {
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Page Summary */
.page-summary {
    background-color: var(--background-alt);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.page-summary p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.4rem;
}

/* Product Detail Page */
.product-detail {
    padding-top: 6rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.product-detail-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.product-detail-info h1 {
    margin-bottom: 1.5rem;
}

.product-detail-info .product-price {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.product-description {
    margin-bottom: 3rem;
}

.product-description h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.product-description ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.product-description ul li {
    margin-bottom: 0.8rem;
}

.quantity {
    margin-bottom: 2rem;
}

.quantity label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-btn {
    width: 4rem;
    height: 4rem;
    background-color: var(--background-alt);
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.quantity input {
    width: 6rem;
    height: 4rem;
    border: none;
    text-align: center;
    font-size: 1.6rem;
}

.product-actions {
    display: flex;
    gap: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.feature {
    padding: 2.5rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature h3 {
    margin-bottom: 1rem;
}

.faq-section {
    margin-top: 5rem;
}

.faq-section h2 {
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    color: white;
    text-align: center;
    padding: 8rem 0;
}

.about-hero h1 {
    color: white;
}

.lead {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.about-story {
    padding-top: 8rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
}

.about-content h2 {
    margin-bottom: 2.5rem;
}

.about-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    padding: 3rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.6rem;
    color: var(--text-light);
}

.team-section {
    background-color: var(--background-alt);
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 4rem;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
}

.team-member h3 {
    margin: 2rem 0 0.5rem;
}

.team-member p {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-light);
}

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

.values-section {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.value-card {
    padding: 3rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    color: var(--primary-color);
}

.cta-section {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    color: white;
    text-align: center;
    padding: 8rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

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

.cta-section .btn:hover {
    background-color: var(--background-alt);
}

.cta-section .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    color: white;
    text-align: center;
    padding: 8rem 0;
}

.contact-hero h1 {
    color: white;
}

.contact-section {
    padding-top: 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info h2 {
    margin-bottom: 2.5rem;
}

.contact-methods {
    margin: 4rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-details .note {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.business-hours {
    padding: 2.5rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
}

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

.contact-form-container h2 {
    margin-bottom: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 1rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

.form-submit {
    margin-top: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 3rem;
}

/* Cart Page */
.cart-section {
    padding-top: 6rem;
}

.cart-empty {
    text-align: center;
    padding: 6rem 0;
}

.cart-empty svg {
    margin: 0 auto 2rem;
    color: var(--text-light);
}

.cart-empty h2 {
    margin-bottom: 1.5rem;
}

.cart-empty p {
    margin-bottom: 3rem;
    color: var(--text-light);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 4rem;
}

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

.cart-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 8rem;
    height: 8rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.cart-item-name {
    font-weight: 500;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-quantity-btn {
    width: 3rem;
    height: 3rem;
    background-color: var(--background-alt);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
}

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

.cart-remove-btn {
    background-color: transparent;
    border: none;
    color: var(--error-color);
    cursor: pointer;
}

.cart-summary {
    background-color: var(--background-alt);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.cart-totals {
    margin-bottom: 3rem;
}

.subtotal,
.total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.total {
    font-weight: 600;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
}

.recommendations {
    background-color: var(--background-alt);
}

.recommendations h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.cart-help {
    text-align: center;
}

.help-options {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 4rem;
}

.help-icon {
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Checkout Page */
.checkout-section {
    padding-top: 6rem;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.checkout-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 4rem;
}

.form-section {
    margin-bottom: 4rem;
}

.form-section h3 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.order-summary {
    background-color: var(--background-alt);
    padding: 3rem;
    border-radius: var(--border-radius);
    align-self: start;
    position: sticky;
    top: 10rem;
}

.order-item {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 8rem;
    height: 8rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 2rem;
}

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

.order-item-name {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.order-item-price {
    color: var(--text-light);
}

.order-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.4rem;
}

/* Success Page */
.success-section {
    padding: 10rem 0;
    text-align: center;
}

.success-message {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.success-icon {
    width: 10rem;
    height: 10rem;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-text {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.success-details {
    margin-bottom: 4rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.what-next {
    background-color: var(--background-alt);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.step h3 {
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }

    .product-detail-grid,
    .about-grid,
    .contact-grid,
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .advantages-grid,
    .products-grid,
    .features-grid,
    .team-grid,
    .values-grid,
    .faq-grid,
    .recommendations-grid,
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }

    .header-container {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .logo {
        margin-bottom: 2rem;
    }

    nav ul {
        gap: 2rem;
    }

    section {
        padding: 6rem 0;
    }

    .hero {
        padding: 8rem 0;
    }

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

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

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

    .help-options {
        flex-direction: column;
        gap: 3rem;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 54%;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    h3 {
        font-size: 2rem;
    }

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

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

    .lead {
        font-size: 1.8rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .cart-table {
        display: block;
        overflow-x: auto;
    }

    .product-actions {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }
}
