:root {
    --gradient-angle: 0deg;
    --primary-glow: rgba(232, 197, 216, 0.4);
    --secondary-glow: rgba(212, 165, 196, 0.3);
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes breathe {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
    40% { transform: translateY(-10px) rotate(-45deg); }
    60% { transform: translateY(-5px) rotate(-45deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-glow),
                    0 0 40px var(--secondary-glow);
    }
    50% {
        box-shadow: 0 0 40px var(--primary-glow),
                    0 0 80px var(--secondary-glow);
    }
}

@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.breadcrumbs {
    padding: 15px 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(232, 197, 216, 0.15);
    position: relative;
    overflow: hidden;
}

.breadcrumbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.breadcrumbs a {
    color: #e8c5d8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
}

.breadcrumbs a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e8c5d8, #d4a5c4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.breadcrumbs a:hover {
    color: #ffffff;
    background: rgba(232, 197, 216, 0.1);
    transform: translateY(-2px);
}

.breadcrumbs a:hover::before {
    width: 80%;
}

.separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.main-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.hero-terms {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a0a14 50%, #1a1a1a 100%);
    overflow: hidden;
    padding: 40px 20px;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(10, 5, 10, 0.50) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.hero-background-slider .slider-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
}

.hero-background-slider .slider-image.active {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.9);
}

.hero-terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 197, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 196, 0.05) 0%, transparent 50%);
    animation: breathe 8s ease-in-out infinite;
    z-index: 1;
}

.hero-terms::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(232, 197, 216, 0.02) 60deg,
        transparent 120deg
    );
    animation: rotate 20s linear infinite;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 100%;
    padding: 0 15px;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite, float 3s ease-in-out infinite;
    letter-spacing: -1px;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(232, 197, 216, 0.3));
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(204, 204, 204, 0.9);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.5;
}

.last-update {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(232, 197, 216, 0.1);
    color: #e8c5d8;
    padding: 20px 35px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(232, 197, 216, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.4s both, pulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.last-update:hover {
    background: rgba(232, 197, 216, 0.2);
    transform: scale(1.05);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}

.scroll-arrow {
    width: 25px;
    height: 25px;
    border: 3px solid #e8c5d8;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: scrollBounce 2s infinite;
    filter: drop-shadow(0 0 10px rgba(232, 197, 216, 0.5));
}

.toc-section {
    padding: 80px 20px;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.6) 100%),
        radial-gradient(circle at 10% 20%, rgba(232, 197, 216, 0.05) 0%, transparent 50%);
    position: relative;
}

.toc-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(51, 51, 51, 0.4);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(232, 197, 216, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.toc-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(232, 197, 216, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.toc-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #e8c5d8;
    background-size: 200% 200%;
    position: relative;
}

.toc-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e8c5d8, transparent);
}

.table-of-contents {
    background: transparent;
    position: relative;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.toc-link {
    display: block;
    color: rgba(204, 204, 204, 0.9);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 15px;
    background: rgba(51, 51, 51, 0.6);
    border: 1px solid rgba(85, 85, 85, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.toc-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #e8c5d8, #d4a5c4);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toc-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.1), transparent);
    transition: left 0.5s ease;
}

.toc-link:hover {
    color: #ffffff;
    background: rgba(51, 51, 51, 0.9);
    border-color: rgba(232, 197, 216, 0.4);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(232, 197, 216, 0.2);
}

.toc-link:hover::before {
    opacity: 1;
}

.toc-link:hover::after {
    left: 100%;
}

.toc-link.active {
    color: #e8c5d8;
    background: rgba(232, 197, 216, 0.1);
}

.terms-content {
    padding: 80px 20px;
}

.term-section {
    margin-bottom: 50px;
    background: rgba(51, 51, 51, 0.3);
    border-radius: 25px;
    border: 1px solid rgba(85, 85, 85, 0.3);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.term-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 197, 216, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.term-section:hover {
    border-color: rgba(232, 197, 216, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.term-section:hover::before {
    opacity: 1;
}

.term-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 45px 25px;
    background: linear-gradient(135deg, rgba(232, 197, 216, 0.08) 0%, rgba(51, 51, 51, 0.5) 100%);
    border-bottom: 1px solid rgba(232, 197, 216, 0.15);
    position: relative;
    overflow: hidden;
}

.term-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.term-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e8c5d8;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 197, 216, 0.15);
    border-radius: 20px;
    border: 2px solid rgba(232, 197, 216, 0.3);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.term-section:hover .term-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(232, 197, 216, 0.3);
}

.term-number::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.term-section:hover .term-number::before {
    opacity: 1;
}

.term-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    flex: 1;
    letter-spacing: -0.5px;
}

.term-content {
    padding: 40px;
    position: relative;
}

.term-content p {
    margin-bottom: 20px;
    color: rgba(204, 204, 204, 0.95);
    font-size: 1.05rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.term-section:hover .term-content p {
    color: rgba(230, 230, 230, 1);
}

.term-content h4 {
    color: #e8c5d8;
    font-size: 1.3rem;
    margin: 30px 0 20px 0;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.term-content h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #e8c5d8, #d4a5c4);
    border-radius: 2px;
}

.term-list,
.term-numbered-list {
    margin: 25px 0;
    padding-left: 20px;
}

.term-list li,
.term-numbered-list li {
    margin-bottom: 15px;
    color: rgba(204, 204, 204, 0.9);
    line-height: 1.7;
    padding-left: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.term-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #e8c5d8;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.term-list li:hover::before {
    transform: translateX(5px);
}

.term-numbered-list {
    list-style: none;
    counter-reset: term-counter;
}

.term-numbered-list li {
    counter-increment: term-counter;
    padding-left: 40px;
}

.term-numbered-list li::before {
    content: counter(term-counter);
    position: absolute;
    left: 0;
    top: 2px;
    background: linear-gradient(135deg, #e8c5d8, #d4a5c4);
    color: #000;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(232, 197, 216, 0.3);
    transition: all 0.3s ease;
}

.term-numbered-list li:hover::before {
    transform: scale(1.15) rotate(10deg);
}

.term-highlight {
    background: rgba(232, 197, 216, 0.08);
    border: 1px solid rgba(232, 197, 216, 0.25);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 5px solid #e8c5d8;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.term-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #e8c5d8, #d4a5c4);
    box-shadow: 0 0 20px rgba(232, 197, 216, 0.5);
}

.term-highlight:hover {
    background: rgba(232, 197, 216, 0.12);
    transform: translateX(5px);
}

.term-highlight.warning {
    background: rgba(255, 182, 193, 0.08);
    border-color: rgba(255, 182, 193, 0.25);
    border-left-color: #ffb6c1;
}

.term-highlight.warning::before {
    background: linear-gradient(180deg, #ffb6c1, #ff8fa3);
    box-shadow: 0 0 20px rgba(255, 182, 193, 0.5);
}

.term-highlight h4 {
    margin-top: 0;
    color: #e8c5d8;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.term-highlight.warning h4 {
    color: #ffb6c1;
}

.payment-info {
    margin: 30px 0;
}

.payment-method {
    background: rgba(51, 51, 51, 0.6);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(85, 85, 85, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(232, 197, 216, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.payment-method:hover {
    border-color: rgba(232, 197, 216, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.payment-method:hover::before {
    top: -25%;
    right: -25%;
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.shipping-option {
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.6) 0%, rgba(40, 40, 40, 0.4) 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(85, 85, 85, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.shipping-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 197, 216, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.shipping-option:hover {
    border-color: rgba(232, 197, 216, 0.5);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(232, 197, 216, 0.2);
}

.shipping-option:hover::before {
    opacity: 1;
}

.shipping-option h4 {
    color: #e8c5d8;
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.shipping-option p {
    color: rgba(204, 204, 204, 0.85);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.shipping-option .price {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232, 197, 216, 0.15);
    border-radius: 25px;
    border: 1px solid rgba(232, 197, 216, 0.3);
}

.warranty-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.warranty-type {
    background: rgba(51, 51, 51, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(85, 85, 85, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.warranty-type::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(232, 197, 216, 0.1), transparent);
    transition: top 0.5s ease;
}

.warranty-type:hover {
    border-color: rgba(232, 197, 216, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.warranty-type:hover::before {
    top: 0;
}

.warranty-type h4 {
    color: #e8c5d8;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.warranty-type p {
    position: relative;
    z-index: 1;
}

.privacy-rights {
    margin: 35px 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.right-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(51, 51, 51, 0.4);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(85, 85, 85, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.right-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.1), transparent);
    transition: left 0.5s ease;
}

.right-item:hover {
    background: rgba(51, 51, 51, 0.7);
    transform: translateX(10px);
    border-color: rgba(232, 197, 216, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.right-item:hover::before {
    left: 100%;
}

.right-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(232, 197, 216, 0.5));
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.right-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.right-item:hover .right-icon {
    transform: scale(1.2) rotate(10deg);
}

.ip-section {
    margin: 30px 0;
    background: rgba(51, 51, 51, 0.4);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(85, 85, 85, 0.3);
    transition: all 0.3s ease;
}

.ip-section:hover {
    background: rgba(51, 51, 51, 0.6);
    border-color: rgba(232, 197, 216, 0.3);
}

.liability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.liability-item {
    background: rgba(51, 51, 51, 0.4);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(85, 85, 85, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.liability-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 197, 216, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.liability-item:hover {
    border-color: rgba(232, 197, 216, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.liability-item:hover::after {
    opacity: 1;
}

.liability-item h4 {
    color: #e8c5d8;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.liability-item ul {
    position: relative;
    z-index: 1;
}

.modification-notice {
    background: rgba(255, 182, 193, 0.06);
    border: 1px solid rgba(255, 182, 193, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 5px solid #ffb6c1;
    position: relative;
    transition: all 0.3s ease;
}

.modification-notice:hover {
    background: rgba(255, 182, 193, 0.1);
    transform: translateX(5px);
}

.modification-notice h4 {
    color: #ffb6c1;
    margin-bottom: 15px;
}

.legal-info {
    margin: 35px 0;
}

.company-details {
    background: rgba(51, 51, 51, 0.4);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(85, 85, 85, 0.3);
    transition: all 0.3s ease;
}

.company-details:hover {
    background: rgba(51, 51, 51, 0.6);
    border-color: rgba(232, 197, 216, 0.3);
}

.contact-methods {
    margin: 35px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(51, 51, 51, 0.4);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(85, 85, 85, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 197, 216, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.contact-item:hover {
    background: rgba(51, 51, 51, 0.7);
    transform: translateY(-5px);
    border-color: rgba(232, 197, 216, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-item:hover::before {
    width: 300px;
    height: 300px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(232, 197, 216, 0.5));
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
}

.contact-item strong {
    color: #e8c5d8;
    display: block;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.contact-item p {
    color: rgba(204, 204, 204, 0.9);
    margin: 0;
    position: relative;
    z-index: 1;
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(51, 51, 51, 0.3);
    z-index: 9999;
    pointer-events: none;
}

.reading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e8c5d8, #d4a5c4);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(232, 197, 216, 0.5);
}

.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(51, 51, 51, 0.95);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 4px solid #e8c5d8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    max-width: 350px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    border-left-color: #4caf50;
}

.toast.error {
    border-left-color: #f44336;
}

.toast.warning {
    border-left-color: #ff9800;
}

.toast.cart {
    border-left-color: #e8c5d8;
}

[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

.cart-btn {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-count {
    transition: all 0.3s ease;
    display: flex !important;
    opacity: 1;
}

.cart-count.show {
    display: flex !important;
    opacity: 1 !important;
}

.cart-count.empty {
    opacity: 0.7;
}

@media (min-width: 1400px) {
    .toc-container,
    .terms-content {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1399px) {
    .page-title {
        font-size: 3.8rem;
    }
}

@media (max-width: 1199px) {
    .page-title {
        font-size: 3.5rem;
    }
    
    .toc-container {
        padding: 40px;
    }
    
    .term-header {
        padding: 30px 35px 20px;
    }
    
    .term-content {
        padding: 35px;
    }
}

@media (max-width: 1023px) {
    .page-title {
        font-size: 3.2rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .toc-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-background-slider .slider-image {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .hero-background-slider .slider-image.active {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 991px) {
    .hero-terms {
        min-height: 55vh;
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .toc-container {
        padding: 35px;
        margin: 0 15px;
    }
    
    .toc-title {
        font-size: 2.2rem;
    }
    
    .shipping-grid,
    .warranty-info,
    .liability-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-terms {
        min-height: 50vh;
        padding: 25px 15px;
    }
    
    .page-title {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .last-update {
        padding: 15px 25px;
        font-size: 13px;
    }
    
    .breadcrumbs {
        padding: 12px 0;
    }
    
    .breadcrumbs a {
        font-size: 13px;
        padding: 4px 8px;
    }
    
    .separator {
        margin: 0 6px;
    }
    
    .toc-section {
        padding: 60px 15px;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .toc-container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .toc-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .toc-link {
        padding: 12px 18px;
        font-size: 15px;
    }
    
    .toc-link:hover {
        transform: translateX(5px) scale(1.01);
    }
    
    .terms-content {
        padding: 60px 15px;
    }
    
    .term-section {
        margin-bottom: 40px;
        border-radius: 20px;
    }
    
    .term-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .term-number {
        min-width: 65px;
        height: 65px;
        font-size: 2.2rem;
    }
    
    .term-title {
        font-size: 1.7rem;
    }
    
    .term-content {
        padding: 30px 20px;
    }
    
    .term-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .term-content h4 {
        font-size: 1.2rem;
        padding-left: 15px;
    }
    
    .shipping-grid,
    .warranty-info,
    .rights-grid,
    .liability-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shipping-option,
    .warranty-type,
    .liability-item,
    .contact-item {
        padding: 25px;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 22px;
        height: 22px;
    }
    
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 25px;
        right: 25px;
        font-size: 22px;
    }
    
    .toast-container {
        right: 15px;
        left: 15px;
        top: 70px;
    }
    
    .toast {
        max-width: 100%;
        padding: 12px 20px;
    }
    
    .hero-background-slider .slider-image {
        object-fit: contain;
        transform: translate(-50%, -50%) scale(0.9);
    }
    
    .hero-background-slider .slider-image.active {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 639px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .hero-terms {
        min-height: 45vh;
    }
}

@media (max-width: 479px) {
    .page-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
    }
    
    .last-update {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .toc-container {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .toc-title {
        font-size: 1.8rem;
    }
    
    .toc-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .term-section {
        margin: 0 10px 35px;
        border-radius: 15px;
    }
    
    .term-header {
        padding: 20px 15px;
    }
    
    .term-number {
        min-width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .term-title {
        font-size: 1.5rem;
    }
    
    .term-content {
        padding: 25px 15px;
    }
    
    .term-content p {
        font-size: 0.95rem;
    }
    
    .term-content h4 {
        font-size: 1.1rem;
    }
    
    .term-highlight,
    .modification-notice,
    .jurisdiction {
        padding: 20px 15px;
        margin: 25px 0;
    }
    
    .shipping-option,
    .warranty-type,
    .liability-item {
        padding: 20px 15px;
    }
    
    .contact-item {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .contact-icon img {
        width: 35px;
        height: 35px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}

@media (max-width: 359px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .toc-container {
        padding: 20px 12px;
    }
    
    .toc-title {
        font-size: 1.6rem;
    }
    
    .term-header {
        padding: 18px 12px;
    }
    
    .term-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .term-title {
        font-size: 1.3rem;
    }
    
    .term-content {
        padding: 20px 12px;
    }
    
    .term-content p {
        font-size: 0.9rem;
    }
    
    .hero-background-slider .slider-image {
        transform: translate(-50%, -50%) scale(0.8);
    }
    
    .hero-background-slider .slider-image.active {
        transform: translate(-50%, -50%) scale(0.9);
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-terms {
        min-height: 80vh;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .breadcrumbs,
    .hero-scroll-indicator,
    .back-to-top,
    .reading-progress,
    .toast-container,
    .hero-background-slider {
        display: none !important;
    }
    
    .term-section {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    
    .page-title {
        color: #000 !important;
    }
    
    .hero-terms {
        background: #fff !important;
        min-height: auto;
    }
    
    .term-header,
    .term-content {
        padding: 20px !important;
    }
}