/* Base Styles and Variables */
:root {
    --primary-color: #3a86ff;
    --secondary-color: #ff006e;
    --tertiary-color: #8338ec;
    --dark-color: #001219;
    --light-color: #f8f9fa;
    --gray-color: #e9ecef;
    --text-color: #212529;
    --success-color: #38b000;
    --warning-color: #ffbe0b;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --section-padding: 5rem 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--tertiary-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

section {
    padding: var(--section-padding);
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.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-view {
    width: 100%;
    margin-top: 1rem;
}

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo img {
    max-height: 60px;
    border-radius: var(--border-radius);
}

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

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

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

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

nav ul li a:not(.active):hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero .btn {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.hero .btn:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    background-color: white;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--gray-color);
}

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

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

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 4rem 0;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--gray-color);
    display: flex;
    flex-direction: column;
}

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

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.cta-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cta-banner .btn {
    background-color: white;
    color: var(--tertiary-color);
    font-size: 1.1rem;
}

.cta-banner .btn:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

/* Product Info Section */
.product-info {
    background-color: var(--gray-color);
}

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

.info-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.highlight {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.highlight i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Terminology Section */
.terminology {
    background-color: white;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.term-item {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-color);
    transition: var(--transition);
}

.term-item:hover {
    box-shadow: var(--box-shadow);
}

.term-item h4 {
    color: var(--tertiary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.product-image {
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.5rem;
}

.product-desc {
    min-height: 50px;
    margin-bottom: 1rem;
    color: #6c757d;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.product-rating {
    color: var(--warning-color);
    display: flex;
    align-items: center;
}

.product-rating span {
    color: #6c757d;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-rating {
    color: var(--warning-color);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;
    text-align: center;
}

.newsletter h2:after {
    background: white;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--secondary-color);
    font-size: 1rem;
}

.newsletter-form button:hover {
    background-color: var(--tertiary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #a8b2d1;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

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

.social-icon {
    width: 24px;
    height: 24px;
    fill: white;
    transition: var(--transition);
}

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

address p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: #a8b2d1;
}

address p i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 18, 25, 0.95);
    color: white;
    z-index: 9999;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.cookie-buttons .btn {
    background-color: white;
    color: var(--dark-color);
}

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

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    margin-left: 1rem;
    display: inline-flex;
    align-items: center;
}

.cookie-link:hover {
    color: white;
}

/* Single Product Page */
.product-details {
    padding: 4rem 0;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-gallery {
    overflow: hidden;
}

.product-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.product-rating-large {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-price-large {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.product-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-features {
    margin-bottom: 2rem;
}

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

.product-features ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product-features ul li {
    margin-bottom: 0.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.product-actions .btn {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
}

.product-actions .btn:first-child {
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.product-actions .btn:first-child:hover {
    background-color: var(--primary-color);
    color: white;
}

.qty-selector {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.qty-selector label {
    margin-right: 1rem;
    font-weight: 600;
}

.qty-selector input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    text-align: center;
}

/* Related Products */
.related-products {
    padding: 4rem 0;
}

/* Cart Page */
.cart-page {
    padding: 4rem 0;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cart-empty i {
    font-size: 4rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.cart-empty p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cart-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
}

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

.cart-item-image {
    width: 100px;
    border-radius: var(--border-radius);
}

.cart-item-title {
    font-weight: 600;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.cart-qty {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.cart-remove {
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    color: red;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cart-total {
    font-size: 1.5rem;
    font-weight: 700;
}

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

/* Checkout Page */
.checkout-page {
    padding: 4rem 0;
    background-color: var(--gray-color);
}

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.2);
}

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

.order-summary {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.order-summary h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--gray-color);
}

.summary-item:last-of-type {
    border-bottom: 2px solid var(--gray-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
}

.checkout-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Success Page */
.success-page {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--gray-color) 100%);
}

.success-content {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 600px;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-page {
    padding: 4rem 0;
}

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

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

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.contact-map {
    height: 300px;
    margin-top: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* About Page */
.about-page {
    padding: 4rem 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.about-content {
    margin-bottom: 4rem;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-row:nth-child(even) {
    direction: rtl;
}

.about-row:nth-child(even) .about-text {
    direction: ltr;
}

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

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.team-section {
    background-color: var(--gray-color);
    padding: 4rem 0;
}

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

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

.team-member:hover {
    transform: translateY(-5px);
}

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

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    margin-bottom: 0.5rem;
}

.team-info p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.team-info p:last-of-type {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-row {
        grid-template-columns: 1fr;
    }
    
    .about-row:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        z-index: 1001;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }
    
    nav ul li {
        margin: 1rem 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
        display: block;
        width: 100%;
    }
    
    .cart-table tr {
        margin-bottom: 2rem;
        padding: 1rem;
        background-color: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }
    
    .cart-table td {
        position: relative;
        padding: 0.5rem 0.5rem 0.5rem 35%;
        text-align: left;
        border: none;
    }
    
    .cart-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 30%;
        padding-right: 10px;
        font-weight: 700;
    }
    
    .cart-table td:last-child {
        text-align: center;
        padding-left: 0;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-total {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
