/*
Theme Name: aakritii
Author: Chirag Telar
Version: 9.1
Description : NOV 2025
*/
img.alignright {
	padding: 4px;
	margin: 5px 0 20px 20px;
	display: inline;
}
.alignright {
	float: right;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
img.alignleft {
	padding: 4px;
	margin: 5px 20px 20px 0px;
	display: inline;
}
.alignleft {
	float: left;
}

div.wpcf7-validation-errors {
	clear:both;
}
div.wpcf7-mail-sent-ok {
	clear:both;
}
.wpcf7-form label.error {
	float:right !important;
}
.wpcf7-response-output {
	clear:both;
}
.wpcf7-form input.error, .wpcf7-form select.error, .wpcf7-form textarea.error {
	border-bottom:2px solid #990000 !important
}
.wpcf7-form label.error {
	margin-top: -20px;
	text-align: right;
	width: 100%;
}

.breadcrumb-container ul li.current-item a::after {content:"";}

/* Stylish Tote Bag Product Section */
.stylish-tote-section {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
}

.stylish-tote-section .pageTitle {
    margin-bottom: 10px;
}

.stylish-tote-section .pageTitle h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.stylish-tote-section .subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 50px;
    font-weight: 400;
}

.product-grid-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.product-slide {
    transition: all 0.3s ease;
}

.product-itemBox {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-itemBox:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #d0d0d0;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    background: #fafafa;
    padding-top: 125%;
    flex-shrink: 0;
}

.product-image-container figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-itemBox:hover .product-image-container img {
    transform: scale(1.08);
}

.product-details {
    padding: 15px; 
    flex-direction: column;
    flex-grow: 1;
    width : 100%;
}

.product-details tr {
    padding : 3px;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.4;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 13px;
}

.product-rating .star-rating {
    color: #FFD700;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.product-rating .star-rating .star {
    color: #FFD700;
}

.product-rating .rating-count {
    font-size: 12px;
    color: #666666;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.product-price .price-label {
    font-size: 11px;
    color: #888888;
    text-transform: capitalize;
    font-weight: 400;
}

.product-price .price {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.product-price .price del {
    color: #999999;
    font-size: 14px;
    margin-right: 5px;
}

.product-price .price ins {
    text-decoration: none;
}

.view-more-btn {
    margin-top: 30px;
    text-align: center;
}

.view-more-btn a {
    display: inline-flex;
    align-items: center;
    padding: 14px 40px;
    background: #2E4B30;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #2E4B30;
}

.view-more-btn a:hover {
    background: #fff;
    color: #2E4B30;
}

.view-more-btn a img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.view-more-btn a:hover img {
    filter: brightness(0);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .product-grid-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 991px) {
    .product-grid-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stylish-tote-section {
        padding: 50px 0;
    }
    
    .stylish-tote-section .pageTitle h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .product-grid-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stylish-tote-section {
        padding: 40px 0;
    }
    
    .stylish-tote-section .pageTitle h2 {
        font-size: 24px;
    }
    
    .product-details {
        padding: 12px;
    }
    
    .product-title {
        font-size: 13px;
        min-height: 36px;
    }
    
    .product-price .price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-grid-slider {
        grid-template-columns: 1fr;
    }
}
