/* Global Styles & Variables */
:root {
    --primary-color: #3a5cbf;
    --primary-dark: #2b4799;
    --primary-light: #637ed7;
    --secondary-color: #61ce70;
    --secondary-dark: #4db359;
    --accent-color: #f5a623;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #888;
    --bg-color: #fff;
    --bg-light: #f9f9f9;
    --bg-dark: #eeeeee;
    --border-color: #e0e0e0;
    --danger-color: #e74c3c;
    --success-color: #2ecc71;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
    --header-height: 80px;
    --container-width: 1200px;
    --font-primary: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    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(--primary-dark);
}

ul {
    list-style: none;
}

button, .btn-primary, .btn-secondary, .btn-tertiary {
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 15px auto 30px;
}

section {
    padding: 60px 0;
}

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: var(--primary-color);
    z-index: 1000;
    transition: width 0.2s ease;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 92, 191, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 92, 191, 0.2);
}

.btn-tertiary {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-tertiary:hover {
    background-color: var(--bg-dark);
    transform: translateY(-2px);
}

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

.header-content {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 30px;
}

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

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

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

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

.cart-icon {
    position: relative;
}

.cart-icon a {
    display: flex;
    color: var(--text-color);
}

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

.cart-icon svg {
    width: 24px;
    height: 24px;
}

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

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: white;
    text-align: center;
}

.slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/random/1600x900/?smartphone,case') no-repeat center center/cover;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/random/1600x900/?phone,protection') no-repeat center center/cover;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/random/1600x900/?screen,protector') no-repeat center center/cover;
}

.slide-content {
    max-width: 800px;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: white;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Features Section */
.features {
    background-color: var(--bg-light);
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

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

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

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

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

.feature-item p {
    color: var(--text-light);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

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

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

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

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

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

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

/* Product Info Section */
.product-info {
    background-color: white;
}

.product-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.info-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.info-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.testimonial {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    margin: 40px 0;
    position: relative;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
}

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

.products h2, .section-header h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.product-image {
    height: 200px;
    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;
}

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

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

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

.price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.rating span {
    color: var(--accent-color);
}

.rating small {
    color: var(--text-lighter);
}

.product-card .btn-secondary {
    width: 100%;
    padding: 10px;
}

/* Product Details Page */
.product-details {
    padding-top: 30px;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-lighter);
}

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

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

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

.product-gallery {
    position: relative;
}

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

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

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.stars {
    color: var(--accent-color);
}

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

.availability {
    font-size: 0.9rem;
}

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

.product-price {
    margin: 20px 0;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-description p, .product-description li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-description h3 {
    font-size: 1.3rem;
    margin: 25px 0 10px;
    color: var(--text-color);
}

.product-description ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.product-options {
    margin: 30px 0;
}

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

.option-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

select, input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    background-color: white;
    transition: var(--transition);
}

select:focus, input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(59, 92, 191, 0.2);
}

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

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

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

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

input[type="number"] {
    width: 60px;
    height: 40px;
    text-align: center;
    -moz-appearance: textfield;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.product-actions button {
    flex: 1;
    font-size: 1.1rem;
    padding: 15px;
}

.product-guarantee {
    margin-top: 40px;
}

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

.guarantee-item svg {
    color: var(--success-color);
    min-width: 24px;
}

.guarantee-item span {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 60px;
}

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

.tab-btn {
    padding: 15px 30px;
    background-color: transparent;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    line-height: 1.7;
}

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

.tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

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

.specs-table td {
    padding: 12px;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 180px;
}

.review-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-breakdown {
    flex: 1;
}

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

.rating-level {
    width: 60px;
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: var(--bg-dark);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--accent-color);
}

.rating-percent {
    font-size: 0.9rem;
    color: var(--text-lighter);
    width: 40px;
    text-align: right;
}

.reviews-list {
    margin-top: 30px;
}

.review-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
}

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

.review-rating {
    margin-bottom: 10px;
    color: var(--accent-color);
}

.review-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Related Products */
.related-products h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #1a2333;
    color: white;
    padding: 60px 0 20px;
    margin-top: auto;
}

.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;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-column p {
    margin-bottom: 20px;
    color: #b8c2d6;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    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);
    transform: translateY(-3px);
}

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

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

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

.footer-column ul li a:hover {
    color: white;
}

.footer-column address {
    font-style: normal;
    color: #b8c2d6;
}

.footer-column address p {
    margin-bottom: 10px;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

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

.cookie-content {
    padding: 20px;
}

.cookie-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.cookie-buttons button {
    font-size: 0.9rem;
    padding: 8px 16px;
}

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

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

/* Notification */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 15px 25px;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 100;
}

.notification.active {
    transform: translateX(0);
}

.notification p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--success-color);
    font-weight: 600;
}

/* About Us Page */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x600/?teamwork') no-repeat center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.our-story {
    background-color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.story-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.company-values h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.company-values ul {
    list-style: none;
}

.company-values li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

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

.company-values h4 {
    margin-bottom: 5px;
}

.company-values p {
    color: var(--text-light);
}

.our-team {
    background-color: var(--bg-light);
}

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

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

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

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

.team-card h3 {
    font-size: 1.3rem;
    margin: 20px 20px 5px;
}

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

.team-card p:nth-child(3) {
    font-weight: 600;
    color: var(--primary-color);
}

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

.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;
}

.our-process {
    background-color: white;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 30px;
    width: 2px;
    height: calc(100% - 40px);
    background-color: var(--primary-light);
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    z-index: 5;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials {
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x600/?phone,protection') no-repeat center/cover;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.cta-content .btn-primary:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x600/?customer-service') no-repeat center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

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

.contact-text h3 {
    margin-bottom: 5px;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-lighter);
    margin-top: 5px;
}

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

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

.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

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

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

.full-width {
    grid-column: 1 / -1;
}

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

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

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(59, 92, 191, 0.2);
}

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

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: var(--success-color);
}

.form-success svg {
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
}

.faq-section {
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: white;
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-color);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-toggle .minus {
    display: none;
}

.faq-item.active .faq-toggle .plus {
    display: none;
}

.faq-item.active .faq-toggle .minus {
    display: block;
}

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

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Cart Page */
.cart-section {
    background-color: var(--bg-light);
}

.cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cart-header p {
    color: var(--text-light);
}

.cart-empty {
    max-width: 500px;
    margin: 60px auto;
    background-color: white;
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cart-empty svg {
    width: 80px;
    height: 80px;
    color: var(--text-lighter);
    margin: 0 auto 20px;
}

.cart-empty h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

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

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

.cart-items {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-items-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    padding: 20px;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.cart-header-product, .cart-header-price, .cart-header-quantity, .cart-header-total {
    font-weight: 600;
    font-size: 0.95rem;
}

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

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
}

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

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

.cart-product-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.cart-quantity {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.cart-quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    font-size: 1rem;
}

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

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

.cart-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    -moz-appearance: textfield;
    border-radius: 0;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

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

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

.cart-sidebar {
    position: sticky;
    top: 100px;
}

.cart-summary {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

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

.cart-help {
    background-color: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.cart-help h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.help-link:hover {
    text-decoration: underline;
}

.recommendations {
    background-color: white;
    padding: 60px 0;
}

.recommendations h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* Checkout Page */
.checkout-section {
    background-color: var(--bg-light);
    min-height: calc(100vh - var(--header-height));
}

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

.checkout-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--text-lighter);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.step-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-lighter);
}

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

.step-divider {
    flex: 1;
    height: 2px;
    background-color: var(--text-lighter);
    margin: 0 10px 20px;
}

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

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

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

.checkout-form h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    grid-column: 1 / -1;
}

.checkout-sidebar {
    position: sticky;
    top: 100px;
}

.order-summary {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

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

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.order-item-details {
    flex: 1;
}

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

.order-item-price {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

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

.item-total {
    font-weight: 600;
}

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

.secure-checkout {
    margin-top: 20px;
    text-align: center;
}

.secure-checkout p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.order-guarantees {
    background-color: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

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

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

.guarantee-item svg {
    color: var(--primary-color);
    min-width: 24px;
}

.guarantee-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

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

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Success Page */
.success-section {
    background-color: var(--bg-light);
    min-height: calc(100vh - var(--header-height) - 300px);
    display: flex;
    align-items: center;
}

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

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

.success-message h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--success-color);
}

.success-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.what-next {
    margin: 40px 0;
    text-align: left;
}

.what-next h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.what-next ol {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 1.8;
    margin-left: 20px;
}

.follow-up {
    text-align: left;
    margin-bottom: 40px;
}

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

.contact-info {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius);
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .story-content, .contact-content, .checkout-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-details-content {
        grid-template-columns: 1fr;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
        height: auto;
        padding: 15px 0;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .feature-item, .testimonial-card, .product-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step {
        padding-bottom: 20px;
    }
    
    .cart-items-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px;
        padding: 15px;
    }
    
    .cart-product {
        grid-column: 1 / -1;
    }
    
    .cart-price, .cart-quantity {
        grid-row: 2;
    }
    
    .cart-total, .cart-remove {
        grid-row: 3;
    }
    
    .cart-total {
        justify-self: start;
    }
    
    .cart-remove {
        justify-self: end;
    }
    
    .checkout-form {
        grid-template-columns: 1fr;
    }
    
    .success-content {
        padding: 30px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .feature-item, .testimonial-card {
        padding: 15px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .cta-banner {
        padding: 20px;
    }
    
    .cta-banner h3 {
        font-size: 1.3rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
