@import url(//fonts.googleapis.com/css?family=Roboto:300,400,500);

body {
    font-family: "Roboto", sans-serif;
}

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

a:visited {
    color: inherit;
}

i.fa {
    margin-right: 5px;
}

header {
    background-color: #2f9eb64d;
}

#about {
    font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
    .features-img {
        width: 300px;
    }
}

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/* Header Block: Asymmetric Split Design - NO CSS Variables */
.header-block-asymm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.header-block-asymm.scrolled {
    background: rgba(10, 10, 26, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header-block-asymm.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    position: relative;
}

/* Brand Section with Asymmetric Design */
.brand-wrapper {
    position: relative;
    z-index: 10;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: translateX(5px);
}

.logo-icon {
    width: 42px;
    height: 42px;
    transition: all 0.4s ease;
}

.brand-logo:hover .logo-icon {
    transform: rotate(180deg);
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 50%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Main Navigation - Floating Design */
.main-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e7ff;
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link-accent {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.nav-link-accent:hover {
    background: linear-gradient(135deg, #00e5ff 0%, #8b3fff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

/* Dropdown Styles */
.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.has-dropdown.dropdown-active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    list-style: none;
    margin: 0;
    padding: 0.75rem;
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.has-dropdown.dropdown-active .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    margin: 0.25rem 0;
}

.dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #e0e7ff;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(123, 47, 247, 0.15) 100%);
    color: #00d4ff;
    transform: translateX(5px);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-navigation {
    padding: 120px 2rem 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.5s ease forwards;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(5) {
    animation-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(6) {
    animation-delay: 0.35s;
}

@keyframes slideInLeft {
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e0e7ff;
    text-decoration: none;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(123, 47, 247, 0.15) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.mobile-nav-link-accent {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.mobile-nav-link-accent:hover {
    background: linear-gradient(135deg, #00e5ff 0%, #8b3fff 100%);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Mobile Dropdown */
.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-has-dropdown.mobile-dropdown-active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mobile-has-dropdown.mobile-dropdown-active .mobile-dropdown-menu-new {
    max-height: 500px;
}

.mobile-dropdown-item {
    margin: 0.5rem 0;
}

.mobile-dropdown-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #a5b4fc;
    text-decoration: none;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.mobile-dropdown-link:hover {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .main-navigation {
    display: none;
    }

    .hamburger-menu {
    display: flex;
    }

    .header-container {
    height: 75px;
    }

    .brand-text {
    font-size: 1.5rem;
    }

    .logo-icon {
    width: 36px;
    height: 36px;
    }
}

@media (max-width: 576px) {
    .header-container {
    padding: 0 1.5rem;
    height: 70px;
    }

    .brand-text {
    font-size: 1.25rem;
    }

    .logo-icon {
    width: 32px;
    height: 32px;
    }

    .mobile-nav-link {
    font-size: 1.25rem;
    padding: 1rem 1.25rem;
    }

    .mobile-dropdown-link {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    }

    .mobile-navigation {
    padding: 100px 1.5rem 2rem;
    }
}
/* Hero Block: Geometric Split Design */
.hero-block-geometric {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0e27;
}

/* Background Layers */
.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    opacity: 0.95;
}

/* Geometric Shapes */
.hero-geometric-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: morph 20s ease-in-out infinite;
}

.hero-geometric-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-geometric-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -100px;
    left: -100px;
    animation-delay: 7s;
}

.hero-geometric-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes morph {
    0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
    }
    25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: rotate(90deg) scale(1.1);
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: rotate(180deg) scale(0.9);
    }
    75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(270deg) scale(1.05);
    }
}

/* Header */
.hero-header {
    position: relative;
    z-index: 100;
    padding: 1.5rem 0;
}

.hero-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-logo svg {
    filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.3));
}

/* Mobile Menu Toggle */
.menu-toggle-input {
    display: none;
}

.menu-toggle-label {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle-input:checked ~ .menu-toggle-label .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle-input:checked ~ .menu-toggle-label .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle-input:checked ~ .menu-toggle-label .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navigation */
.hero-nav {
    position: relative;
}

.nav-backdrop {
    display: none;
}

.nav-list {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    transition: width 0.4s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::before {
    width: 100%;
}

/* Content Wrapper */
.hero-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Text Column */
.hero-text-column {
    position: relative;
}

.hero-text-inner {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-badge svg {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.title-line {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #7b2ff7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0 0 3rem 0;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7b2ff7, #00d4ff);
    transition: left 0.4s ease;
}

.hero-btn-primary:hover::before {
    left: 0;
}

.hero-btn-primary span,
.hero-btn-primary svg {
    position: relative;
    z-index: 1;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.hero-btn svg {
    transition: transform 0.3s ease;
}

.hero-btn:hover svg {
    transform: translateX(5px);
}

/* Visual Column */
.hero-visual-column {
    position: relative;
    height: 600px;
}

/* Floating Cards */
.hero-floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.floating-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

.floating-card.card-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 3s;
}

.floating-card.card-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-20px) rotate(2deg);
    }
}

.card-pulse {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
    transform: scale(1);
    opacity: 1;
    }
    50% {
    transform: scale(1.5);
    opacity: 0.5;
    }
}

/* Decoration Elements */
.hero-decoration-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border: 2px dashed rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCircle 30s linear infinite;
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-decoration-dots {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(0, 212, 255, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.5));
}

.scroll-dot {
    width: 10px;
    height: 10px;
    background: #00d4ff;
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% {
    transform: translateY(0);
    opacity: 1;
    }
    50% {
    transform: translateY(20px);
    opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .hero-visual-column {
    height: 400px;
    order: -1;
    }
    
    .hero-title {
    font-size: 3rem;
    }
    
    .hero-subtitle {
    font-size: 1.25rem;
    }
    
    .floating-card {
    padding: 1.5rem;
    }
    
    .hero-decoration-circle {
    width: 350px;
    height: 350px;
    }
}

@media (max-width: 768px) {
    .menu-toggle-label {
    display: flex;
    }
    
    .hero-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 320px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 99;
    }
    
    .menu-toggle-input:checked ~ .hero-nav {
    transform: translateX(0);
    }
    
    .nav-backdrop {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-list {
    position: relative;
    flex-direction: column;
    gap: 0;
    padding: 6rem 2rem 2rem;
    height: 100%;
    align-items: flex-start;
    }
    
    .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInNav 0.4s ease forwards;
    }
    
    .menu-toggle-input:checked ~ .hero-nav .nav-item:nth-child(1) {
    animation-delay: 0.1s;
    }
    
    @keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
    
    .nav-link {
    display: block;
    padding: 1.25rem 0;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    }
    
    .hero-btn {
    width: 100%;
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 300px;
    }
    
    .floating-card {
    padding: 1rem;
    }
    
    .floating-card svg {
    width: 36px;
    height: 36px;
    }
    
    .hero-geometric-shape.shape-1 {
    width: 400px;
    height: 400px;
    }
    
    .hero-geometric-shape.shape-2 {
    width: 300px;
    height: 300px;
    }
    
    .hero-geometric-shape.shape-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-header-container {
    padding: 0 1.5rem;
    }
    
    .hero-container {
    padding: 0 1.5rem;
    }
    
    .hero-title {
    font-size: 2rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-badge {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    }
    
    .feature-mini-item {
    font-size: 0.9375rem;
    }
    
    .hero-scroll-indicator {
    bottom: 2rem;
    }
}
/* Contact Information Block: Asymmetric Split with Floating Cards */
.contact-info-block-tx9 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    overflow: hidden;
}

.contact-container-main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Header Section */
.contact-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-main-heading {
    font-size: 3.75rem;
    font-weight: 800;
    color: #0c4a6e;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.header-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

/* Grid Layout */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Details Column */
.contact-details-column {
    position: relative;
}

.contact-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Info Cards */
.contact-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 30px rgba(14, 116, 144, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(14, 116, 144, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(14, 116, 144, 0.2);
    border-color: #06b6d4;
}

.contact-info-card:hover::before {
    opacity: 1;
}

/* Card Icons */
.card-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.address-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
    box-shadow: 0 8px 20px rgba(14, 116, 144, 0.3);
}

.contact-info-card:hover .card-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.contact-icon {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

/* Card Content */
.card-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0891b2;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0c4a6e;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}

.phone-link,
.email-link {
    color: #0c4a6e;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.phone-link::after,
.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 100%);
    transition: width 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: #0891b2;
}

.phone-link:hover::after,
.email-link:hover::after {
    width: 100%;
}

.phone-link:focus,
.email-link:focus {
    outline: 3px solid #06b6d4;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Map Column */
.contact-map-column {
    position: relative;
}

.map-container-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(14, 116, 144, 0.25);
    height: 600px;
}

.map-frame-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    border-radius: 36px;
    z-index: 0;
}

.map-embed-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    z-index: 1;
    background: #e0f2fe;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-overlay-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.1) 0%, transparent 30%);
    pointer-events: none;
    z-index: 2;
}

/* Decorative Background Elements */
.bg-decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    top: -100px;
    left: -150px;
    animation: float-circle-1 20s ease-in-out infinite;
}

.circle-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #0891b2 0%, transparent 70%);
    bottom: -80px;
    right: -100px;
    animation: float-circle-2 25s ease-in-out infinite;
}

.bg-decoration-blob {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    animation: morph-blob 30s ease-in-out infinite;
}

/* Animations */
@keyframes float-circle-1 {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    50% {
    transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes float-circle-2 {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    50% {
    transform: translate(-40px, 30px) scale(1.15);
    }
}

@keyframes morph-blob {
    0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    }
    
    .map-container-wrapper {
    height: 500px;
    }
}

@media (max-width: 992px) {
    .contact-info-block-tx9 {
    padding: 5rem 0;
    }
    
    .contact-main-heading {
    font-size: 3rem;
    }
    
    .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .map-container-wrapper {
    height: 450px;
    }
    
    .contact-info-card {
    padding: 1.75rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info-block-tx9 {
    padding: 4rem 0;
    }
    
    .contact-container-main {
    padding: 0 1.5rem;
    }
    
    .contact-main-heading {
    font-size: 2.25rem;
    }
    
    .contact-header-wrapper {
    margin-bottom: 3rem;
    }
    
    .contact-info-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    }
    
    .card-icon-wrapper {
    width: 65px;
    height: 65px;
    }
    
    .contact-icon {
    width: 32px;
    height: 32px;
    }
    
    .contact-value {
    font-size: 1.125rem;
    }
    
    .map-container-wrapper {
    height: 400px;
    }
    
    .circle-1,
    .circle-2 {
    width: 250px;
    height: 250px;
    }
    
    .blob-1 {
    width: 300px;
    height: 300px;
    right: -150px;
    }
}

@media (max-width: 576px) {
    .contact-main-heading {
    font-size: 1.875rem;
    }
    
    .header-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .contact-card-wrapper {
    gap: 1.5rem;
    }
    
    .contact-info-card {
    padding: 1.5rem 1.25rem;
    }
    
    .card-icon-wrapper {
    width: 60px;
    height: 60px;
    }
    
    .contact-icon {
    width: 28px;
    height: 28px;
    }
    
    .contact-label {
    font-size: 0.75rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container-wrapper {
    height: 350px;
    border-radius: 24px;
    }
    
    .map-frame-border {
    border-radius: 28px;
    }
    
    .map-embed-wrapper {
    border-radius: 24px;
    }
}
/* Footer Wave Minimal - Unique Design with Gradient Accent */
.footer-wave-minimal {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding-top: 0;
    overflow: hidden;
}

.footer-wave-divider {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: 4rem;
    color: #667eea;
    transform: translateY(1px);
}

.footer-wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-content-wrapper {
    position: relative;
    padding: 0 0 3rem 0;
}

.footer-wave-minimal .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Brand Column */
.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    transition: all 0.4s ease;
}

.footer-brand-icon:hover {
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
}

.footer-brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.02em;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #667eea;
}

.footer-phone-link {
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-phone-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.footer-phone-link:hover {
    color: #667eea;
}

.footer-phone-link:hover::after {
    width: 100%;
}

/* Navigation Columns */
.footer-column-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.footer-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #e8ecf1;
    border-radius: 6px;
    color: #667eea;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: #667eea;
    transform: translateX(4px);
}

.footer-nav-link:hover .footer-link-arrow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(4px);
}

.footer-nav-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 2px solid #e8ecf1;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-copyright {
    margin: 0;
    color: #718096;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.footer-bottom-decoration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-decoration-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation: footer-pulse 2s ease-in-out infinite;
}

.footer-decoration-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-decoration-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes footer-pulse {
    0%, 100% {
    opacity: 0.4;
    transform: scale(1);
    }
    50% {
    opacity: 1;
    transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    }

    .footer-brand-column {
    grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-wave-divider {
    height: 80px;
    margin-bottom: 3rem;
    }

    .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    }

    .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    }

    .footer-brand-name {
    font-size: 1.5rem;
    }

    .footer-contact-info {
    gap: 0.75rem;
    }

    .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    }

    .footer-copyright {
    font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .footer-wave-minimal .container {
    padding: 0 1rem;
    }

    .footer-grid {
    gap: 2rem;
    }

    .footer-brand-icon {
    width: 48px;
    height: 48px;
    }

    .footer-brand-icon svg {
    width: 32px;
    height: 32px;
    }

    .footer-column-title {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    }

    .footer-nav-link {
    font-size: 0.9375rem;
    padding: 0.375rem 0;
    }
}
.cart__popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100px;
    height: 100px;
    right: 10px;
    bottom: 10px;
    background: rgb(29, 29, 29);
    color: #fff;
    border-radius: 50%;
}

.cart__popup:hover {
    cursor: pointer;
}

.cart__icon {
    font-size: 2rem;
}

.cart__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    padding: 5px 12px;
}
.products__logo {
text-align: center;
padding: 50px 0;
}
.products__box {
display: flex;
justify-content: center;
align-items: start;
flex-wrap: wrap;
}

.products__card {
  flex: 0 0 calc(40% - 20px);
  box-sizing: border-box;
  max-width: 600px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  margin: 10px;
  }

.product__bottom {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

.products__price {
font-size: 1.5rem;
font-weight: 600;
}

.products__card a {
text-decoration: none;
}

.products__card a:hover {
color: inherit;
text-decoration: none;
}

.products__card:hover {
cursor: pointer;
}

.products__card img {
width: 100%;
border-radius: 10px 10px 0 0;
}

.products__content {
padding: 20px;
}

  .product {
  padding: 50px 0;
  }
.product {
  padding: 2rem 0;
}

.product__image {
width: 100%;
border-radius: 10px;
box-shadow: 1px 2px 6px 2px rgb(219, 219, 219);
}

.product__image:hover {
box-shadow: 1px 0px 9px 1px rgb(0, 0, 0, 0.35);
}

.product__wrapper {
display: flex;
flex-direction: row;
padding: 1rem 0;
}

.right {
padding: 0 30px;
}

.right h1 {
font-size: 35px;
letter-spacing: 1px;
word-spacing: 2px;
}

.product__price {
font-weight: 600;
}

.product__name,
  .product__price,
  .product__description,
  .product__button {
  margin: 20px 0;
  }

.product__preview_wrapper {
display: flex;
flex-direction: row;
}

  .product__price {
  font-size: 2rem;
  }

.product__preview {
  max-width: 90px;
  border-radius: 5px;
  margin: 0 5px;
}

.product__preview:hover {
box-shadow: 1px 0px 9px 1px rgb(0, 0, 0, 0.35);
cursor: pointer;
}

.product__button {
padding: 10px 15px;
color: white;
background-color: rgb(0, 0, 0, 0.35);
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 20px;
}

.product__button:hover {
cursor: pointer;
}

@media (max-width: 1300px) {
h1 {
      font-size: 28px;
}

.product__preview {
      width: 70px;
      padding: 10px 10px;
      padding-bottom: 30px;
}

button {
      padding: 8px 13px;
      background-color: rgb(3, 122, 122);
      border: none;
      border-radius: 5px;
      cursor: pointer;
}
}

@media (max-width: 1170px) {
h1 {
      font-size: 22px;
}

#product__preview {
      width: 60px;
      padding: 10px 10px;
      padding-bottom: 30px;
}

button a {
      font-size: 15px;
}

h4,
p {
      font-size: 13px;
}

h3 {
      font-size: 15px;
}
}

@media (max-width: 900px) {
.product__wrapper {
      flex-direction: column;
}

.left {
      width: 100%;
      text-align: center;
}

.right {
      padding-top: 50px;
}

.product__image {
      max-width: 300px;
}

.product__button {
      width: 100%;
      text-align: center;
}
}
.cart__wrapper {
    display: flex;
    flex-direction: row;
    padding: 1rem 0;
}

  .cart__list {
      flex: 0 0 50%;
  }

  .cart__form {
      flex: 0 0 50%;
  }

  @media (max-width: 1200px) {
      .cart__wrapper {
          flex-direction: column;
      }

      .cart__list {
          flex: 0 0 100%;
      }

      .cart__form {
          flex: 0 0 100%;
          margin-top: 50px;
      }
  }

.cart__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 0.2rem;
    justify-content: space-between;
    margin-top: 20px;
}

.cart__item_preview {
    max-width: 90px;
    border-radius: 5px;
}

.cart__item_desc,
.cart__item_count,
.cart__item_remove {
    padding: 20px 10px;
}

.cart__form {
    padding: 0 20px;
}

.form__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.form__input {
    margin: 10px 0;
}

  .form__wrapper label {
      margin-top: 10px;
  }

  .form__input {
      color: #333;
      font-size: 1.2rem;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      border-radius: 0.2rem;
      background-color: rgb(255, 255, 255);
      border: none;
      width: 90%;
      display: block;
      border-bottom: 0.3rem solid transparent;
  }

  .button-6 {
      align-items: center;
      background-color: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 0.25rem;
      box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
      box-sizing: border-box;
      color: rgba(0, 0, 0, 0.85);
      cursor: pointer;
      display: inline-flex;
      font-family: system-ui, -apple-system, system-ui, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 16px;
      font-weight: 600;
      justify-content: center;
      line-height: 1.25;
      margin: 50px;
      min-height: 3rem;
      padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
      position: relative;
      text-decoration: none;
      transition: all 250ms;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
      vertical-align: baseline;
      width: auto;
  }

  .button-6:hover,
  .button-6:focus {
      border-color: rgba(0, 0, 0, 0.15);
      box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
      color: rgba(0, 0, 0, 0.65);
  }

  .button-6:hover {
      transform: translateY(-1px);
  }

  .button-6:active {
      background-color: #f0f0f1;
      border-color: rgba(0, 0, 0, 0.15);
      box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
      color: rgba(0, 0, 0, 0.65);
      transform: translateY(0);
  }

  .cart__item_remove button {
      background-color: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .cart__item_remove button:hover,
  .cart__item_remove button:focus {
      border-color: rgba(0, 0, 0, 0.15);
      box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
      color: rgba(0, 0, 0, 0.65);
  }
