@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: #535862;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

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

.title {
    color: #181D27;
}



/* ------------------------------
   Buttons
--------------------------------*/
.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;

    border: none;
    border-radius: 9999px;
    cursor: pointer;

    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;

    transition: all 0.2s ease;

    background: #669F2A;
    color: #fff;
    box-shadow:
        0px 1px 2px rgba(15, 15, 15, 0.05),
        inset 0px -2px 0px rgba(15, 15, 15, 0.05),
        inset 0px 0px 0px 1px rgba(15, 15, 15, 0.18);
}

.btn-primary:hover {
    background: #2B4212;
}

.btn-primary:focus {
    outline: none;
    box-shadow:
        0px 0px 0px 2px #ACDC79,
        0px 1px 2px rgba(15, 15, 15, 0.05),
        inset 0px 0px 0px 1px #FFFFFF,
        inset 0px -2px 0px rgba(15, 15, 15, 0.05),
        inset 0px 0px 0px 1px rgba(15, 15, 15, 0.18);
}

.btn-primary:disabled {
    background: #E9EAEB;
    color: #A4A7AE;
    box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.06);
    cursor: not-allowed;
}

/* ------------------------------
   Secondary Button
--------------------------------*/
.btn-secondary {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 32px;
	gap: 6px;

	border-radius: 9999px;
	border: 1px solid #D5D7DA;
	background: #FFFFFF;

	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
	color: #414651;

	cursor: pointer;
	transition: all 0.2s ease;

	box-shadow:
		0px 1px 2px rgba(10, 13, 18, 0.05),
		inset 0px -2px 0px rgba(10, 13, 18, 0.05),
		inset 0px 0px 0px 1px rgba(10, 13, 18, 0.18);
}

.btn-secondary:hover {
	background: #FAFAFA;
	border: 1px solid #D5D7DA;
	color: #414651;
}

.btn-secondary:focus {
	outline: none;
	box-shadow:
		0px 0px 0px 2px #ACDC79,
		0px 1px 2px rgba(10, 13, 18, 0.05),
		inset 0px 0px 0px 1px #FFFFFF,
		inset 0px -2px 0px rgba(10, 13, 18, 0.05),
		inset 0px 0px 0px 1px rgba(10, 13, 18, 0.18);
}

.btn-secondary:disabled {
	background: #FFFFFF;
	border: 1px solid #E9EAEB;
	color: #A4A7AE;
	box-shadow:
		0px 1px 2px rgba(10, 13, 18, 0.05),
		inset 0px -2px 0px rgba(10, 13, 18, 0.05),
		inset 0px 0px 0px 1px rgba(10, 13, 18, 0.18);
	cursor: not-allowed;
}


/* ------------------------------
   Text and image section
--------------------------------*/
.text-image-section {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 96px 60px;
	gap: 120px;
	margin: 0 auto;
    max-width: 1440px;
}

.section-heading {
	display: flex;
	flex-direction: column;
	gap: 16px;
    align-items: flex-start;
}

.section-title {
	font-weight: 400;
	font-size: 48px;
	line-height: 60px;
	letter-spacing: -1px;
	color: #181D27;
	margin: 0;
}

.section-description {
	font-weight: 300;
	font-size: 20px;
	line-height: 30px;
	color: #535862;
	margin: 0;
}

.section-image {
	width: 652px;
	height: 652px;
    border-radius: 16px;
    background: #D5D7DA;
    overflow: hidden;
    flex-shrink: 0;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}



/* ------------------------------
   Category banner
--------------------------------*/
.category-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    max-width: 1440px;
    margin: 0 auto;
}

.category-banner-inner {
    width: 100%;
    height: 264px;
    background: #D5D7DA;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-banner-title {
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: -2px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
}

/* Collection hero — real generated header image behind the title */
.category-banner-inner.has-hero {
    height: 420px;
    background-color: #2B3326;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-banner-inner.has-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 20, 14, .25) 0%, rgba(16, 20, 14, .55) 100%);
    z-index: 1;
}

.category-banner-inner.has-hero .category-banner-title {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

@media (max-width: 768px) {
    .category-banner-inner {
        height: 166px;
    }

    .category-banner-inner.has-hero {
        height: 200px;
    }

    .category-banner-title {
        font-size: 30px;
        line-height: 38px;
    }
}



/* ------------------------------
   Input base
--------------------------------*/
.input-base {
    border: 1px solid #D5D7DA;
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.06);
    color: #181D27;
    transition: all 0.2s ease;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 300;
    width: 100%;
}

.input-base::placeholder {
    color: #717680;
    font-weight: 300;
}

.input-base:hover:not(:disabled):not(.input-error) {
    border-color: #A4A7AE;
}

.input-base:focus:not(.input-error) {
    outline: 1px solid #669F2A;
    border: 1px solid #669F2A;
    box-shadow: 0px 0px 0px 2px #ACDC79,
                0px 1px 2px rgba(10, 13, 18, 0.06);
}

.input-base:disabled {
    background: #FAFAFA;
    border: 1px solid #D5D7DA;
    color: #717680;
    cursor: not-allowed;
}



/* ------------------------------
   Error inputs
--------------------------------*/
.error-message {
    font-size: 14px;
    color: #D92D20;
    margin-top: 4px;
    font-weight: 300;
}

.input-base.input-error {
    border: 1px solid #FDA29B;
}

.input-base.input-error:hover {
    border: 1px solid #FDA29B;
}

.input-base.input-error:focus {
    outline: 1px solid #F04438;
    border: 1px solid #F04438;
    box-shadow: 0px 0px 0px 2px rgba(240, 68, 56, 0.2);
}



/* ------------------------------
   Checkbox
--------------------------------*/
.form-checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.form-checkbox label {
    font-size: 14px;
    font-weight: 300;
    color: #414651;
}

.form-checkbox a {
    color: #669F2A;
    text-decoration: underline;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    padding: 0px;
    border: 1px solid #D5D7DA;
    border-radius: 4px;
    background: #FFFFFF;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

input[type="checkbox"]:hover {
    border-color: #A4A7AE;
}

input[type="checkbox"]:checked {
    background-color: #669F2A;
    border-color: #669F2A;
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}



/* ------------------------------
   Form layout
--------------------------------*/
.form-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.form-group label {
    font-size: 14px;
    font-weight: 400;
    color: #414651;
}

.form-group .required {
    color: #669F2A;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-left: 2px;
}

.form-group textarea {
    min-height: 134px;
    resize: none;
}

@media (max-width: 768px) {
	.form-row {
		display: flex;
		flex-direction: column;
	}
}


.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}