/* ==========================================================================
   GoldSilber.io E-Commerce Styles
   ========================================================================== */

/* ==========================================================================
   Global Variables and Resets
   ========================================================================== */
:root {
    --primary: #C99134;          /* Primary color (e.g., buttons, accents) */
    --primary-hover: #A97728;    /* Primary hover color */
    --black: #000000;            /* Black (e.g., view details button) */
    --dark-gray: #333333;        /* Dark gray (e.g., text) */
    --medium-gray: #666666;      /* Medium gray (e.g., product details) */
    --light-gray: #ccc;          /* Light gray (e.g., borders) */
    --lighter-gray: #e1e1e1;     /* Lighter gray (e.g., button hover) */
    --lightest-gray: #f2f2f2;    /* Lightest gray (e.g., button background) */
    --white: #ffffff;            /* White (e.g., backgrounds, text) */
    --red: #f7eded;              /* Red (e.g., delete button hover) */
    --green: #28a745;            /* Green (e.g., success messages) */
    --background-light: #f8f9fa; /* Light background (e.g., info box) */
    --cart-background: #fafafa;   /* Cart item background */
    --border-light: #eee;        /* Light border (e.g., cart items) */
    --table-header: #f1f1f1;     /* Table header background */
    --size: 0.5rem;              /* Used in dropdown arrows */
}

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

/* Cart Link Container */
.main-navigation .main-nav ul li.menu-item-cart a {
    padding-left: 0px;
    padding-right: 0px;
    line-height: 0px;
}

.cart-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

#gip-search-wrapper {
  position: relative;
}

.gip-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--primary);
  display: flex;
  align-items: center;
  width: 20px;
}

.gip-search-input {
  width: 100%;
  padding: 12px 12px 12px 35px!important;
  border: 1px solid var(--light-gray)!important;
  border-radius: 6px;
  font-size: 1rem;
  background-color: white!important;
}

.gip-search-input:active, .gip-search-input:focus {
  border: 1px solid var(--primary)!important;
}

.gip-search-results {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  margin-top: 4px;
  z-index: 999;
  max-height: 350px;
  overflow-y: auto;
  width: 100%;
  display: none;
}

.gip-search-result-item {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 10px;
  border-bottom: 1px solid var(--lighter-gray);
  cursor: pointer;
}

.gip-search-result-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 4px;
}

.gip-search-result-item:hover {
  background: var(--lightest-gray);
}

.gip-search-result-item .result-meta {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.result-meta p {
  margin: 0;
  line-height: 1.4;
}

.result-title {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.result-price {
  color: green;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Product Slider Wrapper */
.gip-product-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

/* Horizontal Scrollable Slider */
.gip-product-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem 2rem;
}

.gip-product-slider::-webkit-scrollbar {
  height: 6px;
}

.gip-product-slider::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* Each Product Card */
.gip-product-slider .gip-product-card {
  flex: 0 0 calc(33.3333% - 1rem);
  scroll-snap-align: start;
  box-sizing: border-box;
}

/* Slider Arrows */
.gip-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.1);
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.gip-slider-arrow:hover {
  background: rgba(0, 0, 0, 0.25);
}

.gip-slider-prev {
  left: 10px;
}

.gip-slider-next {
  right: 10px;
}

/* Show All Button */
.gip-slider-button {
  text-align: center;
  margin-top: 1.5rem;
}

.gip-slider-button .show-all {
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.gip-slider-button .show-all:hover {
  background: var(--primary-hover);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gip-product-slider .gip-product-card {
    flex: 0 0 70%;
  }
}

@media (max-width: 480px) {
  .gip-product-slider .gip-product-card {
    flex: 0 0 90%;
  }
}

/* SVG icon */
.cart-svg {
    width: 1.5em;
    height: 1.5em;
    fill: currentColor;
}

/* Cart Count Circle */
.cart-count {
    position: absolute;
    top: -0.6em;
    right: -0.5em;
    background: var(--primary);
    color: var(--white);
    min-width: 20px;
    height: 20px;
    padding: 0 0.3em;
    border-radius: 50%;
    font-size: 0.9em;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Animation class for the cart count pop effect */
.cart-count.animate {
    transform: scale(1.3);
}

/* Flex container for category filters */
#gip-filters {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

/* Style for both dropdowns */
#gip-filters {
    min-width: 350px;
    position: relative;
}

#gip-filters select {
    appearance: none;
    width: 100%;
    font-size: 1.15rem;
    padding: 0.675em 6em 0.675em 1em;
    background-color: var(--white);
    border: 1px solid #caced1; /* Kept as is since not a pure hex */
    border-radius: 0.25rem;
    color: var(--black);
    cursor: pointer;
}

#gip-filters select:hover {
    border: 1px solid var(--primary);
}

#gip-products-container {
	margin-bottom: 5rem;
}

/* Product Card Styles */
.gip-product-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr)) !important;
    gap: 1rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gip-product-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 24px;
    transition: transform 0.2s ease-in-out;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: normal;
    margin: 0 !important;
}

.gip-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.gip-product-image {
    margin-bottom: 16px;
}

.gip-product-image img {
    width: 100%;
    height: 192px;
    object-fit: contain;
    border-radius: 8px;
}

.gip-product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.gip-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: green; /* Kept as named color */
    margin-bottom: 16px;
}

ul.gip-product-details,
ul.product-details {
    margin: 0; /* Explicitly remove unwanted margin */
    margin-bottom: 1rem;
    padding: 0;
    list-style: none;
}

ul.product-details li {
    list-style-type: none;
}

.gip-detail-label {
    font-weight: 600;
}

.gip-product-actions {
    display: flex;
    gap: 8px;
    width: 100%;
}

#gip-cart-container, #gip-checkout-container {
	margin-bottom: 5rem;
}

.gip-view-details, .back-to-shop {
    background: var(--black);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.gip-view-details:hover, .back-to-shop:hover {
    background: #393939; /* Kept as is since not repeated elsewhere */
	color: var(--white);
}

.view-details:hover {
	cursor: pointer;
}

.gip-add-to-cart {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gip-add-to-cart:hover {
    background: var(--primary-hover);
}

/* Product Detail Page Flex Layout */
.gip-product-detail {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin: 20px 0;
}

.gip-product-detail-images {
    flex: 1;
    position: relative;
}

.gip-product-detail-info {
    flex: 1;
}

.gip-product-detail-info h1 {
    font-size: 2.2rem;
}

.gip-product-detail-info .price {
    color: green; /* Kept as named color */
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

.slider-main {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: none;
}

.slider-main img.active {
    display: block;
}

.slider-main img {
    transition: opacity 0.4s ease-in-out;
}

.slider-main img.active {
    opacity: 1;
    z-index: 1;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    color: var(--white);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

.slider-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 1.5rem;
    justify-content: center;
}

.slider-thumbs img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

.slider-thumbs img.active {
    border-color: var(--primary);
}

/* Add-to-cart section styling */
.gip-add-to-cart-section {
    margin-top: 20px;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.quantity-field {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-field input[type=number]::-webkit-inner-spin-button,
.quantity-field input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-field input[type=number] {
    -moz-appearance: textfield;
}

.quantity-field .gip-quantity {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1rem;
    padding: 6px;
}

.qty-btn {
    background: var(--lightest-gray);
    color: var(--black);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.qty-btn:hover {
    background: var(--lighter-gray);
    color: var(--black);
}

.qty-btn.minus {
    border-right: 1px solid var(--light-gray);
}

.qty-btn.plus {
    border-left: 1px solid var(--light-gray);
}

.gip-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
}

.gip-loading::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gip-loading.hidden {
    display: none;
}

.gip-loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

.cart-added {
    font-size: 0.9rem;
}

.gip-info-box {
    margin-top: 10px;
    padding: 10px;
    background-color: var(--background-light);
    border-left: 4px solid var(--green);
    color: var(--green);
    font-size: 14px;
    display: none;
}

.gip-info-box a {
    text-decoration: underline;
    font-weight: bold;
}

/* Cart Item Styles */
.proceed-checkout {
    text-align: right;
    margin-bottom: 1rem;
}

.button.checkout {
    font-size: 1.2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button.checkout svg {
    width: 20px;
    vertical-align: middle;
    height: 20px;
    margin-bottom: 4px;
    fill: var(--white);
}

.gip-cart-items {
    margin-bottom: 20px;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.gip-cart-items h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
}

.cart-price {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.gip-cart-item {
    border-bottom: 1px solid var(--border-light);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cart-background);
    margin-bottom: 10px;
    border-radius: 4px;
}

.gip-cart-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-gray);
}

.cart-total-line {
    margin-top: 1rem;
    color: green; /* Kept as named color */
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.flex {
    display: flex;
	gap: 1rem;
}

.flex .product-item-name {
    width: 90%;
}

.flex .remove-product-button {
    width: 10%;
}

.flex .cart-total, .flex .total-price {
	width: 50%;
}

.remove-product-button {
    text-align: right;
}

.gip-delete-cart-item {
    width: 40px;
	height: 40px;
	background: #f8f8f8; /* Kept as is since not repeated */
    color: var(--white);
    border: none;
    padding: 0.6rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.gip-delete-cart-item svg {
    width: 20px;
    height: 20px;
    fill: red; /* Kept as named color */
    vertical-align: middle;
}

.gip-delete-cart-item:hover,
.gip-delete-cart-item:visited {
    background: var(--red);
}

.gip-cart-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: left;
}

.gip-cart-total-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: green; /* Kept as named color */
    text-align: right;
}

/* General Container Styles */
#gip-products {
    margin-top: 2rem;
	margin-bottom: 2rem;
}

/* Shipping Styles */
.gip-shipping {
    margin: 20px 0;
}

.gip-shipping h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gip-shipping label {
    display: block;
    margin-bottom: 10px;
}

/* Checkout Form & Order Summary Columns */
.gip-checkout-form-container,
.gip-order-summary-container {
    flex: 1;
}

.gip-checkout-form-container {
    display: flex;
    gap: 1rem;
    background: #f9f9f9; /* Kept as is since not repeated */
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
	margin-bottom: 2rem;
}

.gip-address-toggle {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.gip-address-form {
    background: #f9f9f9; /* Kept as is since not repeated */
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.gip-address-form h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 0.5rem;
}

.gip-form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.gip-form-group {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.gip-form-group label {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.gip-form-group input,
.gip-form-group select {
    padding: 8px;
    border-radius: 4px;
    box-sizing: border-box;
    height: 42px;
}

.gip-form-group input:focus,
.gip-form-group select:focus {
    border-color: var(--primary);
    outline: none;
}

.gip-order-summary-container h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 0.5rem;
}

.gip-shipping-cost,
.gip-order-total {
    margin-top: 1rem;
}

.gip-order-total p {
    margin: 0.5rem 0;
}

.gip-shipping-summary-table th,
.gip-shipping-summary-table td {
    width: 50%;
}

.gip-order-products-table th:nth-child(3),
.gip-order-products-table td:nth-child(3) {
    width: 20%;
    text-align: center;
}

.gip-order-products-table th:nth-child(2),
.gip-order-products-table td:nth-child(2) {
    text-align: center;
}

/* Checkout Form Submit Button */
#gip-order-summary-container button {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    width: 100%;
}

#gip-order-summary-container button svg {
    width: 20px;
    fill: var(--white);
    vertical-align: middle;
    margin-bottom: 4px;
}

#gip-order-summary-container button:hover {
    background-color: var(--primary-hover);
}

/* Order Summary - Products Table */
.gip-order-products-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.gip-shipping-summary-table {
    font-size: 0.9rem;
    text-align: left;
}

.gip-order-products-table th,
.gip-order-products-table td {
    border: 1px solid var(--light-gray);
    padding: 8px;
    text-align: left;
}

.gip-order-products-table th,
.gip-shipping-summary-table th {
    background: var(--table-header);
}

.gip-order-products-table tfoot td {
    font-weight: bold;
}

.total-cost-title {
    text-align: right;
}

#order-total {
    font-weight: bold;
    text-align: right;
}

#gip-order-confirmation {
	margin-bottom: 5rem;
}

#gip-order-confirmation h1 {
	margin-top: 1rem;
	font-weight: bold;
	font-size: 3rem;
}

#gip-order-confirmation p {
	margin-bottom: 0;
}

#gip-order-confirmation p.invoice {
	margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.related-products {
	margin-bottom: 5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.gip-product-actions {
		flex-direction: column;
	}
	.gip-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(50%, 1fr)) !important;
    }
    .gip-product-detail {
        flex-direction: column;
    }
    .gip-checkout-form-container {
        flex-direction: column;
    }
    .gip-add-to-cart {
        width: 100%;
    }
    .flex.remove-product-button {
        width: 10%;
    }
    .gip-delete-cart-item {
        width: 100%;
    }
	.gip-form-row {
		flex-direction: column;
	}
	.gip-form-group {
		width: 100%;
	}
}

@media (max-width: 480px) {
    .cart-link {
        /* Adjust container size if needed */
    }
    .cart-svg {
        width: 1.2em;
        height: 1.2em;
    }
    .cart-count {
        font-size: 0.65em;
		margin-top: -0.5rem;
    }
    .flex .remove-product-button {
        width: auto;
    }
	.remove-product-button svg {
		padding-bottom: 5px;
	}
    #gip-filters {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
        min-width: 0;
        width: 100%;
    }
    #gip-filters select {
        flex: 1 1 auto;
        font-size: 1rem;
        padding: 0.5em 3em 0.5em 1em;
    }
    #gip-filters select::before,
    #gip-filters select::after {
        content: none;
    }
    .gip-product-grid {
        grid-template-columns: 1fr !important;
    }
    .gip-product-card {
        padding: 15px;
    }
    .gip-product-image img {
        height: 150px;
    }
    .gip-cart-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .gip-product-actions {
        flex-direction: column;
        gap: 10px;
    }
    .gip-delete-cart-item {
        width: 100%;
    }
    .slider-container {
        min-height: 250px;
    }
    .slider-main img {
        height: 250px;
    }
}
/*jp code*/
.select2-container .select2-selection--single{
	height: 45px !important;
	background-color: #f9f9f9 !important;
}
 
.select2-container--default .select2-selection--single {
    height: 45px;
    padding: 8px 12px;
    font-size: 14px;
    box-sizing: border-box;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
}

select.gip-filter-select {
    width: 25%;
}

.filter-box {
	width: 25%;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 10px;
	font-family: sans-serif;
	background: white;
	position: relative;
	height: fit-content;
}

.filter-header {
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 10px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.filter-header::after {
	content: '▾';
	font-size: 12px;
}

.filter-options {
	display: none;
	flex-direction: column;
	gap: 8px;
	max-height: 108px;
    overflow: auto;
}

.filter-options.show {
	display: flex;
}

.filter-options label {
	display: flex;
	align-items: center;
	font-size: 14px;
	cursor: pointer;
}

.filter-options input[type="checkbox"] {
	margin-right: 8px;
	accent-color: #c48c07;
}

.filter-selected input[type="checkbox"]:checked + span {
	font-weight: bold;
	color: #c48c07;
}

.selected-bar {
	height: 2px;
	background-color: #c48c07;
	margin: 5px 0 10px;
}

/* Blog Card */

.blog-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 20px;
    column-gap: 10px;
    font-family: sans-serif;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}
    .blog-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      text-decoration: none;
      color: white !important;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .blog-card img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }
    .blog-card:hover img {
      transform: scale(1.05);
    }
.blog-card-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
}
    .blog-card-title {
      font-size: 1.2em;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .blog-card-desc {
      font-size: 0.95em;
      line-height: 1.4em;
    }
    .gold-line {
      width: 100%;
      height: 2px;
      background: gold;
      margin: 10px 0;
    }

@media(max-width:1024px){
   .blog-cards {
       grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px){
   .blog-cards {
       grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px){
   .blog-cards {
       grid-template-columns: repeat(1, 1fr);
    }
}

/* Blog Card CSS End */