/* Base Styles */
:root {
    --primary-color: #0b4d6c;
    --secondary-color: #00a896;
    --accent-color: #f0b67f;
    --dark-color: #031926;
    --light-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn svg {
    margin-right: 8px;
    vertical-align: middle;
}

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

.btn-primary:hover {
    background-color: #0a4259;
    color: white;
}

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

.btn-secondary:hover {
    background-color: #008e7e;
    color: white;
}

.btn-tertiary {
    background-color: var(--light-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    background-color: #e9e9e9;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

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

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

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 2rem;
}

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

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

nav ul li a.active::after,
nav ul li a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(11, 77, 108, 0.85), rgba(11, 77, 108, 0.85)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

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

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: white;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 168, 150, 0.1);
    color: var(--secondary-color);
}

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

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

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

.cta-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

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

.about-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-products p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 1.5rem;
}

.quality-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px var(--shadow-color);
}

.badge svg {
    color: var(--secondary-color);
}

.badge span {
    font-weight: 600;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: white;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* Contact CTA Section */
.contact-cta {
    padding: 5rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

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

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 1rem;
}

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

.footer-column ul li a {
    color: #ccc;
}

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

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

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

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

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

.footer-bottom p {
    color: #ccc;
    margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -5px 15px var(--shadow-color);
    z-index: 9999;
    display: none;
}

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

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

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px var(--shadow-color);
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--error-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 77, 108, 0.1);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Rating Stars */
.rating-select .stars {
    display: flex;
    gap: 0.5rem;
}

.rating-select .star {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.rating-select .star:hover,
.rating-select .star.active {
    color: #ffc107;
}

/* Product Detail Page */
.product-detail {
    padding: 3rem 0 5rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

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

.product-image-large {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.product-rating .stars {
    color: #ffc107;
    margin-right: 0.5rem;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.product-availability {
    padding: 0.3rem 0.8rem;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
}

.product-short-description {
    margin-bottom: 2rem;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    max-width: 150px;
}

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

.quantity-controls button:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.quantity-controls button:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quantity-controls input {
    width: 70px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    padding: 0;
}

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

.product-details-tabs {
    margin-bottom: 4rem;
}

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

.tab-button {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--text-light);
    transition: var(--transition);
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

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

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

.feature-group h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-group ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.feature-group ul li {
    margin-bottom: 0.5rem;
}

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

.specs-table th, .specs-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

.review-summary {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.overall-rating {
    text-align: center;
    padding-right: 3rem;
    border-right: 1px solid var(--border-color);
}

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

.overall-rating .stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.rating-count {
    color: var(--text-light);
    margin-bottom: 0;
}

.rating-breakdown {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rating-label {
    width: 60px;
}

.bar-container {
    flex: 1;
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    margin: 0 1rem;
}

.bar {
    height: 100%;
    background-color: #ffc107;
    border-radius: 5px;
}

.count {
    width: 30px;
    text-align: right;
}

.reviews-list {
    margin-bottom: 2rem;
}

.review-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.reviewer-info h4 {
    margin-bottom: 0.2rem;
}

.company {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0;
}

.review-rating .stars {
    color: #ffc107;
    margin-right: 0.5rem;
}

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

.write-review {
    text-align: center;
    margin-top: 2rem;
}

.related-products h3 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.related-product {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: var(--transition);
}

.related-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.related-product img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto 1rem;
    border-radius: var(--border-radius);
}

.related-product h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-product .price {
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.page-header p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* About Page Styles */
.about-story {
    padding: 5rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

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

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.mission-vision {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.mission-box, .vision-box, .values-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.mission-box:hover, .vision-box:hover, .values-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.mission-box .icon, .vision-box .icon, .values-box .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.values-box ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.values-box ul li {
    margin-bottom: 0.5rem;
}

.achievements {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.achievements h2 {
    margin-bottom: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-item {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
    background-color: var(--primary-color);
    color: white;
}

.achievement-item:hover .achievement-number {
    color: white;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.team {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.team h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

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

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

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

.team-member h3 {
    margin: 1.5rem 0 0.2rem;
    padding: 0 1.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 0.8rem;
    padding: 0 1.5rem 1.5rem;
}

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

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

.certifications {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.certifications h2 {
    margin-bottom: 3rem;
}

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

.certification-item {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.certification-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.certification-item h3 {
    margin-bottom: 0.5rem;
}

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

.cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

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

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

/* Contact Page Styles */
.contact-info {
    padding: 4rem 0;
    background-color: white;
}

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

.contact-card {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
}

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

.contact-card p {
    margin-bottom: 0.5rem;
}

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

.contact-form-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

.form-container > p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.form-success-message {
    text-align: center;
    padding: 2rem;
}

.form-success-message svg {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

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

.contact-sidebar-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

.benefits-list {
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.benefits-list li svg {
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-testimonial {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    position: relative;
}

.contact-testimonial::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 3rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    margin-top: 1rem;
}

.testimonial-author p {
    margin-bottom: 0;
}

.contact-cta-box {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-cta-box h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-cta-box p {
    margin-bottom: 1.5rem;
}

.contact-faqs {
    padding: 5rem 0;
    background-color: white;
}

.contact-faqs h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.faq-question h3 {
    margin-bottom: 0;
    flex: 1;
}

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

.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 0 1.5rem;
    display: none;
}

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

/* Cart Page Styles */
.cart-section {
    padding: 4rem 0;
    background-color: white;
}

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

.empty-cart-icon {
    margin-bottom: 2rem;
    color: var(--text-lighter);
}

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

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

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

.cart-table th {
    text-align: left;
    padding: 1rem;
    background-color: var(--light-color);
    font-weight: 600;
}

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

.cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

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

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.cart-remove {
    color: var(--error-color);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cart-remove:hover {
    opacity: 0.8;
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cart-coupons h3 {
    margin-bottom: 1.5rem;
}

.coupon-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.coupon-form input {
    flex: 1;
}

.coupon-message {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cart-summary {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
}

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

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

.discount-row {
    color: var(--secondary-color);
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.cart-features {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

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

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

.feature-icon {
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

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

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

.product-recommendations {
    padding: 5rem 0;
    background-color: white;
}

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

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

/* Checkout Page Styles */
.checkout-section {
    padding: 4rem 0;
    background-color: white;
}

.checkout-empty {
    text-align: center;
    padding: 4rem;
}

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

.checkout-form-container {
    padding: 2.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.checkout-form-container h2 {
    margin-bottom: 2rem;
}

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

.form-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.order-summary-container {
    position: sticky;
    top: 100px;
}

.order-summary {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    margin-bottom: 2rem;
}

.order-summary h2 {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item-info {
    display: flex;
    gap: 1rem;
}

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

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

.order-item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.order-item-price {
    font-weight: 600;
}

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

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

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

.checkout-benefits,
.checkout-help {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    margin-bottom: 2rem;
}

.checkout-benefits h3,
.checkout-help h3 {
    margin-bottom: 1.5rem;
}

.checkout-help p {
    margin-bottom: 1.5rem;
}

.help-options {
    display: flex;
    gap: 1rem;
}

/* Success Page Styles */
.success-section {
    padding: 5rem 0;
    background-color: white;
}

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

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

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

.success-next-steps {
    margin-bottom: 4rem;
}

.success-next-steps h2 {
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step-item {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
    position: relative;
}

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

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

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

.success-support {
    margin-bottom: 3rem;
}

.success-support h2 {
    margin-bottom: 1rem;
}

.success-support p {
    margin-bottom: 2rem;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
    text-align: left;
    color: var(--text-color);
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
    background-color: var(--primary-color);
    color: white;
}

.support-option:hover h3,
.support-option:hover p {
    color: white;
}

.support-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.support-option:hover .support-icon {
    color: white;
}

.support-info h3 {
    margin-bottom: 0.2rem;
}

.support-info p {
    margin-bottom: 0;
}

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

.recommended-products {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.recommended-products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .contact-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary-container {
        position: static;
    }
    
    .product-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .stats-container,
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-actions {
        grid-template-columns: 1fr;
    }
    
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 2rem;
    }
    
    .overall-rating {
        padding-right: 0;
        border-right: none;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .support-options {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 1rem;
    }
}
