:root {
    --button-color: #AFF4C6;
    --headings-font: "Unbounded", sans-serif;
    --light-grey-bg-color:#D9D9D9;
}

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

body,
html {
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    font-size: 1em;
    background-color: black;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headings-font);
}

header {
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    /* 100px or 1.25rem x 5 */
    height: 6.25rem;
    position: fixed;
    padding: 0 0 0 1.25rem;
    z-index: 2;
}

#logo-link {
    text-decoration: none;
    color: white;
}

#nav a {
    text-decoration: none;
    color: white;
}

#cart {
    width: 1.25rem;
    height: 1.25rem;
    padding-top: 5px;
}

#logo {
    color: #ffffff;
    margin-right: auto;
    font-size: 1.75em;
    font-weight: 400;
    display: flex;
    align-items: center;
    height: 100%;
}

#nav, #menu-toggle {
    display: none;
}

.hamburger-line {
    margin-right: 1.25rem;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
    width: 3.75rem;
    border-bottom: solid 3px #ffffff;
    position: relative;
    transform-origin: center;
}

footer {
    width: 100%;
    height: auto;
    padding: 0 0 1.25rem 1.25rem;
    background-color: black;
    color: #ffffff;
    font-size: .625em;
    line-height: 16px;
    font-weight: 200;
}

.sitemap-cols {
    width: auto;
    text-align: left;
}

footer h3 {
    font-weight: 400;
    margin-bottom: 1.25rem;
}

footer a {
    color: white;
    text-decoration: none;
}

#footer-header {
    width: 100%;
    padding: 1.25rem;
    text-align: center;
}

#footer-header p {
    text-align: center;
}

#sitemap {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.col-title {
    font-weight: 600;
}

#subscribe {
    width: 12rem;
    height: auto;
    border: none;
    margin-bottom: 1.25rem;
}

#subscribe label {
    font-family: "Unbounded", sans-serif;
    font-weight: 300;
}

#subscribe input {
    width: 12rem;
    height: 2.188rem;
    background-color: black;
    border-radius: 5px;
    border-width: 1px;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 1em;
    padding-left: 4px;
}

.input-button-wrapper {
    position: relative;
    display: inline-block;
}
  
.input-button-wrapper input {
    padding-right: 5.25rem;
    width: 100%;
}
  
.input-button-wrapper button {
    font-family: var(--headings-font);
    font-size: 1em;
    position: absolute;
    right: 2px;
    top: 2px;
    height: 90%;
    border: none;
    background: #000;
    color: white;
    padding: 0 10px;
    cursor: pointer;
}

.input-button-wrapper button:hover {
    background: #333;
}

.social-icons {
    width: 2em;
    height: 2em;
}

#social-icon-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    margin-top: 1.25rem;
    width: 8em;
    height: 2em;
    background-color: black;
}

@media (min-width: 440px){
    #logo {
        font-size: 2.5em;
    }
} 

@media (min-width: 800px) {
    header {
        display: flex;
        align-items: center;
        padding: 1.25rem;
    }

    #logo {
        margin-top: auto;
        margin-bottom: auto;
    }

    #nav {
        display: block;
        position: static;
        transform: none;
        background: none;
        height: auto;
        margin-left: 0;
    }

    #nav a {
        font-size: 1.25em;
        font-weight: 200;
    }

    #nav ul {
        display: flex;
        flex-direction: row;
        gap: .4rem;
        margin-top: 0;
    }

    #nav li {
        padding: 0;
        border-bottom: none;      
    }

    #hamburger {
        display: none;
    }
}
/* Media queries for mobile header and nav. */
@media (max-width: 800px) {
    header { 
        display: block; 
        overflow: visible;
    }

    #nav { 
        text-align: center; 
        margin-left: 40%;
        width: 50%;
        height: 100dvh; 
        background: rgba(0, 0, 0, .8); 
        position: fixed;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);       
    }

    #nav ul { 
        list-style: none;
    }

    #nav li { 
        padding: 1rem 0; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    }

    #nav a { 
        color: white; 
        text-decoration: none; 
        font-size: 1.2rem;
        font-weight: 200; 
    }

    #hamburger { 
        position: absolute; 
        right: 0; 
        top: .625rem; 
    }

    #menu-toggle:checked ~ #nav { 
        display: block; 
        overflow: visible;
        transform: translateX(0);
    }

    /* Hamburger menu animation */
    #menu-toggle:checked ~ #hamburger .hamburger-line:nth-child(1) { 
        transform: translateY(1.25rem) rotate(45deg); 
    }

    #menu-toggle:checked ~ #hamburger .hamburger-line:nth-child(2) { 
        opacity: 0; 
    }

    #menu-toggle:checked ~ #hamburger .hamburger-line:nth-child(3) { 
        transform: translateY(-1.25rem) rotate(-45deg); 
        position: relative; 
        bottom: .40rem; 
    }

    .hamburger-line { 
        transition: all 0.3s ease-in-out; 
    }
}



#cart-container {
    width: 100%;
    margin-top: 6.25rem;
    padding: 1.25rem;
    color: white;
}

#cart-container h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
    text-align: center;
}

#cart-container h2 {
    font-size: 2rem;
    font-weight: 300;
}

#cart-empty {
    width: 100%;
    height: auto;
    padding: 1.25rem;
    color: white;
    margin-top: 6.25rem;
    text-align: center;
}

#cart-empty h1 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

#cart-empty p {
    font-weight: 100;
}

#cart-item h3{
    font-weight: 200;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
}

.cart-item-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
}

#cart-item-details {
   width: 100%;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   align-items: center;
   justify-content: left;

}

#cart-item-details-text {
    max-width: 280px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-weight: 200;
}

#cart-item-details h2 {
    font-size: 2em;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
    text-align: center;
    font-weight: 300;
}

#quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

#quantity-controls button {
    width: 2rem;
    height: 2rem;
    border: 1px solid white;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

#quantity-controls button:hover {
    background-color: white;
    color: black;
}

#quantity-controls span {
    min-width: 2rem;
    text-align: center;
}

#remove-item {
    background: none;
    border: none;
    color: #ff0000;
    cursor: pointer;
    padding: 8px 0;
    font-size: .75em;

}

#remove-item:hover {
    text-decoration: underline;
}

#cart-item-total {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px white;
}

#cart-item-total h3 {
    font-size: 1.5em;
    font-weight: 200;

}

#cart-summary {
    margin-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
}

#cart-total h3 {
    font-size: 1.5em;
    font-weight: 400;
}

#checkout-button {
    background-color: var(--button-color);
    color: black;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#checkout-button:hover {
    background-color: var(--light-grey-bg-color);
}

#cart-items {
    display: grid;
    grid-template-rows: auto;
    grid-auto-flow: row;
    gap: 2rem;
    max-width: 800px;
    justify-items: start;

}

#cart-item {
    width: 100%;
}

@media (min-width: 600px) {
    #cart-item-details-text p, h2 {
        padding-left: 1.25rem;
    }
}
:root {
    --product-card-bg-color: #1C1C1B;
}

.product-card {
    width: 280px;
    height: auto;
    background-color: var(--product-card-bg-color);
    overflow-y: hidden;
}

.product-image {
    height: 280px;
    width: 280px;
    object-fit: cover;
}

.name-price #title, #price {
    font-size: 1em;
    text-align: center;
    font-weight: 200;
    color: white;
    width: 280px;
    height: auto;
    padding-bottom: .25rem;
    padding-top: .25rem;
    margin: 0;
}
#terms-conditions {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    color: white;
    margin-top: 6.25rem;
}

#terms-conditions h1 {
    font-weight: 200;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 1.25rem;
}

#tc-container h2 {
    text-align: left;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 1.5em;
    font-weight: 200;
}

#tc-container {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: left;
    justify-content: left;
}

#tc-container p {
    font-weight: 100;
    text-align: left;
    margin-bottom: 1.25rem;
}

#tc-container ul {
    font-weight: 100;
    list-style: inside disc;
    height: auto;
    padding-bottom: 1.25rem;
}

#tc-container li {
    line-height: 24px;
}

#tc-container a {
    text-decoration: none;
    color: var(--button-color);
}#contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: black;
    color: white;
    margin-top: 6.25rem;
    padding: 1.25rem;
}

#contact h1 {
    text-align: center;
    font-weight: 200;
    font-size: 2.5em;
    margin-bottom: 1.25rem;
    color: white;
    margin-top: 1.25rem;
}

#contact p {
    text-align: center;
    font-weight: 200;
    margin-bottom: 1.25rem;
    color: white;
    margin-top: 1.25rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
}

.input-container {
    display: flex;
    flex-direction: row;
    min-width: 280px;
}

.input-labels {
    width: 85px;
    font-family: "inter", sans-serif;
    font-weight: 200;
}

#name, #contact-email, #message {
    min-width: 195px;
    margin-bottom: 1.25rem;
    height: 2.188rem;
    background-color: black;
    border-radius: 5px;
    border-width: 1px;
    color: white;
    padding: .5em;
}

textarea {
    font-family: "Inter", sans-serif;
    font-size: 1em;
    width: 195px;
}

#contact-submit {
    width: 195px;
    height: 2.5rem;
    background-color: var(--button-color);
    font-size: 1.5em;
    font-weight: 200;
}

@media (width >= 700px) {
    .input-container {
        width: 560px;
    }
    #name, #contact-email, #message {
        width: 390px;
    }
}










#collections {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 6.25rem;
    padding: 1.25rem;
}

.collections-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.collections-container p {
    max-width: 560px;
}

#collections h1 {
    font-weight: 200;
    color: white;
    font-size: 2.5em;
    margin-bottom: 1.25rem;
}

#collections h2 {
    font-weight: 200;
    font-size: 1.5em;
    color: white;
    text-align: center;
    margin-bottom: 1.25rem;
}

p {
    color: white;
    font-weight: 100;
    text-align: justify;
}

.collections-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    margin-top: 1.25rem;
}#shipping-info {
    width: 100%;
    height: auto;
    margin-top: 6.25rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
}

#shipping-info h1 {
    font-size: 2.5em;
    font-weight: 200;
    color: white;
    text-align: center;
    margin-bottom: 1.25rem;
}

#shipping-intro {
    font-weight: 200;
    max-width: 560px;
    color: white;
    text-align: justify;
    margin-bottom: 1.25rem;
}

#shipping-info h2 {
    font-weight: 200;
    font-size: 1.5em;
    color: white;
    text-align: center;
    margin-bottom: 1.25rem;
}

#shipping-info p {
    font-weight: 100;
    color: white;
    margin-bottom: 1.25rem;
    max-width: 560px;
}

#shipping-info i {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 1em;
    font-weight: 100;
    max-width: 560px;
    text-align: left;
    margin-bottom: 1.25rem;
}

#shipping-info a {
    text-decoration: none;
    color: var(--button-color);
    font-weight: 300;
}
#collection {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 6.25rem;
    padding: 1.25rem;
}

#collection h1 {
    font-size: 2.5em;
    font-weight: 200;
    color: white;
    text-align: center;
    margin-bottom: 1.25rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 280px));
    gap: 2.5rem;
    width: 100%;
    max-width: 1440px;
    justify-content: center;
    align-items: center;
    padding: 0 1.25rem;
    margin: 0 auto;
}

.collection-grid a {
    text-decoration: none;
    color: white;
}



/* ===============================
   Main Layout & Container Styles
   =============================== */
   #product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 1.25rem;
    margin-top: 5rem;
    /* background-color: var(--light-grey-bg-color); */
    background-color: white;
    position: relative;
    scroll-behavior: auto;
    color: black;
  }

  #product-info a {
    text-decoration: none;
    color: black;
    font-family: "Unbounded", sans-serif;
    font-weight: 300;
    font-size: 1em;
  }
  
  #product-name-price-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  #product-name-price {
    width: 280px;
    margin-bottom: 1.25rem;
  }
  
  /* ===============================
     Product Images
     =============================== */
  .product-images {
    width: 280px;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* ===============================
     Typography & Headings
     =============================== */
  #product-info h1 {
    font-size: 2.5em;
    font-weight: 300;
    margin: 1.25rem 0;
    text-align: center;
  }
  
  #product-name-price h2 {
    font-size: 2em;
    font-weight: 300;
    text-align: center;
    margin-top: 1.25rem;
  }
  
  #description p {
    font-weight: 300;
    margin-top: 1.25rem;
    width: 280px;
    text-align: left;
    color: black;
  }
  
  /* ===============================
     Messages
     =============================== */
  .error-message,
  .success-message {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
  }
  .error-message { color: #ff0000; }
  .success-message { color: #008000; }
  
  /* ===============================
     Size Selection
     =============================== */
  #sizes-grid {
    display: grid;
    grid-template-columns: repeat(4, 71px);
    width: 280px;
    height: 9rem;
    margin-top: 0.5rem;
  }
  
  .size {
    display: none;
  }
  
  .size + label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border: 1px solid black;
    padding: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .size:checked + label {
    background-color: black;
    color:white;
  }
  
  /* ===============================
     Color Selection
     =============================== */
  #colors-grid {
    display: grid;
    grid-template-columns: repeat(5, 2rem);
    gap: 0.5rem;
    width: 280px;
    margin-top: 0.5rem;
  }
  
  #colors h3 {
    font-weight: 300;
    font-size: 1em;
    width: 280px;
    text-align: left;
  }
  
  .color-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    overflow: hidden;
  }
  
  .color-box {
    width: 2rem;
    height: 2rem;
    border: 1px solid black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .color-box.selected {
    border: 2px solid black;
    transform: scale(1.1);
  }
  
  .color {
    display: none;
  }
  
  .color + label {
    width: 2rem;
    height: 2rem;
    border: 1px solid black;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .color:checked + label {
    border: 2px solid black;
    transform: scale(1.1);
  }

  .check-mark {
    color: white;
  }
  
  .color-name,
  .selected-color-name {
    font-size: 0.75rem;
    text-align: center; 
  }
  
  .selected-color-name {
    margin-bottom: 0.5rem;
    min-height: 1.25rem;
  }
  
  /* ===============================
     Quantity Selector
     =============================== */
  #add-quantity {
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  #add-quantity h3,
  #size-qty-add h3 {
    font-size: 1em;
    font-weight: 300;
    margin-top: 1.25rem;
  }
  
  #quantity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 8rem;
    height: 2rem;
    margin-top: 0.5rem;
  }
  
  #quantity {
    width: 4rem;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
  }
  
  .qty-up-down {
    width: 2rem;
    height: 2rem;
    border: 1px solid black;
    padding: 4px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .qty-up-down:hover {
    background-color: black;
    color: white;
  }
  
  /* ===============================
     Product Description Toggle
     =============================== */
  .product-description-toggle summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-weight: 300;
    font-size: 1em;
    cursor: pointer;
  }
  
  .product-description-toggle h3 {
    font-weight: 300;
    font-size: 1em;
  }
  
  .product-description-toggle p {
    font-weight: 200;
    max-width: 760px;
    color: black;
  }
  
  .product-description {
    padding: 10px 0;
  }
  
  .product-description-toggle[open] .arrow {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  /* ===============================
     Add to Cart Button
     =============================== */
  #add-to-cart {
    width: 17.5rem;
    height: 2.5rem;
    padding: 4px;
    font-size: 1em;
    font-weight: 300;
    border: 1px solid black;
    margin-top: 1.25rem;
    color:black;
    background-color: var(--button-color);
    border-radius: 8px;
  }

  #add-to-cart:hover {
    cursor: pointer;
  }

  #add-quantity p {
    color: black;
    font-weight: 300;
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
  
  /* ===============================
     Responsive Media Queries
     =============================== */
  @media (min-width: 440px) {
    #product-info {
      align-items: center;
    }
  
    .product-images {
      width: 20rem;
      height: 20rem;
    }
  
    #product-name-price h2 {
      text-align: center;
    }
  }
  
  @media (min-width: 700px) {
    #product-name-price {
      margin-left: 1.25rem;
    }
  
    #product-name-price h2 {
      margin-top: 0;
    }
  
    #add-quantity {
      align-items: center;
      justify-content: center;
    }
  
    .product-images {
      margin-bottom: auto;
    }
  }
  
  @media (min-width: 800px) {
    .product-images {
      width: 30rem;
      height: 30rem;
    }
  }
  
  @media (min-width: 820px) {
    .product-description-toggle h3 {
      margin-top: 1.25rem;
    }
  }
  #about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding: 1.25rem;
    text-align: center;
    background-color: black;
    color: white;
}

#about-o {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: black;
}

#about-o h2:first-child {
    font-family: "Inter", sans-serif;
    font-size: 2em;
    font-weight: 200;
    margin-bottom: 1.25rem;
    padding-right: 4px;
}

#about-o h2:nth-child(2) {
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 1.25rem;
    padding-left: 4px;
}

#about h2 {
    font-family: "Inter", sans-serif;
    font-size: 1.5em;
    font-weight: 200;
    margin-bottom: 1.25rem;
}

#about p {
    font-weight: 100;
    margin-bottom: 16px;
    max-width: 944px;
}



#privacy-policy {
    width: 100%;
    height: auto;
    margin-top: 6.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background-color: black;
    color: white;
}

#privacy-policy h1 {
    font-weight: 200;
    font-size: 2.25em;
    text-align: center;
    margin-bottom: 1.25rem;
}

#privacy-policy h2 {
    font-weight: 200;
    font-size: 1.5em;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
}

#pp-container {
    max-width: 560px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    flex-wrap: wrap;
}

#pp-container p {
    color: white;
    font-weight: 100;
    text-align: left;
    margin-bottom: 1.25rem;
}

#pp-container ul {
    font-weight: 100;
    list-style: inside disc;
    height: auto;
    padding-bottom: 1.25rem;
}

#pp-container li {
    line-height: 24px;
}

#privacy-policy a {
    color: var(--button-color);
    text-decoration: none;
}




#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 6.25rem;
    height: auto;
    background-color: black;
    /* background-image: URL(/images/hero_picture.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    background-position-x: 35px;
    overflow-y: hidden; */
}

#hero h1 {
    color: white;
    /* width: 17.625rem; */
    width: 320px;
    height: auto;
    font-weight: 300;
    font-size: 2.5em;
    line-height: 70px;
    position: relative;
    left: 1.25rem;
}

#shop-now-btn-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    height: auto;
    margin: auto;
    position: relative;
    overflow-y: hidden;
}

#hero-pic {
    min-width: 280px;
    height: 420px;
    object-fit: cover;
    position: absolute;
    left: 4.5rem;
}

#shop-now-btn {
    width: 102px;
    height: 40px;
    background-color: var(--button-color);
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 300;
    cursor: pointer;
    position: relative;
    left: 1.25rem;
}

#shop-now-btn a{
    text-decoration: none;
    color: black;
}

@media (min-width: 430px) {
    #shop-now-btn-link {
        width: 390px;
    }
    #hero-pic {
        left: 8rem;
    }
}

@media (min-width: 600px) {
    #shop-now-btn-link {
        width: 540px;
    }
    #hero-pic {
        left: 16rem;
    }
    #hero h1 {
        left: auto;
        text-align: center;
    }
    #shop-now-btn link, #shop-now-btn {
        left: 6.5rem;
    }
}

#latest-releases {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 1.25rem;
    background-color: black;
}

#latest-releases h2 {
    font-size: 2.5em;
    font-weight: 200;
    color: white;
    text-align: center;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
}

#latest-releases #lr-description {
    color: white;
    font-weight: 100;
    text-align: center;
    margin-bottom: 1.25rem;
}

#lr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 280px));
    gap: 2.5rem;
    width: 100%;
    max-width: 1440px;
    justify-content: center;
    align-items: center;
    padding: 0 1.25rem;
    margin: 0 auto;
}

#lr-grid a {
    text-decoration: none;
    color: white;
}

@media (min-width: 320px) {
    #latest-releases h2 {
        font-size: 1.2em;
    }
}

@media (min-width: 440px) {
    #latest-releases h2 {
        font-size: 1.7em;
    }
}

@media (min-width: 510px) {
    #latest-releases h2 {
        font-size: 2em;
    }
}

@media (min-width: 620px) {
    #latest-releases h2 {
        font-size: 2.5em;
    }
}

@media (min-width: 1440px) {
    #lr-grid {
        grid-template-columns: repeat(4, 280px);
    }
}
#returns-exchanges {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 6.25rem;
    padding: 1.25rem;
}

#returns-exchanges h1 {
    text-align: center;
    font-weight: 200;
    font-size: 2.5em;
    color: white;
    margin-bottom: 1.25rem;
}

#returns-exchanges p {
    max-width: 560px;
    color: white;
    font-weight: 100;
    text-align: justify;
    margin-bottom: 1.25rem;
}

#returns-exchanges a {
    font-weight: 300;
    color: var(--button-color);
    text-decoration: none;
}

#defective-list {
    max-width: 560px;
    text-align: center;
    margin-bottom: 1.25rem;
}

#defective-list li {
    color: white;
    max-width: 560px;
    text-align: left;
    font-weight: 100;
}

#returns-exchanges p:nth-of-type(3) {
    max-width: 560px;
    margin-right: 8rem;
}

#returns-exchanges h2 {
    font-weight: 400;
    color: white;
    font-size: 1.5em;
    margin-bottom: 1.25rem;
    padding: 0;
}

@media (width < 470px) {
    #returns-exchanges p:nth-of-type(3) {
        margin-right: 0;
    }
}

@media (width > 536px) {
    #returns-exchanges p:nth-of-type(4){
        margin-right: 4rem;
    }
}

@media (width > 466px) {
    #returns-exchanges p:last-child {
        margin-right: 8.5rem;
    }
}


#subscribe-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    background-color: black;
    padding: 1.25rem;
}

#subscribe-section h2 {
    text-align: center;
    width: 100%;
    font-weight: 200;
    margin-bottom: 1.25rem;
    color: white;
    margin-top: 1.25rem;
}

#subscribe-section p {
    text-align: center;
    width: 100%;
    font-weight: 200;
    color: white;
    margin-top: 1.25rem;
}

#o-notation {
    font-family: var(--headings-font);
    font-weight: 400;
}

#subscribe input {
    width: 18rem;
    height: 2.188rem;
    background-color: black;
    border-radius: 5px;
    border-width: 1px;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 1em;
    padding-left: 4px;
}
#shop-all {
    margin-top: 6.25rem;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    padding: 1.25rem;
}

#shop-all-heading {
    font-size: 1.6em;
    font-weight: 200;
    margin-bottom: 1.25rem;
    text-align: center;
}

.shop-all-intro {
    font-size: 1em;
    font-weight: 100;
    margin-bottom: 1.25rem;
    text-align: center;
}

.shop-all-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 280px));
    gap: 2.5rem;
    width: 100%;
    max-width: 1440px;
    justify-content: center;
    align-items: center;
    padding: 0 1.25rem;
    margin: 0 auto;
}

.shop-all-grid a {
    text-decoration: none;
    color: white;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    width: 280px;
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-button {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.pagination-button:hover:not(:disabled) {
    background-color: white;
    color: black;
}

.pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-button.active {
    background-color: white;
    color: black;
}

@media (min-width: 440px) {
    #shop-all h1 {
        font-size: 2.5em;
    }
}

@media (min-width: 1440px) {
    #shop-all-grid {
        grid-template-columns: repeat(4, 280px);
    }
}#size-guide {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    margin-top: 6.25rem;
    padding: 1.25rem;
    overflow: scroll;
}

#size-guide h1 {
    font-size: 2.5em;
    font-weight: 200;
    color: white;
    margin-bottom: 1.25rem;   
}

#size-chart {
    max-width: 740px;
    width: 100%;
    height: auto;
    background-color: white;
    overflow-x: auto;
    overflow-y: visible;
}

#size-chart-content {
    min-width: 740px;
}

.demensions {
    width: 200px;
    padding: .5rem;
    font-size: 1em;
    font-weight: 200;
}

.size-cell, .body-length-cell  {
    width: 60px;
    padding: .5rem;
    font-size: 1em;
    font-weight: 200;
    display: inline-block;
    text-align: center;
    border-left: solid 1px black;  
}

#size-row {
    padding-left: 200px;
    height: 35.5px;
}

.cells {
    display: flex;
    border-top: solid 1px black;   
}
















