/* 
Dubai Skypool Experience - Main Stylesheet
*/

/* ===== VARIABLES ===== */
:root {
    --primary-color: #0095da;
    --primary-dark: #007ab8;
    --secondary-color: #ffb74d;
    --secondary-dark: #f59d23;
    --text-color: #333;
    --text-light: #666;
    --text-white: #fff;
    --bg-color: #fff;
    --bg-light: #f9f9f9;
    --bg-dark: #1c2e4a;
    --border-color: #e6e6e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 6px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
}

/* ===== BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

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

ul, ol {
    list-style: none;
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    display: inline-block;
    font-weight: 600;
    text-align: center;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--primary-color);
    display: inline-block;
    font-weight: 600;
    text-align: center;
}

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

.btn-full {
    width: 100%;
}

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

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* ===== HEADER ===== */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(28, 46, 74, 0.8), rgba(28, 46, 74, 0.9)), url('images/1.jpg') no-repeat center center/cover;
    color: var(--text-white);
    padding: 8rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
    padding: 5rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.advantages h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.advantage-item {
    padding: 2rem;
    border-radius: var(--radius);
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 149, 218, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
}

.advantage-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    padding: 1.5rem;
}

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

.stat-item p {
    font-weight: 500;
    color: var(--text-light);
}

/* ===== ABOUT PRODUCTS SECTION ===== */
.about-products {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

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

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

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content h3 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    color: var(--text-color);
}

.brand-history {
    margin-top: 2.5rem;
    padding: 2rem;
    border-left: 3px solid var(--primary-color);
    background-color: rgba(0, 149, 218, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.brand-history h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.5rem;
}

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

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

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

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

.btn-view {
    flex: 1;
    padding: 0.75rem 1rem;
    text-align: center;
    background-color: var(--bg-light);
    color: var(--text-color);
    border-radius: var(--radius);
    font-weight: 500;
}

.btn-view:hover {
    background-color: var(--border-color);
    color: var(--text-color);
}

.btn-add-to-cart {
    flex: 1.5;
    padding: 0.75rem 1rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
}

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

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
    padding: 5rem 0;
}

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

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

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

.product-info-detailed {
    display: flex;
    flex-direction: column;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

.product-info-detailed h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

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

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.stars {
    display: flex;
    color: var(--secondary-color);
    margin-right: 0.75rem;
}

.product-availability {
    color: var(--text-light);
    font-style: italic;
}

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

.product-description h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-description h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.product-description p, .product-description li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.product-description ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.important-notes {
    background-color: rgba(255, 183, 77, 0.1);
    border-left: 3px solid var(--secondary-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}

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

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

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

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

.quantity-btn:hover {
    background-color: var(--border-color);
}

#product-quantity {
    width: 70px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    -moz-appearance: textfield;
}

#product-quantity::-webkit-outer-spin-button,
#product-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-buy-now {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    width: 100%;
    margin-top: 1rem;
}

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

/* ===== RELATED PRODUCTS ===== */
.product-related {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.product-related h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 5rem 0;
    background-color: rgba(0, 149, 218, 0.05);
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.newsletter-form .form-group {
    display: flex;
}

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

.newsletter-form button {
    padding: 1rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}

#newsletter-message {
    margin-top: 1rem;
    font-weight: 500;
}

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

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

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

.footer-col p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

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

.reg-number {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.7;
}

address {
    font-style: normal;
    line-height: 1.7;
}

.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;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.page-number {
    font-size: 0.9rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
}

.btn-cookie:not(.secondary) {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-cookie.secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-link {
    color: var(--secondary-color);
    margin-left: 1rem;
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--secondary-dark);
}

/* ===== CART NOTIFICATION ===== */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    transform: translateX(200%);
    transition: transform 0.3s ease;
}

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

.notification p {
    font-weight: 600;
}

/* ===== ABOUT US PAGE ===== */
.page-header {
    background: linear-gradient(rgba(28, 46, 74, 0.8), rgba(28, 46, 74, 0.9)), url('images/1.jpg') no-repeat center center/cover;
    color: var(--text-white);
    padding: 5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 0;
}

.about-features {
    margin: 3rem 0;
}

.about-features li {
    display: flex;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 149, 218, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

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

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

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

.team-card h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.25rem;
}

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

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 149, 218, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

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

.achievements-section {
    padding: 5rem 0;
    text-align: center;
}

.achievements-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.achievement-card {
    background-color: var(--bg-light);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    transition: var(--transition);
}

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

.achievement-card:hover .achievement-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 149, 218, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.achievement-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(28, 46, 74, 0.9), rgba(28, 46, 74, 0.95)), url('images/1.jpg') no-repeat center center/cover;
    color: var(--text-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 5rem 0;
}

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

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

.info-item {
    display: flex;
    margin-bottom: 2.5rem;
    gap: 1.25rem;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 149, 218, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

.social-contact h3 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
}

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

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-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);
}

#form-message {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
}

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

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* ===== CART PAGE ===== */
.cart-section {
    padding: 5rem 0;
}

.cart-message {
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
}

.empty-cart-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 149, 218, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cart-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.cart-content {
    display: none;
}

.cart-items-container {
    margin-bottom: 2rem;
}

.cart-headers {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
}

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

.cart-item-details {
    display: flex;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-right: 1rem;
}

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

.cart-item-name {
    font-weight: 500;
}

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

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

.cart-quantity-btn:hover {
    background-color: var(--border-color);
}

.cart-quantity-input {
    width: 40px;
    height: 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    margin: 0 0.5rem;
}

.cart-quantity-input::-webkit-outer-spin-button,
.cart-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-price, .cart-item-total {
    font-weight: 600;
}

.cart-item-remove {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--error-color);
    border-radius: 50%;
    transition: var(--transition);
}

.cart-item-remove:hover {
    background-color: rgba(244, 67, 54, 0.1);
}

.cart-summary {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 400px;
    margin-left: auto;
}

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

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

.summary-row.total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    border-bottom: none;
}

.summary-row span:first-child {
    color: var(--text-light);
}

#checkout-btn {
    margin-bottom: 1rem;
    padding: 1rem;
}

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

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

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

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
    padding: 5rem 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.checkout-form-container h2,
.checkout-summary h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.checkout-form-container h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

#place-order-btn {
    margin-top: 1rem;
    padding: 1rem;
}

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

.checkout-items {
    margin-bottom: 2rem;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.checkout-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.checkout-item-details h4 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

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

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

.checkout-totals {
    margin-bottom: 2rem;
}

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

.totals-row.total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    border-bottom: none;
}

.secure-checkout-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.secure-icon {
    flex-shrink: 0;
    color: var(--success-color);
}

.secure-checkout-info p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkout-support {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.checkout-support h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.checkout-support p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* ===== ORDER CONFIRMATION PAGE ===== */
.success-section {
    padding: 5rem 0;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.success-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

.success-message {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-message {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 3rem;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.next-steps ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.next-steps li {
    display: flex;
    gap: 1rem;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 149, 218, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.social-share {
    margin-top: 3rem;
}

.social-share p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.social-share-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

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

.more-experiences {
    padding: 5rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.more-experiences h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.more-experiences > p {
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-layout, 
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-headers {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        background-color: var(--bg-light);
        border-radius: var(--radius);
        margin-bottom: 1rem;
    }
    
    .cart-item-details {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
        margin: 0 auto 1rem;
    }
    
    .cart-item-price, 
    .cart-item-total,
    .cart-item-quantity,
    .cart-item-remove {
        justify-content: center;
    }
    
    .cart-summary {
        max-width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 1rem;
    }
    
    .header-container {
        flex-direction: column;
        padding: 1rem 0 0.5rem;
    }
    
    nav ul {
        margin-top: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .advantages-container,
    .stats-container,
    .team-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .products-grid, 
    .related-products,
    .recommendations-slider,
    .experience-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-link {
        margin: 0.5rem 0 0;
    }
}
