/* Base Styles */
:root {
    --primary-color: #3d5a80;
    --primary-dark: #2c4c6b;
    --primary-light: #98c1d9;
    --secondary-color: #ee6c4d;
    --secondary-dark: #e34c26;
    --text-color: #293241;
    --text-light: #5e6572;
    --background-color: #ffffff;
    --background-alt: #f7f9fc;
    --border-color: #e1e4e8;
    --success-color: #36b37e;
    --error-color: #ff5630;
    --warning-color: #ffab00;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-main: 'Libre Baskerville', Georgia, serif;
    --font-secondary: 'Open Sans', sans-serif;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

button, .btn-primary, .btn-secondary {
    cursor: pointer;
    font-family: var(--font-secondary);
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

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

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.cart-icon {
    position: relative;
}

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

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--box-shadow);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(61, 90, 128, 0.05);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    background: none;
    border: none;
    padding: 0.5rem;
}

.btn-text:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

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

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

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

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

.advantage-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.stat-item {
    padding: 1rem;
}

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

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

.cta {
    text-align: center;
}

/* About Products Section */
.about-products {
    padding: 5rem 0;
}

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

.about-products p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: justify;
    font-size: 1.1rem;
}

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

.quality-feature {
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.quality-feature h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.about-guarantees {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

/* Products Section */
.products {
    padding: 5rem 0;
}

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

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

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

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

.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 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

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

.author {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

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

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

.add-to-cart {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    flex: 1;
    transition: var(--transition);
}

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

.view-details {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    flex: 1;
    text-align: center;
    transition: var(--transition);
}

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

/* Daily Picks Section */
.daily-picks {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

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

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

.pick-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.pick-image {
    height: 200px;
}

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

.pick-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pick-info h3 {
    margin-bottom: 0.5rem;
}

.pick-description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pick-price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Interesting Facts Section */
.interesting-facts {
    padding: 5rem 0;
}

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

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

.fact {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

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

.fact-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

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

.footer-about {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

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

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

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

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

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

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact address {
    font-style: normal;
    margin-bottom: 1rem;
}

.footer-contact address p, .footer-contact p {
    margin-bottom: 0.5rem;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 0.75rem;
}

.cookie-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background-color: var(--success-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-cookie-customize {
    background-color: var(--text-light);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-cookie-reject {
    background-color: var(--error-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.cookie-more-info {
    margin-top: 1rem;
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

.product-info-detail h1 {
    margin-bottom: 0.5rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

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

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

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

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

.product-form {
    margin: 2rem 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.quantity-decrease,
.quantity-increase {
    background-color: var(--background-alt);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
}

.quantity-buttons input {
    width: 60px;
    border: none;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem 0;
}

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

.product-actions .add-to-cart,
.product-actions .buy-now {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-now {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

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

.product-details h3 {
    margin-bottom: 1rem;
}

.book-details {
    margin-top: 1.5rem;
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.detail-item {
    display: flex;
    margin-bottom: 0.75rem;
}

.detail-label {
    font-weight: 600;
    min-width: 150px;
}

.product-awards {
    margin-top: 2rem;
}

.product-awards h3 {
    margin-bottom: 1rem;
}

.product-awards ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.product-awards ul li {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.tab-content {
    display: none;
}

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

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

.review:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.review-stars {
    color: var(--warning-color);
}

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

.review-author {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.author-profile h3 {
    margin-bottom: 1.5rem;
}

.author-profile p {
    margin-bottom: 1rem;
}

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

.book-excerpt p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

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

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

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

.related-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    padding: 0 1rem;
}

.related-author {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.related-price {
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 1rem 1rem;
}

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

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

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

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-content h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-content ul li {
    margin-bottom: 0.75rem;
}

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

.about-values {
    margin-bottom: 4rem;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-item {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

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

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

.team-member h3 {
    margin: 1.5rem 1.5rem 0.5rem;
}

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

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

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

.social-links a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.partnerships {
    padding: 5rem 0;
}

.partnerships h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.partnerships > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.partner-item {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-color);
}

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

.testimonials h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    position: relative;
    z-index: 1;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-weight: 600;
    margin-top: 1rem;
    font-style: normal;
    color: var(--primary-color);
}

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

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

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

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

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

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

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact-text h3 {
    margin-bottom: 0.5rem;
}

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

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

.contact-form-container h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--background-alt);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
}

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

.form-success h3 {
    margin-bottom: 1rem;
    color: var(--success-color);
}

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

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

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

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

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

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

/* Cart Page */
.cart-section {
    padding: 3rem 0 5rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
}

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

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

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

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

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

.cart-header {
    padding: 0 1rem;
}

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

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

.cart-product img {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-product-info h3 {
    margin-bottom: 0.5rem;
}

.cart-price, .cart-total {
    padding: 0 1rem;
    font-weight: 600;
}

.cart-quantity {
    padding: 0 1rem;
    display: flex;
    align-items: center;
}

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

.cart-remove {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.cart-remove button {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.cart-update {
    display: flex;
    gap: 1rem;
}

.cart-summary {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.cart-summary h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.cart-checkout {
    margin-top: 2rem;
}

.btn-checkout {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.you-might-like {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.you-might-like h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Checkout Page */
.checkout-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

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

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

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

.step-label {
    font-weight: 600;
}

.progress-connector {
    width: 100px;
    height: 2px;
    background-color: var(--border-color);
    margin-top: 20px;
}

.checkout-section {
    padding: 3rem 0 5rem;
}

.checkout-container {
    margin-top: 3rem;
}

.checkout-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.checkout-details {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.form-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.required {
    color: var(--error-color);
}

.form-actions {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-summary {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    align-self: start;
}

.checkout-summary h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.summary-item-image {
    width: 80px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.summary-item-info {
    flex: 1;
}

.summary-item-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.summary-item-price {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

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

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

.success-container {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
    background-color: var(--background-alt);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
}

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

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

.success-info {
    margin-bottom: 2rem;
}

.recommendations {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.recommendations h2 {
    margin-bottom: 1rem;
}

.recommendations > p {
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-form-container {
        grid-template-columns: 1fr;
    }
    
    .advantage-grid,
    .facts-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cart-headers,
    .cart-item {
        grid-template-columns: 2fr 1fr 1fr 0.5fr;
    }
    
    .price-col {
        display: none;
    }
    
    .cart-price {
        display: none;
    }
    
    nav ul li {
        margin-left: 1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    nav ul li {
        margin: 0 0.5rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .advantage-grid,
    .product-grid,
    .facts-container,
    .picks-container,
    .values-grid,
    .team-grid,
    .partners-grid,
    .faq-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-headers {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cart-quantity,
    .cart-total,
    .cart-remove {
        padding: 0 1rem;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-update {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
