/* style.css */

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

body {
    font-family: 'Inter', -apple-system, sans-serif; /* Modern sans-serif stack 
    /*font-family: "Arizona Serif Variable"; */
    background-color: whites;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Container for all content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Headings */
h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-align: center;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Individual Product Card */
.product-card {
    text-align: center;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: auto;
    background-color: #f6f6f6; /* Placeholder for missing images */
    transition: opacity 0.3s ease;
}

.product-card:hover img {
    opacity: 0.8;
}

.product-title {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.product-price {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .container { padding: 2rem 1rem; }
}

/* Container takes up the full viewport */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Prevents video from spilling out */
}

/* Video sits behind everything */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio while filling space */
    z-index: -1; /* Pushes video to the back */
}

/* Content sits on top */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
}


#shop-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-column {
  display: flex;
  flex-direction: column;
  align-items: center;    /* This centers the cards horizontally in a column */
  width: 100%;            /* Ensures the container spans the whole page */
  gap: 40px;
}

shop-item {
    width: 100%;
    display: block; 
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer; /* Makes it look clickable */
    transition: background-color 0.2s;
}

li:hover {
    background-color: #f0f0f0;
}

/* Style the HTML5 player itself if needed */
audio {
    width: 100%;
    margin-bottom: 20px;
}

.custom-ui {
    background: #222;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

#seekSlider {
    flex-grow: 1;
    cursor: pointer;
}

#playPauseBtn {
    padding: 10px 20px;
    background: #008bcf; /* DigitalOcean Blue */
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

#playPauseBtn:disabled {
    background: #555;
    cursor: not-allowed;
}


