/* Base Styles */
:root {
    --primary-color: #e75480;
    --primary-dark: #c73e68;
    --primary-light: #ffd6e0;
    --secondary-color: #3e8914;
    --secondary-dark: #2d650f;
    --accent-color: #ffc107;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

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

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

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

ul, ol {
    list-style-position: inside;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

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

.btn.small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

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

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

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

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

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

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

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    max-height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-right: 20px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    padding: 10px;
    position: relative;
}

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

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

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.header-cart {
    position: relative;
}

.cart-icon {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 600;
}

.cart-icon.active {
    color: var(--primary-color);
}

.cart-icon svg {
    margin-right: 5px;
}

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

/* Hero Section */
.hero {
    background-color: var(--primary-light);
    text-align: center;
    padding: 100px 0;
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

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

.advantages h2 {
    margin-bottom: 40px;
}

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

.advantage-item {
    background-color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.advantage-item h3 {
    margin-bottom: 15px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-container {
    margin-top: 40px;
}

/* About Products Section */
.about-products {
    background-color: white;
    padding: 60px 0;
}

.about-products h2 {
    margin-bottom: 30px;
    text-align: center;
}

.about-products p {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.quality-assurance {
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 40px auto;
}

.quality-assurance h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.quality-assurance ul {
    list-style: none;
}

.quality-assurance li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.quality-assurance li:before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.products h2 {
    margin-bottom: 40px;
}

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

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

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

.product-image {
    height: 250px;
    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: 20px;
    text-align: left;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-info h3 a {
    color: var(--text-color);
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

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

.product-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.view-details {
    flex: 1;
}

.product-card.small {
    display: flex;
    flex-direction: column;
}

.product-card.small .product-image {
    height: 180px;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* Facts & Checklist Section */
.facts-checklist {
    background-color: white;
    padding: 60px 0;
}

.facts-checklist .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.facts, .checklist {
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.facts h2, .checklist h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.facts ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.facts ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.facts ul li:before {
    content: '★';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.checklist-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checklist-item input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

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

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact svg {
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1 1 300px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.cookie-link {
    display: inline-block;
    color: white;
    text-decoration: underline;
    font-size: 0.875rem;
    margin-left: 15px;
}

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

/* Product Detail Page */
.breadcrumb {
    background-color: var(--background-alt);
    padding: 15px 0;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    align-items: center;
}

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

.breadcrumb ul li:not(:last-child):after {
    content: '/';
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumb ul li:last-child {
    color: var(--text-light);
}

.product-detail {
    padding: 60px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.product-detail .product-info {
    padding: 0;
}

.product-detail h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-detail .product-price {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.stars {
    color: var(--accent-color);
    margin-right: 10px;
}

.count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-meta {
    margin: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item svg {
    margin-right: 10px;
    color: var(--secondary-color);
}

.product-options {
    margin-bottom: 25px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-btn {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover, .option-btn.selected {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.option-btn.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
}

.color-btn.white {
    background-color: white;
}

.color-btn.black {
    background-color: black;
}

.color-btn.blue {
    background-color: #4a90e2;
}

.option-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.option-checkbox input {
    margin-right: 10px;
    accent-color: var(--primary-color);
}

.product-quantity {
    margin-bottom: 25px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    width: 130px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-alt);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-btn.minus {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.quantity-btn.plus {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quantity-input {
    width: 60px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.product-actions .btn {
    flex: 1;
}

/* Product Tabs */
.product-details-tabs {
    padding: 60px 0;
    background-color: var(--background-alt);
}

.tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 15px 25px;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.detail-item {
    margin-bottom: 30px;
}

.detail-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.detail-item ul, .detail-item ol {
    margin-bottom: 15px;
}

.detail-item li {
    margin-bottom: 10px;
}

.delivery-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.delivery-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.review-summary {
    display: flex;
    margin-bottom: 40px;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.rating-avg {
    text-align: center;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid var(--border-color);
    min-width: 150px;
}

.avg {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1;
}

.rating-bars {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.label {
    width: 40px;
    margin-right: 10px;
    text-align: right;
}

.bar {
    flex: 1;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
}

.fill {
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 4px;
}

.percent {
    width: 40px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.review-header {
    margin-bottom: 15px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.review-content p {
    margin-bottom: 0;
}

.related-products {
    padding: 60px 0;
}

.related-products h2 {
    margin-bottom: 30px;
    text-align: center;
}

/* Cart Page */
.page-banner {
    background-color: var(--primary-light);
    text-align: center;
    padding: 60px 0;
}

.page-banner h1 {
    color: var(--text-color);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.empty-cart-icon {
    margin: 0 auto 30px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-alt);
    border-radius: 50%;
    color: var(--text-light);
}

.cart-empty h2 {
    margin-bottom: 15px;
}

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

.cart-header {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.cart-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    align-items: center;
    padding: 15px 0;
    gap: 15px;
}

.cart-col {
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    gap: 15px;
}

.product-info-cart {
    display: flex;
    align-items: center;
}

.product-info-cart .product-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    flex-shrink: 0;
}

.product-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.remove-item {
    background-color: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    color: var(--error-color);
}

.cart-summary {
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 40px;
}

.cart-totals {
    margin-bottom: 30px;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.totals-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: none;
    padding-top: 20px;
}

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

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

.recommended-products h2 {
    margin-bottom: 30px;
    text-align: center;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 15px;
    z-index: 1000;
    display: none;
    animation: slideIn 0.3s;
}

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

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-content svg {
    color: var(--success-color);
}

.notification-content p {
    margin-bottom: 0;
    font-weight: 600;
}

.close-notification {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Checkout Page */
.checkout-progress {
    padding: 40px 0;
    background-color: var(--background-alt);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.progress-steps:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 10px;
}

.step.completed .step-number {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.step.active .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

.step.completed .step-label,
.step.active .step-label {
    color: var(--text-color);
    font-weight: 600;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.checkout-form-container h1 {
    margin-bottom: 30px;
}

.form-section {
    background-color: var(--background-alt);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.form-section h2 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex-basis: 100%;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 84, 128, 0.2);
}

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

.checkbox-group input {
    margin-top: 0;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.order-summary {
    background-color: var(--background-alt);
    padding: 25px;
    border-radius: var(--border-radius);
    align-self: start;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-items {
    margin-bottom: 25px;
    max-height: 400px;
    overflow-y: auto;
}

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

.summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.item-details {
    flex: 1;
}

.item-details h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.item-price-qty {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
}

.summary-totals {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* Success Page */
.success-section {
    padding: 60px 0;
}

.success-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.confirmation-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.delivery-info {
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0;
    text-align: left;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.step-item {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
}

.step-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.care-tips {
    margin: 40px 0;
    text-align: left;
}

.tips-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 20px;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(231, 84, 128, 0.2);
}

.tips-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tip-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.follow-us {
    background-color: var(--background-alt);
    text-align: center;
    padding: 60px 0;
}

.follow-us h2 {
    margin-bottom: 15px;
}

.follow-us p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.social-large {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-btn svg {
    margin-right: 10px;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 10px;
}

.info-content p {
    margin-bottom: 5px;
}

.hours {
    font-size: 0.9rem;
    color: var(--text-light);
}

.social-connect {
    margin-top: 40px;
}

.social-connect h3 {
    margin-bottom: 20px;
}

.contact-form {
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
}

.form-response {
    margin-top: 20px;
}

.success-message {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--success-color);
}

.faq-section {
    background-color: var(--background-alt);
    padding: 60px 0;
}

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

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

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

/* About Page */
.about-story {
    padding: 60px 0;
}

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

.about-content h2 {
    margin-bottom: 25px;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.values {
    background-color: var(--background-alt);
    padding: 60px 0;
}

.values h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.value-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.value-item h3 {
    margin-bottom: 15px;
}

.team {
    padding: 60px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

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

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

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

.team-member img {
    width: 100%;
    height: auto;
}

.team-member h3 {
    margin: 20px 20px 10px;
}

.team-member p {
    margin: 0 20px 20px;
}

.team-member .social-icons {
    padding: 0 20px 20px;
}

.team-member .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.certifications {
    background-color: var(--background-alt);
    padding: 60px 0;
}

.certifications h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.certification-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.certification-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.certification-item h3 {
    margin-bottom: 10px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        margin-top: 30px;
        position: static;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .review-summary {
        flex-direction: column;
    }
    
    .rating-avg {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .advantages-grid,
    .features,
    .details-grid,
    .delivery-info {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 1 auto;
        padding: 10px 15px;
        text-align: center;
    }
    
    .cart-row,
    .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .price-col,
    .total-col {
        display: none;
    }
    
    .product-col {
        grid-column: 1 / 2;
    }
    
    .quantity-col {
        grid-column: 2 / 3;
    }
    
    .remove-col {
        grid-column: 3 / 4;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-large {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        justify-content: center;
    }
    
    .header-cart {
        position: absolute;
        top: 15px;
        right: 20px;
    }
    
    .product-info-cart {
        flex-direction: column;
    }
    
    .product-info-cart .product-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
