.carousel-container { width: 100%; padding: 2rem 0; max-width: 1400px; margin: 0 auto; font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; ::ng-deep { // PrimeNG carousel wrapper .p-carousel { .p-carousel-content { display: flex; flex-direction: row; align-items: center; gap: 1.5rem; } // Navigation buttons .p-carousel-prev, .p-carousel-next { width: 3rem; height: 3rem; border-radius: 50%; background: white; border: 2px solid #d3dad9; color: #1e3c38; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); align-self: center; z-index: 10; flex-shrink: 0; &:hover { background: #f9fafb; border-color: #d3dad9; transform: scale(1.05); } &:not(:disabled):hover { background: var(--primary-color, #497671); border-color: var(--primary-color, #497671); color: white; } } // Items container .p-carousel-items-container { .p-carousel-items-content { width: 100%; .p-carousel-item { padding: 0 0.5rem !important; box-sizing: border-box; } } } // Add gap between items .p-carousel-items-content .p-carousel-item-list { display: flex; } .p-carousel-item { flex-shrink: 0; } // Pagination dots .p-carousel-indicator-list { display: flex !important; justify-content: center !important; gap: 0.5rem !important; padding: 1.5rem 0 !important; margin: 0 !important; list-style: none !important; .p-carousel-indicator { display: inline-block !important; .p-carousel-indicator-button { width: 12px !important; height: 12px !important; border-radius: 50% !important; background-color: #d3dad9 !important; border: 0 !important; padding: 0 !important; cursor: pointer !important; transition: all 0.3s ease !important; &:hover { background-color: #a1b4b5 !important; transform: scale(1.2); } } &.p-carousel-indicator-active .p-carousel-indicator-button { background-color: var(--primary-color, #497671) !important; width: 32px !important; border-radius: 6px !important; } } } } } } .carousel-loading, .carousel-empty { text-align: center; padding: 3rem 1rem; color: #697777; .spinner { width: 40px; height: 40px; margin: 0 auto 1rem; border: 4px solid #f3f3f3; border-top: 4px solid var(--primary-color, #497671); border-radius: 50%; animation: spin 1s linear infinite; } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } // Item card styles .item-card { background: white; border-radius: 13px; border: 1px solid #d3dad9; overflow: hidden; box-shadow: 0 3px 4px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; position: relative; height: 100%; display: flex; flex-direction: column; width: calc(100% - 1rem) !important; box-sizing: border-box; margin: 0 auto; &:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); transform: translateY(-4px); } } .item-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; flex: 1; } .item-image { position: relative; width: 100%; height: 140px; overflow: hidden; background: #f5f5f5; border-radius: 13px; img { width: 100%; height: 100%; object-fit: contain; background: white; padding: 10px; transition: transform 0.3s ease, filter 0.3s ease; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05)); } &:hover img { transform: scale(1.08); filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12)) brightness(1.05); } } .discount-badge { position: absolute; top: 12px; right: 12px; background: #ef4444; color: white; padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.875rem; font-weight: 700; z-index: 10; } .item-details { padding: 0.625rem; display: flex; flex-direction: column; gap: 0.375rem; flex: 1; } .item-name { font-size: 0.8125rem; font-weight: 600; margin: 0; line-height: 1.3; min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: #1e3c38; transition: color 0.2s; &:hover { color: var(--primary-color, #497671); } } .item-rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; .rating-stars { color: #497671; font-weight: 600; } .rating-count { color: #697777; } } .item-price-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; } .item-price { display: flex; align-items: baseline; gap: 0.375rem; flex-wrap: wrap; flex: 1; .current-price, .discounted-price { font-size: 0.9375rem; font-weight: 700; color: #1e3c38; } .discounted-price { color: #ef4444; } .original-price { font-size: 0.8125rem; color: #697777; text-decoration: line-through; } } .cart-icon-btn { padding: 0.5rem; background: var(--primary-color, #497671); color: white; border: none; border-radius: 10px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; flex-shrink: 0; svg { display: block; } &:hover { background: var(--primary-hover, #3d635f); transform: scale(1.05); } &:active { transform: scale(0.95); } } // Novo theme styles .novo-theme { ::ng-deep { .p-carousel { .p-carousel-prev, .p-carousel-next { &:not(:disabled):hover { background: var(--primary-color, #497671); border-color: var(--primary-color, #497671); } } .p-carousel-indicators { .p-carousel-indicator.p-highlight button { background: var(--primary-color, #497671); } } } } .item-card { border: 1px solid #e5e5e5; } .cart-icon-btn { background: var(--primary-color, #497671); &:hover { background: var(--primary-hover, #3d635f); } } } // Responsive styles @media (max-width: 968px) { .carousel-container { padding: 0 1rem; } .item-image { height: 220px; } } @media (max-width: 640px) { .item-image { height: 200px; } .item-details { padding: 1rem; } .item-name { font-size: 0.9rem; } .item-price { .current-price, .discounted-price { font-size: 1.125rem; } } }