.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Serif', serif;
    font-size: 1.6rem;
    background-color: rgba(235, 240, 236, 1);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    background: #787878;
    padding: 4rem 3rem;
    border-radius: 1rem;
    max-width: 50rem;
    width: 100%;
    text-align: center;
}

.cookie-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cookie-content p {
    color: #e0e0e0;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cookie-content a {
    color: white;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-buttons button {
    width: 100%;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 5rem;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: white;
    color: #333;
}

.cookie-refuse {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-buttons button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: #787878;
    padding: 3rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 2.2rem;
    font-weight: 500;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 4rem;
}

.nav-links a {
    color: white;
    font-size: 1.8rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: rgba(122, 127, 123, 1);
    padding: 0 0 4rem;
    position: relative;
    overflow: visible;
}

.hero-layout {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    min-height: 50vh;
    padding: 6rem 0;
}

.hero-left {
    flex: 1;
    padding-top: 4rem;
}

.hero-left h1 {
    font-size: 4rem;
    color: white;
    font-weight: 400;
    line-height: 1.2;
}

.hero-center {
    max-width: 28rem;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center img {
    width: 100%;
    max-width: 30rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

.hero-right {
    flex: 1;
    padding-top: 4rem;
}

.hero-right h2 {
    font-size: 4.8rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-right p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    line-height: 1.8;
}

.hero-mousepad {
    margin: 0 auto;
    position: relative;
    max-width: 80rem;
    z-index: 10;
}

.hero-brand {
    font-family: 'Sarina', cursive;
    font-size: 20rem;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    letter-spacing: -1rem;
    line-height: 1;
}

/* Features Section */
.features {
    background: rgba(235, 240, 236, 1);
    padding: 6.4rem 0;
    position: relative;
}

.features-layout {
    display: flex;
    align-items: stretch;
    gap: 4rem;
}

.feature-left {
    flex: 1;
}

.feature-left h3 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.2;
}

.feature-left p {
    color: #666;
    line-height: 1.8;
    font-size: 1.6rem;
}

.feature-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-images {
    position: relative;
    width: 100%;
    height: 40rem;
}

.feature-images img {
    position: absolute;
    width: 25rem;
    height: auto;
}

.feature-images .angle-1 {
    top: 0;
    left: 0;
    transform: rotate(-10deg);
}

.feature-images .angle-2 {
    bottom: 0;
    right: 0;
    transform: rotate(5deg);
}

.feature-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-highlight {
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.feature-highlight img {
    max-width: 17rem;
    margin: 0 0 2rem;
}

.feature-highlight p {
    font-size: 1.6rem;
    color: #666;
}

.feature-right h3 {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.3;
}

/* Testimonial Section */
.testimonial {
    background-color: #fff;
    padding: 10rem 0;
}

.testimonial-layout {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.testimonial-image {
    flex: 0 0 40%;
}

.testimonial-image img {
    width: 100%;
    border-radius: 1rem;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.3;
}

.testimonial-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.testimonial-content cite {
    display: block;
    color: #999;
    font-style: normal;
    font-size: 1.4rem;
}

/* Timeline Section */
.timeline {
    background: rgba(235, 240, 236, 1);
    padding: 6rem 0;
    overflow: hidden;
}

.timeline .container{
    background-color: rgba(122, 127, 123, 1);
    color: #fff;
    padding: 1rem 0;
}

.timeline-row {
    width: 100%;
    display: flex;
    gap: 4rem;
    font-size: 1.6rem;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.timeline-row span {
    font-weight: 500;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* DeskFlow Section */
.deskflow {
    background: rgba(122, 127, 123, 1);
    color: white;
    padding: 10rem 0;
}

.deskflow-header {
    text-align: center;
    margin-bottom: 6rem;
}

.deskflow-header h2 {
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.3;
    max-width: 90rem;
    margin: 0 auto;
}

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

.deskflow-image img {
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
    border-radius: 1rem;
}

.deskflow-testimonials {
    display: flex;
    gap: 6rem;
    max-width: 120rem;
    margin: -10rem auto 0;
}

.deskflow-left,
.deskflow-right {
    flex: 1;
}

.deskflow-left p,
.deskflow-right p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
}

.deskflow-left cite,
.deskflow-right cite {
    display: block;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
}

/* Footer */
.footer {
    background: rgba(122, 127, 123, 1);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.footer-brand {
    text-align: center;
    color: #fff;
    font-family: 'Sarina', cursive;
    font-size: 16rem;
    margin-bottom: 6rem;
    letter-spacing: -0.5rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 12rem;
    margin-bottom: 6rem;
    font-size: 1.8rem;
}

.footer-address,
.footer-contact,
.footer-email {
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-copyright {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 3rem;
}

.footer-social a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
}

.last-updated {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Catalog Page Styles */
.catalog {
    background: white;
    padding: 6rem 0;
    min-height: 80vh;
}

.catalog h1 {
    font-size: 4.8rem;
    text-align: center;
    margin-bottom: 6rem;
    font-weight: 400;
    line-height: 1.2;
}

.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.product-card {
    flex: 1 1 calc(33.333% - 2rem);
    background: #f9f9f9;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card a {
    display: block;
    padding: 3rem;
}

.product-image {
    background: #e5e5e5;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    border-radius: 0.8rem;
}

.product-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.product-card .price {
    font-size: 2rem;
    color: #666;
    font-weight: 500;
}

.product-cart {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: #666;
    color: white;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.product-cart:hover {
    background: #555;
    transform: scale(1.1);
}

/* Product Detail Page */
.product-detail {
    background: white;
    padding: 8rem 0;
}

.product-layout {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.product-gallery {
    flex: 1;

    min-height: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    flex: 1;
}

.product-info h1 {
    font-size: 4rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.product-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 4rem;
    font-size: 1.6rem;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 5rem;
}

.product-price .price {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
}

.buy-button {
    background: #666;
    color: white;
    padding: 1.8rem 5rem;
    border: none;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-details {
    color: #666;
    line-height: 1.8;
}

.product-details p {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
}

.product-specs {
    background: #f9f9f9;
    padding: 3.5rem;
    border-radius: 1rem;
    margin-top: 4rem;
}

.product-specs h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.product-specs ul {
    list-style: none;
}

.product-specs li {
    padding: 1.2rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    font-size: 1.5rem;
}

.product-specs li:last-child {
    border-bottom: none;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
    
    .hero-brand {
        font-size: 15rem;
        bottom: 25rem;
    }
    
    .footer-brand {
        font-size: 18rem;
    }
}

@media (max-width: 1024px) {
    .hero-layout {
        flex-direction: column;
    }
    
    .hero-left h1 {
        font-size: 4.2rem;
    }

    
    .features-layout {
        flex-direction: column;
        padding: 4rem;
    }
    
    .feature-images {
        height: 30rem;
    }
    
    .testimonial-layout {
        flex-direction: column;
        padding: 4rem;
    }
    
    .deskflow-testimonials {
        flex-direction: column;
        gap: 4rem;
    }
    
    .footer-content {
        gap: 6rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 9px;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .cookie-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cookie-buttons button {
        width: auto;
        min-width: 15rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .hero-layout {
        padding: 4rem 0;
    }
    
    .hero-left h1 {
        font-size: 3.6rem;
    }
    
    .hero-right h2 {
        font-size: 3.6rem;
    }
    
    .hero-brand {
        font-size: 10rem;
        letter-spacing: -0.5rem;
    }

    
    .deskflow-header h2 {
        font-size: 3.2rem;
    }
    
    .footer-brand {
        font-size: 8rem;
        margin-bottom: 4rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .catalog h1 {
        font-size: 3.6rem;
    }
    
    .catalog-grid {
        flex-direction: column;
    }
    
    .product-card {
        flex: 1 1 100%;
    }
    
    .product-layout {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }
    
    .hero-left h1 {
        font-size: 4rem;
    }
    
    .hero-right h2 {
        font-size: 3rem;
    }
    
    .hero-brand {
        font-size: 7rem;
    }
    
    .features-layout,
    .testimonial-layout {
        padding: 3rem;
    }
    
    .footer-brand {
        font-size: 6rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Additional Enhancements */
.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Selection color */
::selection {
    background: #787878;
    color: white;
}

::-moz-selection {
    background: #787878;
    color: white;
}


.footer-social{
    justify-content: center;
    margin-top: 4rem;
    width: 100%;
}

.product-detail-flex{
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}
.product-detail-flex p{
    max-width: 32rem;
}