/* Base Styles */
:root {
    --primary-color: #4e54c8;
    --primary-light: #7376df;
    --primary-dark: #383eb2;
    --secondary-color: #ff6e42;
    --secondary-light: #ff916d;
    --secondary-dark: #e54f25;
    --accent-color: #25d366;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #eeeeee;
    --border-color: #e1e4e8;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
}

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

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

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

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

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

/* Custom List Styles */
ul:not(.footer-links):not(.features-list):not(.compatibility-list):not(.values-list) {
    list-style-type: none;
    padding-left: 1.2em;
}

ul:not(.footer-links):not(.features-list):not(.compatibility-list):not(.values-list) li {
    position: relative;
    margin-bottom: 0.5em;
}

ul:not(.footer-links):not(.features-list):not(.compatibility-list):not(.values-list) li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: -1.2em;
    width: 1.2em;
    text-align: center;
}

.features-list, .compatibility-list {
    list-style-type: none;
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.features-list li, .compatibility-list li {
    position: relative;
    margin-bottom: 0.5em;
}

.features-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1.5em;
    width: 1.5em;
    text-align: center;
}

.compatibility-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5em;
    width: 1.5em;
    text-align: center;
}

.values-list {
    list-style-type: none;
    padding-left: 0;
    margin: 1em 0;
}

.values-list li {
    margin-bottom: 0.75em;
    padding-left: 1.5em;
    position: relative;
}

.values-list li::before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 1.5em;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.2em;
}

p {
    margin-bottom: 1em;
}

button, .btn {
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    font-weight: 500;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 6px 12px;
    border-radius: 6px;
}

.btn-lg {
    font-size: 1.125rem;
    padding: 12px 24px;
}

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

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

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

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

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

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

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2em;
    text-align: center;
}

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

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

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

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

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

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

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    color: var(--text-color);
    transition: var(--transition);
}

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

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

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5em;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.hero .btn {
    margin-top: 1em;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.hero .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 1.5em;
    color: var(--text-color);
    font-size: 2.2rem;
}

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

.benefit-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.benefit-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 50px 0;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    margin: 15px;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    line-height: 1.2;
}

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

.cta-banner {
    background-color: var(--primary-light);
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 50px;
}

.cta-banner h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.cta-banner .btn {
    background-color: white;
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
}

.cta-banner .btn:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.about-products h2 {
    text-align: center;
    margin-bottom: 1.5em;
}

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

.quality-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.badge {
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.badge svg {
    margin-right: 10px;
    color: var(--primary-color);
}

.badge span {
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.products h2 {
    text-align: center;
    margin-bottom: 0.5em;
}

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

.small-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

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

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 100%; /* Creates a square aspect ratio */
}

.product-image img {
    position: absolute;
    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;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.product-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 8px 15px;
}

/* Single Product Page */
.product-breadcrumb {
    background-color: var(--bg-light);
    padding: 15px 0;
}

.product-breadcrumb ul {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 10px;
}

.product-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-lighter);
}

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

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

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-gallery {
    position: relative;
}

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

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

.product-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

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

.stars {
    display: flex;
    margin-right: 8px;
    color: #ffc107;
}

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

.stock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    background-color: rgba(40, 167, 69, 0.1);
    width: fit-content;
}

.in-stock {
    color: var(--success-color);
}

.stock-info svg {
    stroke: var(--success-color);
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

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

.quantity-controls button {
    background-color: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-tabs {
    margin-bottom: 60px;
}

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

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

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

.tab-panel {
    display: none;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    text-align: left;
}

.specs-table tr:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    width: 30%;
    background-color: var(--bg-light);
    font-weight: 600;
}

.review-summary {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.average-rating .stars {
    justify-content: center;
    margin-right: 0;
    margin-bottom: 10px;
}

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

.customer-reviews {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.review {
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    margin-right: 15px;
}

.review-date {
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-right: auto;
}

.review-rating {
    margin-top: 10px;
    width: 100%;
}

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

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

/* Cart Page */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0;
}

.cart-section {
    padding: 60px 0;
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-item-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

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

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-quantity {
    width: 60px;
    height: 36px;
    padding: 0 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

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

.cart-item-total {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: right;
}

.empty-cart {
    text-align: center;
    padding: 60px 0;
}

.empty-cart svg {
    color: var(--text-lighter);
    margin-bottom: 20px;
}

.empty-cart h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

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

.cart-summary {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
}

.cart-summary h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.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: 15px;
    margin-bottom: 25px;
}

.summary-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 20px 0;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-related-products {
    padding: 60px 0;
    background-color: var(--bg-light);
}

/* Checkout Page */
.checkout-section {
    padding: 60px 0;
}

.checkout-header {
    margin-bottom: 40px;
}

.checkout-header h1 {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(25% + 15px);
    right: calc(25% + 15px);
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

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

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

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

.step-name {
    color: var(--text-light);
}

.step.active .step-name {
    color: var(--primary-color);
    font-weight: 600;
}

.step.completed .step-name {
    color: var(--success-color);
}

.checkout-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.checkout-form-container {
    padding-right: 20px;
}

.checkout-form h2 {
    margin-top: 0;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-lighter);
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
}

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

.checkout-summary {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    position: sticky;
    top: 100px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.edit-cart-link {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.checkout-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}

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

.checkout-item-details h3 {
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.checkout-item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.checkout-item-quantity {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.checkout-totals {
    margin-top: 20px;
}

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

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

.checkout-security {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.security-badges {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.security-badges svg {
    margin-right: 8px;
    color: var(--success-color);
}

.security-badges span {
    font-weight: 600;
}

.checkout-security p {
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.empty-checkout {
    padding: 30px 0;
    text-align: center;
}

.empty-checkout p {
    margin-bottom: 15px;
}

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

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 30px;
}

.success-message h1 {
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-confirmation {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.success-email {
    color: var(--text-light);
    margin-bottom: 40px;
}

.success-next {
    text-align: left;
    margin-top: 50px;
}

.success-next h2 {
    text-align: center;
    margin-bottom: 30px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-icon {
    margin-right: 20px;
    color: var(--primary-color);
}

.step-text h3 {
    margin: 0 0 10px 0;
}

.step-text p {
    margin: 0;
    color: var(--text-light);
}

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

.success-recommendations {
    margin-top: 80px;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

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

.about-text h2 {
    margin-top: 0;
}

.team {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

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

.team-member p {
    padding: 0 15px;
    margin-bottom: 10px;
    color: var(--text-light);
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

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

.quality-commitment {
    padding: 60px 0;
}

.quality-commitment h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.quality-item {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.quality-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.quality-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container, .contact-info-container {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h2, .contact-info-container h2 {
    margin-top: 0;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    margin-right: 15px;
    color: var(--primary-color);
}

.info-text h3 {
    margin: 0 0 10px;
}

.info-text p {
    margin: 0 0 5px;
}

.info-text .text-muted {
    color: var(--text-lighter);
}

.social-contact {
    margin-top: 20px;
}

.social-contact h3 {
    margin-bottom: 15px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

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

.form-success {
    text-align: center;
    padding: 30px;
}

.form-success svg {
    color: var(--success-color);
    margin-bottom: 20px;
}

.form-success h2 {
    color: var(--success-color);
}

.faq-section {
    margin-top: 80px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
}

.faq-toggle {
    transition: var(--transition);
}

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

.faq-answer {
    padding-bottom: 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

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

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-column address {
    font-style: normal;
    line-height: 1.7;
    color: #b3b3b3;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.cookie-content a {
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        position: static;
        order: -1;
        margin-bottom: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
    }
    
    .cart-item-total {
        grid-column: 1 / 3;
        text-align: right;
        margin-top: 15px;
    }
    
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-item {
        margin: 10px 0;
    }
    
    .quality-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}
