* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #050505;
    color: #f5f0e8;
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
    padding: 60px 20px 30px;
}

.site-header {
    text-align: center;
    padding: 40px 20px 25px;
}

.site-logo {
    width: 130%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
  transform: translateX(-70px);
}

nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
  margin-top: -30px;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

nav a {
    color: #f5f0e8;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.hero {
    min-height: 500px;
    padding: 90px 25px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.eyebrow {
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: #cfc8d8;
}

.hero h2 {
    max-width: 600px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 1.1;
}

.hero-text {
    max-width: 520px;
    margin: 25px auto 35px;
    line-height: 1.7;
    color: #c9c9c9;
}

.shop-button {
    display: inline-block;
    padding: 14px 28px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
}
.featured {
    padding: 80px 20px;
    text-align: center;
}

.featured h2 {
    font-family: Georgia, serif;
    font-size: 2.2rem;
    font-weight: normal;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    border: 1px solid #333;
    padding: 20px;
    border-radius: 20px;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #141414;
    border-radius: 14px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-weight: normal;
    margin: 10px 0;
}

.product-card p {
    color: #cfcfcf;
    margin-bottom: 20px;
}

.product-button {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 700px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.iridescent-text {
    background: linear-gradient(
        90deg,
        #f8f3ee,
        #d8c4ff,
        #bff6ff,
        #d5ffd2,
        #fff3b0,
        #ffc9e8,
        #f8f3ee
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.iridescent-border {
    border: 1px solid transparent;
    background:
        linear-gradient(#050505, #050505) padding-box,
        linear-gradient(
            90deg,
            #d8c4ff,
            #bff6ff,
            #d5ffd2,
            #fff3b0,
            #ffc9e8
        ) border-box;
}
.site-footer {
    margin-top: 80px;
    padding: 60px 25px 35px;
    text-align: center;
    border-top: 1px solid #333;
    background: #050505;
}

.site-footer h3 {
    margin: 0 0 15px;
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 2px;
}

.site-footer p {
    color: #aaa;
    line-height: 1.6;
}

.social-links a {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #f5f0e8;
    text-decoration: none;

    border: 1px solid transparent;
    border-radius: 50%;

    background:
        linear-gradient(#050505, #050505) padding-box,
        linear-gradient(
            135deg,
            #d8c4ff,
            #bff6ff,
            #d5ffd2,
            #fff3b0,
            #ffc9e8
        ) border-box;

    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}


.social-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 30px;
    font-size: 0.75rem;
}
.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}
.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}
.product-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
}

.product-photo-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #141414;

    border: 1px solid #333;
    border-radius: 20px;

    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-info h1 {
    margin: 10px 0 15px;

    font-family: Georgia, serif;
    font-size: 2.6rem;
    font-weight: normal;
}

.product-price {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.product-description {
    color: #c9c9c9;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-option,
.quantity-box {
    margin-bottom: 25px;
}

.product-option label,
.quantity-box label {
    display: block;
    margin-bottom: 10px;

    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.product-option select,
.quantity-box input {
    width: 100%;

    padding: 14px;

    background: #0b0b0b;
    color: #f5f0e8;

    border: 1px solid #444;
    border-radius: 12px;

    font-size: 1rem;
}

.quantity-box input {
    max-width: 100px;
}

.add-cart-button {
    width: 100%;

    padding: 16px 24px;

    background:
        linear-gradient(#050505, #050505) padding-box,
        linear-gradient(
            90deg,
            #d8c4ff,
            #bff6ff,
            #d5ffd2,
            #fff3b0,
            #ffc9e8
        ) border-box;

    border: 1px solid transparent;
    border-radius: 30px;

    color: white;

    text-transform: uppercase;
    letter-spacing: 2px;

    font-size: 0.8rem;
}

.product-details {
    margin-top: 40px;
    padding-top: 30px;

    border-top: 1px solid #333;
}

.product-details h2 {
    font-family: Georgia, serif;
    font-weight: normal;
}

.product-details p {
    color: #aaa;
    line-height: 1.7;
}

@media (min-width: 800px) {
    .product-page {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}
.collection-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px;
    text-align: center;
}

.collection-page h1 {
    margin: 10px 0 15px;
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: normal;
}

.collection-intro {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #c9c9c9;
    line-height: 1.7;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.collection-card {
    padding: 20px;
    border: 1px solid #333;
    border-radius: 20px;
}

.collection-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #141414;
    border-radius: 14px;
    margin-bottom: 20px;
}

.collection-card h2 {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-weight: normal;
    margin: 10px 0;
}

.collection-card p {
    color: #cfcfcf;
    margin-bottom: 20px;
}

@media (min-width: 700px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.construction-banner {
  width: 100%;
  padding: 10px 15px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  color: white;
  background: #111;
  border-bottom: 1px solid #444;
  box-sizing: border-box;
}