body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #FFFAFF;
    margin: 0;
    color: #111827;
}

.logo {
    filter: invert(1);
    width: 70px;
}

a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

a:hover {
    transform: scale(1.03);
}

img {
    max-width: 100%;
    display: block;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.shopcart {
    transform: scale(1.5);
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopcart .material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 22;
}

.shopcart:hover {
    cursor: pointer;
    color: #c2c2c2;
}

header h2:hover {
    cursor: pointer;
    color: #c2c2c2;
}

.website {
    background-color: #383D37;
    position: relative;
    width: 250px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    border: 2px solid #000000;
    color: #fff;
}

.website .img {
    width: 110%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    transform: translateY(-10px);
}

.website img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.website .name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.website .desc {
    font-size: 14px;
    color: #b9ccbf;
    text-align: center;
}

.website .price {
    font-size: 16px;
    font-weight: 500;
    color: #10B981;
}

.website .buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.website .buttons .info {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px 12px;
    border-radius: 9999px;
    cursor: pointer;
}

.website .buttons .addcart {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #61E294;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px 12px;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 18px;
    gap: 10px;
    width: 200px;
}

.info-box {
    position: absolute;
    bottom: 190px;
    left: 50%;
    transform: translate(-50%, 150px);
    width: 260px;
    background: #ffffff;
    color: #111827;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
    padding: 12px 14px;
    z-index: 40;
    border: 1px solid #e5e7eb;
}

.info-box .info-close {
    position: absolute;
    top: 6px;
    right: 8px;
    border: none;
    background: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.info-box h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
}

.info-box p {
    margin: 4px 0;
    font-size: 14px;
    color: #374151;
}

header {
    display: flex;
    align-items: center;

    height: 100px;
    width: calc(100% - 40px);
    overflow: hidden;
    background-color: #303036;
    background-image: url('images/logotileable.png');
    background-size: 400px;
    background-position-y: -220px;
    color: white;
    padding: 0 20px;
}

header h1 {
    font-size: 38px;
    margin-left: 0px;
}

header .rightheader {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: 30px;
    transform: translateY(4px);
}

header .searchbar input {
    background-color: #bfc0c9;
    color: #434d53;
    width: 300px;
    height: 40px;
    border: none;
    border-radius: 9999px;
    padding: 0 20px;
    font-size: 14px;
    outline: none;
    margin-right: 5px;
    transform: translateY(-4px);
}
header .searchbar button {
    background-color: #30BCED;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    cursor: pointer;
    margin-right: 10px;
    transition: 0.25s;
}

h2 {
    font-size: 20px;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 20px;
}

.searchbar button:hover {
    background-color: #269ed1;
}

img {
    width: 70px;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.shopcart {
    margin-right: 20px;
}

.shopcart {
    transform: scale(1.5);
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopcart .material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 22
}

.shopcart:hover {
    cursor: pointer;
    color: #c2c2c2;
}

header h2:hover {
    cursor: pointer;
    color: #c2c2c2;
}

@media (max-width: 800px) {
    header h1 {
        font-size: 30px;
        margin-left: 0px;
    }
    header .searchbar input {
        width: 150px;
    }
}

@media (max-width: 600px) {
    header h1 {
        font-size: 20px;
        margin-left: 0px;
    }
    header .searchbar input {
        width: 120px;
        font-size: 12px;
        padding-left: 10px;
    }
}

.footer {
    background: #1B1A1C;
    color: #ffffff;
    padding: 34px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 0;
}

.footer-left {
    text-align: left;
    position: relative;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
    position: relative;
}

.footer-left .copyright {
    font-size: 20px;
    margin: 0 0 12px 0;
}

.footer-left .address {
    font-size: 18px;
    margin: 0;
    color: #e6e6e6;
}

.footer-center h3, .footer-right h3 {
    text-decoration: underline;
    margin: 0 0 12px 0;
    font-size: 20px;
}

.footer-center p, .footer-right p {
    margin: 6px 0;
    font-size: 18px;
    color: #e6e6e6;
}

.footer-inner::before,
.footer-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 56px;
    width: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
}

.footer-inner::before {
    left: calc(33.333% - 2px);
}

.footer-inner::after {
    left: calc(66.666% - 2px);
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
}

.social-btn {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.social-btn i {
    font-size: 30px;
    line-height: 1;
}

.social-btn.facebook {
    background: linear-gradient(180deg, #4b2fe6, #2b1bb8);
}

.social-btn.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75 0%, #fa7e1e 30%, #d62976 60%, #962fbf 80%);
}

.social-btn.youtube {
    background: linear-gradient(180deg, #ff3b30, #cc0000);
}

.social-btn.twitter {
    background: linear-gradient(180deg, #1da1f2, #0d8de6);
}

.social-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .footer-inner::before,
    .footer-inner::after {
        display: none;
    }
    .social-icons {
        justify-content: center;
    }
    .social-btn {
        width: 64px;
        height: 64px;
    }
    .social-btn i {
        font-size: 24px;
    }
}

.hero {
    text-align: center;
    padding: 72px 20px;
    background-color: #FFFAFF;
}

.hero h1 {
    font-size: 40px;
    margin: 0 0 8px 0;
}

.hero h2 {
    font-size: 18px;
    margin: 0;
    color: #6b7280;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 22px;
    transition: 0.3s;
}

.cta-button {
    padding: 12px 22px;
    border-radius: 100px;
    font-weight: 600;
    border: 2px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.cta-button.blue {
    background: #fff;
    color: #111827;
    border: 2px solid rgba(0, 0, 0, 0.12);
}

.cta-button.green {
    background: #61E294;
    color: #08130b;
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.carousel {
    padding: 28px 18px;
    background: transparent;
}

.carousel-viewport {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.36s ease;
    padding: 12px 6px;
}

.carousel .website {
    width: 250px;
    flex: 0 0 auto;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.06);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

.carousel-prev:hover,
.carousel-next:hover {
    transform: translateY(-50%) translateY(-3px);
}

.carousel-dots {
    text-align: center;
    margin-top: 12px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    background: #e5e7eb;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.carousel-dots .dot:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(48, 188, 237, 0.14);
}

.carousel-dots .dot.active {
    background: #111827;
}

.carousel-track .website {
    z-index: 10;
}

.section-sep {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 28px 0;
}

.newsletter-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    flex: 0 0 340px;
    color: #111827;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.newsletter-form input {
    background: #fbfbfc;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    border-radius: 8px;
}

.newsletter-form button {
    background: #30BCED;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: #24a9d6;
}

.reviews {
    padding: 28px 18px;
    text-align: center;
}

.reviews h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.review-card {
    width: 88%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.review-text {
    font-size: 16px;
    color: #111827;
}

.review-stars {
    font-size: 18px;
    color: #111827;
    font-weight: 700;
}

.footer-newsletter {
    max-width: 1200px;
    margin: 0 auto 18px;
    display: flex;
    gap: 20px;
    align-items: stretch;
    padding: 0 20px;
}

.newsletter-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    flex: 0 0 340px;
    color: #111827;
}

.newsletter-card h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.newsletter-text {
    color: #e6e6e6;
    font-size: 16px;
    padding: 12px 6px;
}

@media (max-width: 900px) {
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .carousel .website {
        width: 72%;
    }
    .footer-newsletter {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-card {
        width: 100%;
        max-width: 680px;
    }
    .newsletter-text {
        text-align: center;
    }
}

.expect-band {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.expect-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expect-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111827;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 900px;
}

.expect-item {
    text-align: center;
    padding: 14px 12px;
    border-radius: 6px;
    background: transparent;
    color: #111827;
}

@media (max-width: 900px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
