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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    background-image: url("images/grain.png");
    background-repeat: repeat;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.2;
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: url("images/grain.png");
    background-repeat: repeat;
    z-index: -1;
}

/* Remove the body::before element that had an additional background */
body::before {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
}

.email-container {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.email-link {
    display: inline-flex;
    align-items: center;
}

.copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.copy-btn:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 0 0 180px;
    min-height: auto;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-left {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.hero-title {
    font-size: 110px;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 50px;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 16px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    transition: opacity 0.2s;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.9;
}

.btn-dark {
    background-color: rgba(40, 40, 40, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-light {
    background-color: white;
    color: black;
}

/* Partners */
.partners {
    padding: 0 0 120px;
    margin-top: 60px;
    position: relative;
}

.partners-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.plus {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.6;
    position: absolute;
    z-index: 2;
}

.plus-left {
    left: 0;
}

.plus-right {
    right: 0;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: marquee 30s linear infinite;
    width: max-content;
    overflow: hidden;
    position: relative;
    margin: 0 30px;
}

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

.partner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    flex-shrink: 0;
}

.partner-img {
    height: 16px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

/* Pricing Section */
.pricing {
    padding: 60px 0 160px;
    position: relative;
}

.bg-card {
    position: absolute;
    width: 300px;
    height: 400px;
    opacity: 0.4;
    background-color: #222;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.bg-card-left {
    left: 80px;
    bottom: 150px;
    transform: rotate(-10deg);
}

.bg-card-right {
    right: 80px;
    top: 100px;
    transform: rotate(10deg);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.card {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    backdrop-filter: blur(10px);
}

.card-badge {
    background-color: rgba(15, 15, 15, 0.6);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
    margin-right: 8px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-end;
}

.price span {
    font-size: 14px;
    opacity: 0.7;
    margin-left: 2px;
    font-weight: 400;
}

.price-note {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 30px;
}

.toggle {
    background-color: rgba(15, 15, 15, 0.6);
    border-radius: 30px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    font-size: 13px;
    cursor: pointer;
}

.switch {
    width: 46px;
    height: 24px;
    background-color: rgba(40, 40, 40, 0.8);
    border-radius: 15px;
    position: relative;
    margin-right: 12px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.switch::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
}

.switch.active {
    background-color: #4caf50;
}

.switch.active::after {
    transform: translateX(22px);
    background-color: white;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    opacity: 0.85;
}

.features li::before {
    content: "+";
    margin-right: 10px;
    opacity: 0.6;
    font-size: 14px;
}

.card-btn {
    background-color: white;
    color: black;
    border: none;
    border-radius: 30px;
    padding: 16px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Store Section */
.store {
    padding: 0 0 160px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.product {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
}

.product-img {
    height: 280px;
    background-color: rgba(50, 50, 50, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-img:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
}

.sizes {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.size {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 20, 20, 0.8);
    color: white;
    font-size: 12px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.size.active {
    background-color: white;
    color: black;
}

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

.product-price {
    font-weight: 600;
    font-size: 16px;
}

.add-btn {
    background-color: white;
    color: black;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 12px;
    cursor: pointer;
}

/* Services Section */
.services {
    padding: 80px 0 160px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
}

.service {
    position: relative;
    width: 350px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #111;
}

.service-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service:hover .service-img {
    transform: scale(1.05);
}

.service-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    color: #fff;
    padding-bottom: 40px;
    z-index: 2;
}

.service-category {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    padding: 80px 30px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333333;
}

.service-bottom {
    background-color: #1E1E1E;
    padding: 30px;
    display: flex;
    height: 270px;
    position: relative;
}

.service-col {
    padding: 0 15px;
}

.service-col-1 {
    width: 30%;
}

.service-col-2 {
    width: 35%;
}

.service-col-3 {
    width: 35%;
    text-align: right;
}

.service-label {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.6;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
}

.service-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.service-description {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.6;
}

.service-quote {
    font-size: 12px;
    font-style: italic;
    opacity: 0.6;
    line-height: 1.5;
}

/* Shipping Section */
.shipping {
    padding: 0 0 120px;
}

.label {
    background-color: white;
    color: black;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.label-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.label-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.label-logo img {
    width: 50px;
    height: 50px;
}

.label-logo span {
    font-size: 24px;
    font-weight: 600;
}

.reg {
    font-size: 10px;
    vertical-align: super;
}

.label-title {
    text-align: right;
}

.label-title-main {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.label-subtitle {
    font-size: 12px;
    opacity: 0.7;
}

.divider {
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    margin: 20px 0;
}

.order-details {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.order-details span {
    opacity: 0.7;
    margin-right: 5px;
}

.shipping-details {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.qr-container {
    position: relative;
}

.qr-code {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.qr-code img {
    width: 85%;
    height: 85%;
}

.refresh {
    position: absolute;
    top: 50%;
    left: -28px;
    transform: translateY(-50%) rotate(-90deg);
    background-color: black;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
}

.address-block {
    display: flex;
    flex: 1;
    justify-content: space-between;
}

.address {
    width: 48%;
}

.address-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.company {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.address-text {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.8;
}

.service-section {
    margin-top: 20px;
}

.service-heading {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 16px;
}

.service-content {
    display: flex;
    justify-content: space-between;
}

.service-left {
    width: 48%;
}

.service-name {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.unit-box {
    background-color: black;
    color: white;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    font-size: 12px;
    margin-bottom: 15px;
}

.unit-item {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.unit-separator {
    width: 1px;
    background-color: rgba(255,255,255,0.2);
}

.clients-box {
    background-color: black;
    color: white;
    border-radius: 6px;
    border-bottom-left-radius: 30px;
    padding: 15px;
    position: relative;
}

.clients-label {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.clients-number {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.clients-since {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    font-weight: 600;
}

.service-right {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.route-text {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.service-route {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.route {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.route-code {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
}

.route-arrow {
    height: 60px;
    width: 2px;
    background-color: black;
    margin: 15px 0;
    position: relative;
}

.route-arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid black;
}

.gate-box {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 140px;
}

.gate-label {
    font-size: 14px;
    margin-bottom: 5px;
}

.gate-number {
    font-size: 36px;
    font-weight: 700;
}

.barcode-section {
    margin: 40px 0;
    text-align: center;
}

.barcode-img {
    max-width: 100%;
    height: 80px;
    margin-bottom: 15px;
}

.barcode-codes {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.barcode-code {
    font-weight: 500;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.thank-you {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    max-width: 200px;
}

.heart {
    color: #ff0000;
}

.shipping-icons {
    text-align: center;
    position: relative;
}

.icon-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    transform: rotate(-90deg);
    display: inline-block;
    position: absolute;
    left: -18px;
    top: 50%;
    transform-origin: center;
    transform: translateY(-50%) rotate(-90deg);
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    width: 80px;
}

.icon {
    width: 35px;
    height: 35px;
    background-color: #000;
    border-radius: 3px;
}

.pricing-info {
    max-width: 300px;
}

.pricing-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-text {
    font-size: 11px;
    line-height: 1.4;
    opacity: 0.8;
}

/* Animations */
.fade-in {
    opacity: 1; /* Default to visible in case JS fails */
    transition: opacity 0.8s ease;
    will-change: opacity;
}

html.js-loaded .fade-in {
    opacity: 0; /* Only hide if JS is available */
}

/* Product animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Reviews Section */
.reviews {
    padding: 20px 0 160px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.review-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.review-card {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    backdrop-filter: blur(10px);
}

.review-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.85;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(50, 50, 50, 0.8);
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 600;
    font-size: 14px;
}

.review-position {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 5px;
}

/* Cart Styles */
.cart-container {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon svg {
    transition: transform 0.2s ease;
}

.cart-icon:hover svg {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #4AD8D8;
    color: black;
    font-size: 11px;
    font-weight: 600;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
