/* Spacing Utility Classes */
.cofs-p-mb-10 {
    margin-bottom: 10px;
}

.cofs-p-mb-5 {
    margin-bottom: 5px;
}

/* Flexbox Containers */
.cofs-container,
.cofs-order-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    margin: auto;
}

.cofs-order-submit-from,
.cofs-order-summary-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cofs-order-submit-from {
    flex: 2;
    min-width: 57%;
}

.cofs-order-summary {
    flex: 1;
    min-width: 30%;
}

/* Form Elements */
.cofs-form-container,
.cofs-summary-container {
    flex: 1;
}

h2 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

input,
select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Button Styles */
.cofs-order-btn, .quantity-btn {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.quantity-btn {
    margin-top: 0;
}

/* Utility Classes */
.text-transform-capitalize {
    text-transform: capitalize;
}

.scof-text-center {
    text-align: center;
}

.border-bottom-one-gray {
    border-bottom: 1px solid #ddd;
}

.cof-flex-space-between {
    display: flex;
    justify-content: space-between;
}

/* Variation List */
.cof-variation-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.cof-variation-item {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.cof-variation-item:hover,
.cof-variation-item.selected {
    color: #000;
    border-color: #000;
}

.cof-color-swatch {
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}

.cof-size-text {
    display: inline-block;
    padding: 0px 5px;
    border-radius: 5px;
    cursor: pointer;
}

.cof-quantity-wrapper {
    max-width: 185px;
    display: flex;
    gap: 10px;
}

.cof-input-value {
    min-width: 80px;
    text-align: center;
	border: 1px solid #ddd !important;
}

.cof-input, .cof-select {
	border: 1px solid #ddd !important;
    border-radius: 5px !important;
    padding: 0 10px !important;
}

.landing-desc-read-more {
	display: inline-block;
	margin-top: 10px;
	color: #0073aa;
	cursor: pointer;
	text-decoration: underline;
}

.cof-variation-item.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Default gallery layout */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.landing-page-title, .landing-page-short-description {
    text-align: center;
}

.landing-page-title {
    margin-bottom: 0;
    font-size: 48px;
    line-height: 48px;
}

.artyClick-orange-color {
    color: #FF7F00;
}

.landing-page-price, .landing-page-order-btn, .landing-page-read-more, .landing-text-center {
    text-align: center;
}

.landing-mb-0 {
    margin-bottom: 0;
}

.landing-mb-10 {
    margin-bottom: 10px;
}

.landing-page-read-more {
    padding-bottom: 10px;
}

.landing-page-short-description {
    font-style: italic;
    font-size: 28px;
    margin-bottom: 10px;
}

.fs-25 {
    font-size: 25px !important;
}

.checkout-form-title {
    font-size: 36px;
}

/* "See More" button styling */
.mobile-order-now {
    display: none !important;
}

/* Show button only on mobile */
@media (max-width: 768px) {
    .mobile-order-now {
        display: block !important;
        grid-column: 1 / -1;
    }
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
		margin-top: -5px;
    }
    .cofs-order-wrapper {
        flex-direction: column;
    }
    .cofs-text-s {
        font-size: 28px;
    }
    .landing-page-title {
        font-size: 28px;
        line-height: 30px;
		margin-top: -12px;
    }
    .landing-page-short-description {
        font-size: 16px;
        line-height: 16px;
        padding-top: 0;
    }
    .checkout-form-title {
        font-size: 24px;
    }
}

/* Responsive Design */
@media (max-width: 1027px) {
    .cofs-order-submit-from {
        min-width: 57%;
    }
}
