header{ 
    font-family: sans-serif;
    margin-left: 2%;
    margin-right: 2%;
}

:root {
    --bg-color: #ffffff;
    --text-primary: #000000;
    --text-secondary: #666666;
    --frame-color: #000000;
    --frame-size: 30px;
}

html {
    background-color: var(--frame-color); height: 100%; 
}

body {
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    border-left: var(--frame-size) solid var(--frame-color);
    border-right: var(--frame-size) solid var(--frame-color);
    min-height: 100vh;
    box-sizing: border-box;
}

.main-header {
    text-align: center;
    padding: 120px 20px 80px;
    text-transform: uppercase;
    letter-spacing: 8px;
}

header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin: 0;
}

header p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 15px;
}

.shop-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 40px;
}

.product-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.image-wrapper {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f9f9f9;
    margin-bottom: 25px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 1.4s cubic-bezier(0.15, 0, 0.05, 1);
}

.product-card:hover img {
    transform: scale(1.07);
    filter: grayscale(0%);
}

.product-info {
    text-align: center; 
}

.category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: block;
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.title::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    margin: 10px auto 0;
    transition: width 0.6s ease;
}

.product-card:hover .title::after { 
    width: 40px; 
}

.login-btn {
    display: flex;
    justify-content: right;
}

@media (max-width: 768px) {
    :root { --frame-size: 10px; }

    .shop-container { grid-template-columns: 1fr; }

    header h1 { font-size: 2.2rem; }
}

form.auth-input {
    display: flex;
    min-height: 50vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.auth-input-group {
    margin: 20px 0;
    position: relative;
}

.auth-input-group label {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 15px;
    font-size: 16px;
    pointer-events: none;
    padding: 0 5px;
    transition: .5s;
}

.auth-input-group input{
    width: 360px;
    height: 60px;
    color: #1c1b1b;
    font-size: 16px;
    padding: 0 15px;
    border: 1.2px solid rgb(27, 29, 29);
    background: transparent;
    outline: none;
    border-radius: 5px;
}

.auth-input-group input:focus~label,
.auth-input-group input:valid~label {
    top: 0;
    font-size: 14px;
    background: #ffffffd6;
}

.failed-login {
    color: #d90000;
}

.founders-grid {
  display: grid;
  /* Creates two equal columns */
  grid-template-columns: 1fr 1fr;
  /* Adds a 20px gap between the columns */
  gap: 20px; 
  max-width: 900px;
  margin: 0 auto;
}

.founder-card {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.founder-card img {
  width: 100%;
  max-width: 200px;
  border-radius: 50%; /* Makes photos circular */
}