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

:root {
    --deep-plum: #6B2D5C;
    --warm-terracotta: #E67E50;
    --soft-cream: #F4EDE3;
    --forest-moss: #5C8374;
    --dusty-rose: #D4A5A5;
    --charcoal: #3A3A3A;
    --golden-amber: #D4A373;
    --seafoam: #9EC5AB;
    --lavender-mist: #B8A9C9;
    --paper-white: #FDFBF7;
    --light-sand: #F7F3ED;
    --shadow-gray: #E8E4DC;
}

body {
    font-family: 'Cabinet Grotesk', sans-serif;
    background-color: var(--paper-white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

.container-custom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--paper-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--deep-plum);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--warm-terracotta);
}

.cart-trigger {
    position: relative;
}

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    margin-top: 75px;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--light-sand) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

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

.hero-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-plum);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ui.button.primary {
    background: var(--deep-plum);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ui.button.primary:hover {
    background: var(--warm-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 80, 0.3);
}

.ui.button.secondary {
    background: transparent;
    color: var(--deep-plum);
    border: 2px solid var(--deep-plum);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ui.button.secondary:hover {
    background: var(--deep-plum);
    color: white;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-plum);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-description {
    text-align: center;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 50px;
    font-size: 18px;
}

.features-section {
    padding: 80px 20px;
    background: var(--paper-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--light-sand);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 48px;
    color: var(--warm-terracotta);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
}

.featured-products {
    padding: 80px 20px;
    background: var(--light-sand);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 45, 92, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 8px;
}

.product-description {
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--warm-terracotta);
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.testimonials-section {
    padding: 80px 20px;
    background: var(--paper-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 4px solid var(--warm-terracotta);
}

.testimonial-rating {
    color: var(--golden-amber);
    margin-bottom: 15px;
    font-size: 18px;
}

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

.testimonial-author strong {
    color: var(--deep-plum);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 14px;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--forest-moss) 100%) !important;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    color: white;
    opacity: 0.95;
    margin-bottom: 30px;
    font-size: 18px;
}

.main-footer {
    background: var(--charcoal);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-description {
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.85;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--warm-terracotta);
}

.footer-column h4 {
    color: var(--warm-terracotta);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--warm-terracotta);
    padding-left: 5px;
}

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

.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-sand);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: var(--deep-plum);
    font-size: 22px;
}

.cart-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--charcoal);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-sand);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

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

.cart-item-name {
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--warm-terracotta);
    font-weight: 600;
    margin-bottom: 10px;
}

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

.quantity-btn {
    background: var(--light-sand);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color: var(--charcoal);
}

.quantity-btn:hover {
    background: var(--deep-plum);
    color: white;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--warm-terracotta);
    cursor: pointer;
    font-size: 18px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--light-sand);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-plum);
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    padding: 25px 20px;
    z-index: 3000;
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content h3 {
    color: var(--deep-plum);
    margin-bottom: 10px;
    font-size: 20px;
}

.cookie-content p {
    color: var(--charcoal);
    margin-bottom: 20px;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 4000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.cookie-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--charcoal);
}

.cookie-modal h2 {
    color: var(--deep-plum);
    margin-bottom: 25px;
    font-size: 24px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-sand);
}

.cookie-category-header label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.cookie-category-title {
    font-weight: 600;
    color: var(--deep-plum);
    font-size: 16px;
}

.cookie-category-description {
    color: var(--charcoal);
    opacity: 0.8;
    margin-top: 10px;
    font-size: 14px;
    padding-left: 32px;
}

.cookie-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.page-header {
    margin-top: 75px;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--light-sand) 100%);
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-plum);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--charcoal);
    opacity: 0.85;
}

.products-section {
    padding: 60px 20px;
}

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.products-intro h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 15px;
}

.products-intro p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
}

.product-features {
    padding: 80px 20px;
    background: var(--light-sand);
}

.features-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.feature-item i {
    font-size: 42px;
    color: var(--warm-terracotta);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
}

.care-instructions {
    padding: 80px 20px;
    background: var(--paper-white);
}

.care-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
}

.care-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.care-card i {
    font-size: 32px;
    color: var(--forest-moss);
    flex-shrink: 0;
}

.care-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 8px;
}

.care-card p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.6;
}

.about-intro {
    padding: 60px 20px;
}

.about-content-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.values-section {
    padding: 80px 20px;
    background: var(--light-sand);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 48px;
    color: var(--seafoam);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
}

.process-section {
    padding: 80px 20px;
    background: var(--paper-white);
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.process-step {
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 4px solid var(--warm-terracotta);
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--lavender-mist);
    margin-bottom: 10px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
}

.team-commitment {
    padding: 80px 20px;
    background: var(--light-sand);
}

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

.commitment-text {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 17px;
}

.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-detail i {
    font-size: 24px;
    color: var(--warm-terracotta);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 5px;
}

.contact-detail p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.6;
}

.store-image {
    margin-top: 30px;
}

.store-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 25px;
}

.ui.form .field > label {
    color: var(--deep-plum);
    font-weight: 500;
    margin-bottom: 8px;
}

.ui.form input,
.ui.form textarea {
    border: 2px solid var(--light-sand);
    border-radius: 8px;
    padding: 12px 15px;
    font-family: 'Cabinet Grotesk', sans-serif;
    transition: border-color 0.3s ease;
}

.ui.form input:focus,
.ui.form textarea:focus {
    border-color: var(--deep-plum);
    outline: none;
}

.iti {
    width: 100%;
}

.map-section {
    padding: 80px 20px;
    background: var(--light-sand);
}

.map-wrapper {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.checkout-section {
    padding: 60px 20px;
}

.checkout-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.checkout-form-wrapper h2,
.order-summary h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 25px;
}

.order-summary {
    background: var(--light-sand);
    padding: 30px;
    border-radius: 12px;
}

.summary-items {
    margin-bottom: 25px;
}

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

.summary-item-name {
    color: var(--charcoal);
}

.summary-item-price {
    font-weight: 600;
    color: var(--deep-plum);
}

.summary-totals {
    margin-top: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--charcoal);
}

.total-row {
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-plum);
    padding-top: 20px;
    border-top: 2px solid var(--shadow-gray);
}

.payment-info {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.payment-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 10px;
}

.payment-info p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: 50px 30px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 80px;
    color: var(--forest-moss);
    margin-bottom: 25px;
}

.thanks-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-plum);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--charcoal);
    opacity: 0.9;
    margin-bottom: 30px;
}

.thanks-details p {
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.thanks-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-sand);
}

.thanks-contact h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 15px;
}

.thanks-contact p {
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 10px;
}

.legal-content {
    padding: 60px 20px;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--deep-plum);
    margin: 40px 0 20px;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--forest-moss);
    margin: 30px 0 15px;
}

.legal-wrapper p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-wrapper ul {
    margin: 20px 0 20px 30px;
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.8;
}

.legal-wrapper li {
    margin-bottom: 10px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.paper-fold {
    position: relative;
}

.paper-fold::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--shadow-gray) transparent transparent;
}

.paper-shadow {
    box-shadow: 8px 8px 0 rgba(107, 45, 92, 0.1);
}

.paper-cut::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--warm-terracotta);
    margin: 15px auto 0;
}

.paper-fold-card {
    position: relative;
    overflow: hidden;
}

.paper-fold-card::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, var(--shadow-gray) 50%);
}

.paper-lift {
    transition: all 0.3s ease;
}

.paper-lift:hover {
    transform: translateY(-5px) rotate(1deg);
}

.paper-texture {
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.02) 2px,
            rgba(0,0,0,0.02) 4px
        );
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .hero-text-wrapper {
        text-align: left;
        flex: 1;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-cta {
        flex-direction: row;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-comparison {
        grid-template-columns: repeat(2, 1fr);
    }

    .care-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content-grid {
        flex-direction: row;
        align-items: center;
    }

    .about-text,
    .about-image {
        flex: 1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .process-image,
    .process-steps {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }

    .checkout-grid {
        flex-direction: row;
    }

    .checkout-form-wrapper {
        flex: 2;
    }

    .order-summary {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-comparison {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: var(--paper-white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .ui.button {
        width: 100%;
    }
}