/**
 * Reusable components
 * Buttons, cards, and other UI elements
 */

/* Buttons */
.cta-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: lowercase;
    transition: all 0.2s ease;
    border: 3px solid #000;
}

.cta-button:hover {
    background: #fff;
    color: #000;
}

.order-form-button {
    display: inline-block;
    margin-top: 1rem;
}

/* Section titles */
.section-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: lowercase;
    border-bottom: 3px solid #000;
    padding-bottom: 1rem;
}

/* Lists */
.about-list {
    list-style: none;
    margin: 2rem 0;
}

.about-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ccc;
}

.about-list li:before {
    content: "• ";
    font-weight: bold;
}

/* Cookie menu items */
.cookie-item {
    border: 2px solid #000;
    padding: 2rem;
    background: #f5f5f5;
    transition: all 0.2s ease;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.cookie-item:hover {
    background: #000;
    color: #fff;
}

.cookie-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.cookie-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.cookie-code {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.cookie-item:hover .cookie-code {
    color: #ccc;
}

.cookie-specs {
    list-style: none;
    margin-bottom: 1rem;
}

.cookie-specs li {
    padding: 0.2rem 0;
    font-size: 0.9rem;
}

.cookie-specs li:before {
    content: "• ";
}

/* Pricing */
.pricing-info {
    background: #000;
    color: #fff;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-item {
    padding: 1rem;
    border: 1px solid #fff;
    font-size: 1.1rem;
}

.price-item.popular {
    background: #fff;
    color: #000;
    font-weight: bold;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
    grid-column: 1 / -1;
}

/* Payment methods */
.payment-methods {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.payment-method {
    background: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Social links */
.social-link {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    border: 2px solid #fff;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
}
