/* ===================================
   ITSALLG0D POD Store - Main Stylesheet
   Based on itsallg0d.com aesthetic, applied to POD template.
   =================================== */

/* CSS Variables from itsallg0d */
:root {
    --black: #000;
    --white: #fff;
    --grey: #111;
    --off-white: #e8e8e8;
    --muted: rgba(255,255,255,0.5);
    --font: 'Inter', -apple-system, sans-serif;

    /* Custom POD template variables - adjusted for itsallg0d aesthetic */
    --color-black: var(--black);
    --color-white: var(--white);
    --color-gray-100: #0a0a0a; /* Darker than off-white for backgrounds */
    --color-gray-200: rgba(255,255,255,0.06); /* Border colors */
    --color-gray-300: rgba(255,255,255,0.15); /* Border colors */
    --color-gray-400: var(--muted);
    --color-gray-500: var(--muted);
    --color-gray-600: var(--muted);
    --color-gray-700: #222; /* Darker grey for hover buttons */
    --color-gray-800: #333; /* Even darker grey for hover buttons */
    --color-gray-900: var(--grey); /* Backgrounds */
    
    --font-primary: var(--font);
    
    /* Spacing and other variables from POD template, keep as is for now */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    --max-width: 1200px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    
    --shadow-sm: none; /* itsallg0d has no shadows mostly */
    --shadow-md: none;
    --shadow-lg: none;
}

/* Reset & Base from itsallg0d */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md); /* Keep template's padding for consistency */
}

/* ===================================
   Navigation (Combined from itsallg0d and template)
   =================================== */
.navbar {
    position: sticky; /* Keep sticky from template */
    top: 0;
    background: rgba(0,0,0,0.8); /* from itsallg0d */
    backdrop-filter: blur(10px); /* from itsallg0d */
    border-bottom: 1px solid rgba(255,255,255,0.06); /* from itsallg0d */
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 40px; /* From itsallg0d */
}

.nav-logo {
    font-size: 1.1rem; /* From itsallg0d */
    font-weight: 900; /* From itsallg0d */
    letter-spacing: 0.05em;
    color: var(--white); /* Ensure it's white against dark nav */
}

.nav-links {
    display: flex;
    gap: 32px; /* From itsallg0d */
}

.nav-links a {
    font-size: 0.8rem; /* From itsallg0d */
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted); /* From itsallg0d */
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white); /* From itsallg0d */
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.snipcart-checkout {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 16px 48px; /* Based on itsallg0d CTA button */
    background: var(--white); /* From itsallg0d CTA button */
    color: var(--black); /* From itsallg0d CTA button */
    border-radius: 0; /* No border-radius for itsallg0d aesthetic */
    font-size: 0.85rem; /* From itsallg0d CTA button */
    font-weight: 700; /* From itsallg0d CTA button */
    letter-spacing: 0.15em; /* From itsallg0d CTA button */
    text-transform: uppercase;
    border: 2px solid var(--white); /* From itsallg0d CTA button */
    transition: all 0.2s;
}

.snipcart-checkout:hover {
    background: var(--black); /* From itsallg0d CTA button */
    color: var(--white); /* From itsallg0d CTA button */
}

.snipcart-items-count {
    background: var(--black); /* itsallg0d inverted colors */
    color: var(--white); /* itsallg0d inverted colors */
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 1.25rem;
    text-align: center;
}

/* Mobile Navigation */
@media (max-width: 900px) { /* Use itsallg0d's breakpoint */
    .nav-links {
        display: none;
    }
}
@media (max-width: 600px) {
    .nav-container { /* Adjust padding for smaller screens */
        padding: 20px 24px; /* From itsallg0d */
    }
}


/* ===================================
   Hero Section (Combined from itsallg0d and template)
   =================================== */
.hero {
    min-height: 100vh; /* From itsallg0d */
    display: flex; /* From itsallg0d */
    flex-direction: column; /* From itsallg0d */
    justify-content: center; /* From itsallg0d */
    align-items: center; /* From itsallg0d */
    text-align: center; /* From itsallg0d */
    padding: 120px 40px 80px; /* From itsallg0d */
    position: relative;
    max-width: var(--max-width); /* Keep container width */
    margin: 0 auto;
}

.hero::after { /* From itsallg0d */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.hero h1 {
    font-size: clamp(3.5rem, 18vw, 12rem); /* From itsallg0d */
    font-weight: 900; /* From itsallg0d */
    line-height: 0.88; /* From itsallg0d */
    letter-spacing: -0.02em;
    margin-bottom: 32px; /* From itsallg0d */
}

/* itsallg0d had a span for partial title effects */
.hero h1 span { color: rgba(255,255,255,0.15); }

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem); /* From itsallg0d */
    font-weight: 300; /* From itsallg0d */
    color: var(--off-white); /* From itsallg0d */
    max-width: 520px; /* From itsallg0d */
    line-height: 1.7; /* From itsallg0d */
    margin-bottom: 48px; /* From itsallg0d */
}

.hero-cta {
    display: inline-block; /* From itsallg0d */
    padding: 16px 48px; /* From itsallg0d */
    background: var(--white); /* From itsallg0d */
    color: var(--black); /* From itsallg0d */
    font-weight: 700; /* From itsallg0d */
    font-size: 0.85rem; /* From itsallg0d */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--white); /* From itsallg0d */
    transition: all 0.2s;
    cursor: pointer;
}

.hero-cta:hover {
    background: var(--black); /* From itsallg0d */
    color: var(--white); /* From itsallg0d */
}

.hero-image {
    display: none; /* itsallg0d hero is text-focused */
}

@media (max-width: 968px) { /* Keep template's media query, but adjust values if needed */
    .hero {
        grid-template-columns: 1fr; /* Defaulting to flex-column now, so this might not be strictly necessary */
        text-align: center;
        gap: var(--spacing-xl);
        min-height: auto; /* Adjust for smaller screens */
    }
}

/* ===================================
   Buttons (Combined/Adapted)
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px; /* Based on itsallg0d CTA */
    font-size: 0.85rem; /* Based on itsallg0d CTA */
    font-weight: 700; /* Based on itsallg0d CTA */
    text-transform: uppercase;
    letter-spacing: 0.15em; /* Based on itsallg0d CTA */
    border-radius: 0; /* itsallg0d aesthetic */
    transition: all 0.2s;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {
    border-color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
}

.btn-add-cart {
    background: var(--white); /* Inverted for a clear CTA */
    color: var(--black);
    margin-top: var(--spacing-md);
    border: 2px solid var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
}

.btn-add-cart:hover {
    background: var(--black); /* Inverted for hover */
    color: var(--white);
}

/* ===================================
   Product Display (Adapted for itsallg0d monochrome)
   =================================== */
.featured,
.products-section {
    padding: 120px 40px; /* From itsallg0d product section */
}

.section-title {
    font-size: clamp(2.5rem, 8vw, 5rem); /* From itsallg0d product section */
    font-weight: 900; /* From itsallg0d product section */
    text-align: center;
    margin-bottom: 64px; /* From itsallg0d product section */
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; /* From itsallg0d product grid */
}

.product-card {
    background: #0a0a0a; /* Dark background */
    border: 1px solid rgba(255,255,255,0.06); /* Subtle border */
    border-radius: 0; /* itsallg0d aesthetic */
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover { /* itsallg0d hover style */
    border-color: rgba(255,255,255,0.2);
    box-shadow: none;
    transform: none; /* No lift on hover */
}

.product-link {
    display: block;
}

.product-image {
    position: relative;
    aspect-ratio: 4/5; /* From itsallg0d product image */
    overflow: hidden;
    background: var(--grey); /* Dark placeholder background */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Force monochrome */
    transition: filter 0.4s;
}

.product-card:hover .product-image img {
    filter: grayscale(0%); /* Color on hover */
}

.product-info {
    padding: 28px 24px 32px; /* From itsallg0d product info */
}

.product-info h3 {
    font-size: 0.65rem; /* From itsallg0d product name */
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--white);
}

.product-price {
    font-size: 1rem; /* From itsallg0d product price */
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--off-white);
}

.product-price-large {
    font-size: 1.5rem;
    font-weight: 700;
    margin: var(--spacing-md) 0;
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 16px;
    }
    .product-info {
        padding: var(--spacing-sm);
    }
}

/* ===================================
   About Section (Adapted for itsallg0d)
   =================================== */
.about {
    padding: 140px 40px; /* From itsallg0d manifesto */
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Keep two columns on desktop */
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2.5rem, 8vw, 5rem); /* From itsallg0d philosophy h2 */
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--white);
}

.about-content p {
    color: var(--off-white); /* From itsallg0d general text */
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.features-list li {
    display: flex;
    align-items: flex-start; /* Align icon with text top */
    gap: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--off-white);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--white); /* White background for icon */
    color: var(--black); /* Black checkmark */
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0; /* itsallg0d aesthetic */
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .about-image {
        order: -1;
    }
}

/* ===================================
   Newsletter (Adapted for itsallg0d)
   =================================== */
.newsletter {
    padding: 120px 40px; /* From itsallg0d signup */
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: var(--grey); /* Dark background */
}

.newsletter h3 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* From itsallg0d manifesto h2 / signup h2 */
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--white);
}

.newsletter p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 24px; /* From itsallg0d signup input */
    background: rgba(255,255,255,0.05); /* From itsallg0d signup input */
    border: 1px solid rgba(255,255,255,0.15); /* From itsallg0d signup input */
    border-right: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
    color: var(--muted);
}

.newsletter-form input:focus {
    border-color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    padding: 18px 32px; /* From itsallg0d signup button */
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--black);
    color: var(--white);
}

@media (max-width: 640px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ===================================
   Footer (Adapted for itsallg0d)
   =================================== */
footer {
    padding: 60px 40px; /* From itsallg0d */
    border-top: 1px solid rgba(255,255,255,0.08); /* From itsallg0d */
    background: var(--black);
    color: var(--muted); /* General footer text color */
}

.footer-grid {
    display: grid; /* Use grid for complex layout */
    grid-template-columns: repeat(4, 1fr); /* Example desktop layout */
    gap: 24px;
}

.footer-brand .nav-logo {
    color: var(--white);
    display: block;
    font-size: 1.5rem; /* From itsallg0d footer */
    font-weight: 900; /* From itsallg0d footer */
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--off-white);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 32px; /* From itsallg0d footer legal */
    padding-top: 24px; /* From itsallg0d footer legal */
    border-top: 1px solid rgba(255,255,255,0.06); /* From itsallg0d footer legal */
    text-align: center;
    font-size: 0.7rem; /* From itsallg0d footer legal */
    color: rgba(255,255,255,0.25); /* From itsallg0d footer legal */
}

@media (max-width: 768px) { /* Adjust footer for tablets */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
    .footer-brand {
        grid-column: span 2; /* Brand spans two columns */
        text-align: center;
    }
    .footer-links {
        text-align: center;
    }
}

@media (max-width: 480px) { /* Adjust footer for mobile */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
}

/* ===================================
   Page Header (Adapted for itsallg0d)
   =================================== */
.page-header {
    padding: 120px 40px 60px; /* Adapted from itsallg0d hero padding */
    background: var(--black);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-header h1 {
    font-size: clamp(2.5rem, 8vw, 5rem); /* From itsallg0d h2 */
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--white);
}

.page-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--off-white);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Filter Bar (Adapted for itsallg0d)
   =================================== */
.filter-bar {
    padding: 28px 40px; /* Adapted from itsallg0d marquee */
    border-top: 1px solid rgba(255,255,255,0.08); /* From itsallg0d */
    border-bottom: 1px solid rgba(255,255,255,0.08); /* From itsallg0d */
    background: var(--black);
}

.filter-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.filter-options button {
    padding: 10px 20px; /* From itsallg0d tagline pill */
    font-size: 0.75rem; /* From itsallg0d tagline pill */
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15); /* From itsallg0d tagline pill */
    border-radius: 0; /* itsallg0d aesthetic */
    background: transparent;
    color: var(--muted);
    transition: all 0.2s;
}

.filter-options button:hover,
.filter-options button.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--muted);
}

.sort-options label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sort-options select {
    padding: 8px 16px;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.15);
    background: #0a0a0a; /* Darker than body */
    color: var(--off-white);
    border-radius: 0;
    cursor: pointer;
    -webkit-appearance: none; /* Remove default arrow */
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px; /* Space for the arrow */
}

/* ===================================
   Breadcrumb (Adapted for itsallg0d)
   =================================== */
.breadcrumb {
    padding: 20px 40px;
    background: var(--black);
    font-size: 0.875rem;
    color: var(--muted);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb a {
    color: var(--off-white);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--white);
}

/* ===================================
   Product Detail (Adapted for itsallg0d)
   =================================== */
.product-detail {
    padding: 120px 40px;
}

.product-detail .product-grid { /* Generic grid for layout on detail page */
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-images {
    position: sticky;
    top: 100px; /* Adjusted sticky top for nav height */
    align-self: start;
}

.main-image {
    aspect-ratio: 4/5; /* Consistent with product cards */
    background: var(--grey);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 24px; /* More spacing */
    border: 1px solid rgba(255,255,255,0.06);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.thumbnail-selector {
    display: flex;
    gap: 12px;
}

.thumbnail {
    width: 80px;
    height: 100px; /* Maintain aspect ratio */
    background: var(--grey);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
    overflow: hidden;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border-color: var(--white);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.thumbnail.active img {
    filter: grayscale(0%);
}

.product-details h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--white);
}

.product-details .product-price {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--off-white);
    margin-bottom: 32px;
}

.product-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--off-white);
    margin-bottom: 32px;
}

.product-options {
    margin-bottom: 32px;
}

.product-option-group {
    margin-bottom: 24px;
}

.product-option-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.size-selector button {
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--off-white);
    font-size: 0.9rem;
    margin-right: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-selector button:hover,
.size-selector button.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
    width: 120px;
}

.quantity-selector button {
    flex: 1;
    padding: 10px 0;
    color: var(--off-white);
    font-size: 1.2rem;
    transition: all 0.2s;
}

.quantity-selector button:hover {
    background: rgba(255,255,255,0.05);
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    -moz-appearance: textfield; /* Hide arrows in Firefox */
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-add-to-cart .btn-primary {
    width: 100%;
    margin-top: 32px;
}

@media (max-width: 968px) {
    .product-detail .product-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    .product-images {
        position: static;
        top: auto;
    }
}